/* ========================================
   BODESA - Estilos Principales
   Azure Static Web App - Responsive
   ======================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Satoshi', sans-serif;
  color: #4a4a4a;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header / Navbar --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #3D6288;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(69, 82, 98, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.header__logo img {
  max-width: 142px;
  height: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 0 18px;
  line-height: 80px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #e0e0e0;
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  border-radius: 0 0 4px 4px;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown-link {
  display: block;
  padding: 12px 20px;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  color: #4a4a4a;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}

.nav__dropdown-link:hover {
  background: #3D6288;
  color: #fff;
}

.nav__dropdown-link:last-child {
  border-bottom: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3D6288;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3D6288 0%, #2B4F6E 50%, #1a2028 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.hero__logo {
  max-width: 400px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease;
}

.hero__tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 30px;
  height: 30px;
  fill: rgba(255, 255, 255, 0.6);
}

/* --- About Section --- */
.about {
  padding: 100px 0;
  background: #fff;
}

.about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about__text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a4a4a;
  font-family: 'Satoshi', sans-serif;
}

/* --- Brands Section --- */
.brands {
  padding: 80px 0;
  background: #f8f9fa;
}

.brands__title {
  text-align: center;
  font-size: 2rem;
  color: #3D6288;
  margin-bottom: 50px;
  position: relative;
}

.brands__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #3D6288;
  margin: 15px auto 0;
}

.brands__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 40px;
  align-items: center;
  justify-items: center;
  max-width: 750px;
  margin: 0 auto;
}

.brands__grid > :last-child {
  grid-column: 2;
}

.brand__item {
  padding: 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  opacity: 0.7;
}

.brand__item:hover {
  transform: scale(1.1);
  opacity: 1;
}

.brand__item img {
  max-width: 130px;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto;
}

/* --- La Marina Feature Section --- */
.feature {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.feature__image {
  position: relative;
  overflow: hidden;
}

.feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature:hover .feature__image img {
  transform: scale(1.03);
}

.feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  background: #3D6288;
  color: #fff;
}

.feature__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 15px;
}

.feature__title {
  font-size: 2.5rem;
  margin-bottom: 25px;
  font-weight: 700;
}

.feature__text {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Satoshi', sans-serif;
}

.feature__btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 40px;
  background: #fff;
  color: #020202;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.feature__btn:hover {
  background: #FF9E1B;
  color: #fff;
}

/* --- Footer --- */
.footer {
  background: #2B4F6E;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.footer__brand-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer__heading {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer__links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  fill: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer__social a:hover {
  transform: translateY(-3px);
}

.footer__social a.facebook:hover {
  background: #3b5998;
}

.footer__social a.linkedin:hover {
  background: #0077b5;
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer__copyright {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Brand Page Styles --- */

/* Page Hero */
.page-hero {
  margin-top: 80px;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.page-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Page About */
.page-about {
  padding: 80px 0;
  background: #fff;
}

.page-about__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-about__text {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #4a4a4a;
  font-family: 'Satoshi', sans-serif;
  margin-bottom: 30px;
}

.page-about__btn {
  display: inline-block;
  padding: 14px 50px;
  background: #3D6288;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 2px;
  transition: background 0.3s ease;
}

.page-about__btn:hover {
  background: #648EB0;
}

/* Page Logo */
.page-logo {
  padding: 50px 0;
  background: #f8f9fa;
  text-align: center;
}

.page-logo__img {
  max-width: 250px;
  margin: 0 auto;
}

.page-logo__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.page-logo__year {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #3D6288;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Page Gallery */
.page-gallery {
  padding: 60px 0 80px;
  background: #f8f9fa;
}

.page-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 10px;
}

.page-gallery__grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.page-gallery__item {
  overflow: hidden;
  border-radius: 4px;
}

.page-gallery__item--tall {
  grid-row: span 2;
}

.page-gallery__item--wide {
  grid-column: span 2;
}

.page-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.page-gallery__item:hover img {
  transform: scale(1.05);
}

/* --- BDS Categories --- */
.bds-categories {
  padding: 70px 0;
  background: #fff;
}

.bds-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 10px;
}

.bds-category {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #eee;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bds-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.bds-category__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  color: #3D6288;
}

.bds-category h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #3D6288;
  text-transform: uppercase;
}

/* --- BDS Features --- */
.bds-features {
  padding: 70px 0;
  background: #3D6288;
}

.bds-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.bds-feature-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.bds-feature-card:hover {
  background: rgba(255, 255, 255, 0.15);
}

.bds-feature-card h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.bds-feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}

/* --- Valores Grid --- */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.valor-item {
  padding: 25px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.valor-item h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: #3D6288;
  margin-bottom: 8px;
}

.valor-item p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.6;
}

/* --- Distinciones Grid --- */
.distinciones-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.distincion-item {
  padding: 30px;
  background: #f8f9fa;
  border-left: 4px solid #3D6288;
  border-radius: 0 6px 6px 0;
}

.distincion-item h4 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: #3D6288;
  margin-bottom: 10px;
}

.distincion-item p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 20px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3D6288;
}

.timeline__item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #3D6288;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #3D6288;
}

.timeline__year {
  display: inline-block;
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #3D6288;
  margin-bottom: 5px;
}

.timeline__item p {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* --- Timeline 1887 Hero --- */
.tl-hero {
  max-width: 900px;
  margin: 0 auto 50px;
}

.tl-hero__header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
}

.tl-hero__title {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #3D6288;
  text-align: right;
  line-height: 1.3;
}

.tl-hero__year {
  font-family: 'Satoshi', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #3D6288;
  line-height: 1;
}

.tl-hero__body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 25px;
  align-items: start;
}

.tl-hero__images {
  display: flex;
  gap: 10px;
}

.tl-hero__images img {
  max-width: 200px;
  max-height: 160px;
  object-fit: contain;
  border-radius: 4px;
}

.tl-hero__text {
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.8;
  font-family: 'Satoshi', sans-serif;
}

/* --- Timeline Zigzag --- */
.tl {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
}

.tl::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #b5c1cc;
  transform: translateX(-50%);
}

.tl__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.tl__year {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D6288;
  background: #f8f9fa;
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 2;
  text-align: center;
  min-width: 80px;
}

.tl__images {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.tl__images img {
  max-width: 150px;
  max-height: 110px;
  object-fit: contain;
  border-radius: 4px;
}

.tl__text p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.7;
  font-family: 'Satoshi', sans-serif;
}

.tl__item--right .tl__images {
  justify-content: flex-end;
}

.tl__item--right .tl__text {
  text-align: left;
}

.tl__item--left .tl__images {
  order: 3;
  justify-content: flex-start;
}

.tl__item--left .tl__year {
  order: 2;
}

.tl__item--left .tl__text {
  order: 1;
  text-align: right;
}

/* --- Progressa Hero --- */
.progressa-hero {
  margin-top: 80px;
  height: 450px;
  background: linear-gradient(160deg, #f0f4f8 0%, #e8f4e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 4px solid #43B649;
}

.progressa-hero__content {
  padding: 20px;
}

.progressa-hero__logo {
  max-width: 350px;
  margin: 0 auto 25px;
}

.progressa-hero__tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0066B3;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.progressa-hero__sub {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: #3D6288;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* --- Progressa Products --- */
.progressa-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 10px;
}

.progressa-product {
  text-align: center;
  padding: 40px 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.progressa-product:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.progressa-product img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.progressa-product h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3D6288;
  margin-bottom: 12px;
}

.progressa-product p {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.7;
}

/* --- Responsive --- */

/* Tablet landscape */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #3D6288;
    overflow-y: auto;
    max-height: calc(100vh - 80px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: none;
  }

  .nav.open {
    display: block;
  }

  .nav__list {
    flex-direction: column;
    padding: 20px;
  }

  .nav__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__link {
    line-height: 50px;
    padding: 0 10px;
    font-size: 0.9rem;
  }

  .feature {
    grid-template-columns: 1fr;
  }

  .feature__image {
    min-height: 300px;
  }

  .feature__content {
    padding: 50px 40px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .page-hero {
    height: 350px;
  }
}

/* Tablet portrait */
@media (max-width: 768px) {

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.15);
    display: none;
    border-radius: 0;
    pointer-events: auto;
  }

  .nav__item.dropdown-open .nav__dropdown {
    display: block;
  }

  .nav__dropdown-link {
    color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgba(255, 255, 255, 0.05);
    padding-left: 30px;
  }

  .nav__dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .hero {
    min-height: 500px;
  }

  .hero__logo {
    max-width: 280px;
  }

  .hero__tagline {
    font-size: 0.9rem;
    letter-spacing: 2px;
  }

  .about {
    padding: 60px 0;
  }

  .about__text {
    font-size: 1rem;
  }

  .brands {
    padding: 60px 0;
  }

  .brands__title {
    font-size: 1.6rem;
  }

  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .feature__content {
    padding: 40px 25px;
  }

  .feature__title {
    font-size: 1.8rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero {
    height: 300px;
  }

  .page-about {
    padding: 50px 0;
  }

  .page-about__text {
    font-size: 1rem;
  }

  .page-gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .page-gallery__item--wide,
  .page-gallery__item--tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bds-categories__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .bds-features {
    padding: 50px 0;
  }

  .bds-features__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .bds-feature-card {
    padding: 25px 20px;
    text-align: center;
    border-left: 3px solid rgba(255,255,255,0.3);
  }

  .bds-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .bds-feature-card p {
    font-size: 0.9rem;
  }

  .valores-grid {
    grid-template-columns: 1fr;
  }

  .distinciones-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: 30px;
  }

  .progressa-products {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tl-hero__body {
    grid-template-columns: 1fr;
  }

  .tl-hero__images img {
    max-width: 140px;
  }

  .tl-hero__year {
    font-size: 2.5rem;
  }

  .tl::before {
    left: 20px;
  }

  .tl__item {
    grid-template-columns: 1fr;
    padding-left: 50px;
    gap: 10px;
  }

  .tl__item--left .tl__images,
  .tl__item--left .tl__year,
  .tl__item--left .tl__text {
    order: unset;
  }

  .tl__item--left .tl__text,
  .tl__item--right .tl__text {
    text-align: left;
  }

  .tl__item--left .tl__images,
  .tl__item--right .tl__images {
    justify-content: flex-start;
  }

  .tl__year {
    font-size: 1.2rem;
    display: inline-block;
  }
}

/* Mobile small */
@media (max-width: 480px) {
  .hero__logo {
    max-width: 220px;
  }

  .hero__tagline {
    font-size: 0.8rem;
  }

  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .brand__item img {
    max-width: 100px;
  }

  .feature__title {
    font-size: 1.5rem;
  }

  .feature__text {
    font-size: 0.9rem;
  }

  .feature__btn {
    padding: 12px 30px;
    font-size: 0.8rem;
  }
}
