/* ============================= */
/*       RESET GENERAL          */
/* ============================= */
body {
  margin: 0;
  font-family: 'Helvetica', sans-serif;
  line-height: 1;
  color: #000;
}
/* Aumenta el alto de la barra de navegación */
.header {
  background-color: #1C6C6C;
  padding: 30px 30px; /* antes: padding más pequeño */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Contenedor de los logos */
.logo-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Primer logo (izquierda) */
.logo img {
  height: 150px;     /* aumenta el alto */
  max-width: 280px;  /* proporción visual más grande */
  object-fit: contain;
}

/* Segundo logo (derecha o al lado) */
.logo-second img {
  height: 1500px;
  max-width: 280px;
  object-fit: contain;
}


/* Botón de menú (imagen) */
.menu-toggle {
  cursor: pointer;
}

.menu-icon {
  width: 40px; /* aumentamos tamaño */
  height: auto;
}

/* Logo en el overlay (menú desplegable) */
.overlay-logo {
  width: 140px;
  margin-bottom: 20px;
}

/* ============================= */
/*           HEADER             */
/* ============================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #1C6C6C;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

.header.scrolled {
  background-color: #1C6C6C;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header img {
  height: 50px;
  object-fit: contain;
}

/* ============================= */
/*             NAV              */
/* ============================= */
nav {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: center;
}

nav ul li {
  margin-left: 20px;
  display: inline-block;
}

nav ul li a {
  color: #1C6C6C;;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover {
  color: #000000;
  border-bottom: 2px solid #126365;
}

.header.scrolled .menu ul li a {
  color: #ffffff;
}

/* Submenú */
.submenu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  margin-top: 2px;
}

.submenu:hover .sub-menu {
  display: block;
}

.sub-menu li {
  display: block;
  padding: 5px 0;
}

.sub-menu li a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.sub-menu li a:hover {
  color: #007bff;
}

/* ============================= */
/*         HERO / SLIDER        */
/* ============================= */
.hero {
  position: relative;
  overflow: hidden;
  height: 80vh;
  color: #1C6C6C;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 30px;
}

.hero-carousel {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-slider,
.hero-images {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-images {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-image.active {
  opacity: 1;
  z-index: 2;
}

/* Botones slider */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
}

.slider-btn img {
  width: 30px;
  height: auto;
  object-fit: contain;
}

.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }

/* ============================= */
/*           SECTIONS           */
/* ============================= */
.about,
.products,
.contact {
  padding: 50px 0;
}

.about-box {
  background-color: #1C6C6C;
  color: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ============================= */
/*         PRODUCTOS            */
/* ============================= */
.products h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #1C6C6C; /* o el color que prefieras */
  font-weight: bold;
  background-color: transparent; /* elimina el fondo */
  padding: 0; /* elimina el espacio interno */
  border: none; /* elimina el borde */
  font-size: 28px;
}


.product-types {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.product-type-card {
  text-decoration: none;
  background-color: #1C6C6C;
  color: white;
  padding: 5px 18px; /* Menor espacio interno */
  font-size: 10px;   /* Texto más pequeño */
  border-radius: 6px; /* Esquinas un poco menos redondeadas */
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Sombra más sutil */
}

.product-type-card:hover {
  background-color: #16686A;
  transform: scale(1.05);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.product-card {
  background-color: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 80%;
  max-height: 120px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 0;
}

.product-card {
  min-width: 220px;
  flex-shrink: 0;
  background-color: #f7f7f7;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}







.carousel-btn:hover {
  background-color: #155555;
}


    /* ============================= */
    /*           FOOTER             */
    /* ============================= */
    footer {
      background: #1C6C6C;
      color: #fff;
      text-align: center;
      padding: 0.5em 0;
      margin-top: 30px;
    }

    .footer-lyfsa {
      background-color: #16686A;
      color: white;
      font-family: 'Segoe UI', sans-serif;
    }

    .footer-container {
      padding: 20px 20px 20px;
      max-width: 2000px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-logo img {
      width: 50px;
      margin-bottom: 20px;
    }

    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      margin-bottom: 20px;
    }

    .footer-column {
      flex: 1 1 200px;
      min-width: 200px;
    }

    .footer-column h3 {
      margin-bottom: 10px;
      font-size: 16px;
      font-weight: bold;
    }

    .footer-column p {
      margin: 5px 0;
    }

    .footer-social {
      margin-top: 20px;
    }

    .footer-social a {
      margin: 0 10px;
      display: inline-block;
    }

    .footer-social img {
      width: 20px;
      height: 20px;
    }

    .footer-rights {
      background-color: #0A4B4C;
      padding: 10px 0;
      font-size: 14px;
      text-align: center;
    }

    .footer-lyfsa {
  font-size: 12px;
  background-color: #16686A;
  color: white;
  font-family: 'Segoe UI', sans-serif;
}

.footer-column h3 {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-column p {
  font-size: 12px;
  margin: 5px 0;
}

.footer-rights {
  background-color: #0A4B4C;
  padding: 10px 0;
  font-size: 11px;
  text-align: center;
}

/* ============================= */
/*      DISEÑO RESPONSIVO       */
/* ============================= */
@media screen and (max-width: 1024px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-type-card {
    padding: 15px 30px;
  }

  .hero {
    height: 60vh;
  }
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    justify-content: center;
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 10px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  /*//////////////////////LOGOS///////////////*
  /* Contenedor que agrupa los dos logos */
.logos {
  display: flex;
  align-items: center;
  gap: 10px; /* Espacio entre los logos */
}

/* Estilo de los logos */
.logo {
  height: 50px;
  object-fit: contain;
}
/*/////////////////CONTACTOS*/
/* Barra de navegación */
.header {
  background-color: #1C6C6C;;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 60px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.activo {
  color: #1C6C6C;
  border-bottom: 2px solid #008f39;
}



}
.advertisement-banner {
  background-image: url('Imagen/two-running-dogs-750570_1920.jpg'); /* Cambia por tu ruta */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 80px;
  color: white; /* Asegura que el texto sea visible */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


footer {
  margin-top: 0;
  padding-top: 0;
}


.advertisement-banner {
  position: relative;
  text-align: center;
  margin: 40px auto;
}

.advertisement-container {
  position: relative;
}

.advertisement-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.advertisement-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgb(0, 0, 0);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.advertisement-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.advertisement-button {
  display: inline-block;
  background-color: #126365;
  color: white;
  padding: 0.8rem 2.5rem; /* Aumenta el ancho lateral */
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.advertisement-button:hover {
  background-color: #0a4b4c;
}


.advertisement-button:hover {
  background-color: #145252; /* Color al pasar el cursor */
}

.advertisement-content h2 {
  color: #126365;
  font-weight: bold;
}

.advertisement-content p {
  color: #ffffff;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
  width: 250px;
  text-align: center;
  box-sizing: border-box;
}

.product-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.product-card h3 {
  margin-top: 10px;
  font-size: 18px;
  color: #126365;
}

.product-card p {
  font-size: 14px;
  color: #333;
}


.about {
  position: relative;
  margin: 0;
  padding: 0;
}

.about-container {
  position: relative;
}

.about-container img {
  width: 100%;
  height: auto;
  display: block;
}

.about-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  max-width: 600px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.about-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.about-button {
  display: inline-block;
  background-color: #1C6C6C;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-button:hover {
  background-color: #145252;
}



 body {
      font-family: 'Lato', sans-serif;
      margin: 0;
      padding: 0;
    }
    .advertisement-content h2 {
      color: #126365;
    }
    .advertisement-content p {
      color: white;
    }
    .advertisement-button {
      display: inline-block;
      padding: 12px 30px;
      font-size: 16px;
    }
    @media screen and (max-width: 768px) {
      .about-container, .advertisement-container, .product-types {
        flex-direction: column;
        text-align: center;
      }
      .about-container img, .advertisement-container img {
        width: 100%;
        height: auto;
      }
      .about-content, .advertisement-content {
        padding: 20px;
      }
      .product-card {
        width: 100%;
        margin-bottom: 20px;
      }
      .product-types {
        flex-direction: column;
      }
    }
 


    /* Botón del menú en esquina superior derecha */
.menu-toggle {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1001;
  cursor: pointer;
}

.menu-icon {
  width: 30px; /* antes era 50px según el archivo */
  height: auto;
}

.menu-toggle .menu-icon {
  width: 25px;
  height: auto;
}

/* Menú pantalla completa */
.overlay-menu {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background-color: #1C6C6C;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.overlay-menu .close-btn {
  position: absolute;
  top: 100px; /* Más abajo que el borde superior */
  right: 30px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}


.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content a {
  display: block;
  margin: 20px 0;
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.overlay-content a:hover {
  color: #ffcc00;
}

.overlay-logo {
  width: 150px;
  margin-bottom: 30px;
}


/* Oculta menú tradicional en móviles */
@media (max-width: 768px) {
  nav.menu {
    display: none;
  }
}


/* Formulario */
/* Fondo general de la sección */
.formulario-contacto {
  background-color: #5293c4; /* Azul pastel */
  padding: 3rem 2rem;
  color: white;
  font-family: 'Lato', sans-serif;
}

/* Título centrado */
.centrado-texto {
  text-align: center;
  margin-bottom: 2rem;
}

.centrado-texto h2 {
  font-size: 1.8rem;
  font-weight: bold;
}

.centrado-texto p {
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* Estructura del formulario */
.formulario {
  max-width: 1000px;
  margin: 0 auto;
}

/* Fila de inputs */
.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Campos de entrada */
.formulario input,
.formulario textarea {
  flex: 1;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 10px;
  background-color: #a0c4e3;
  color: white;
  font-size: 1rem;
  min-width: 0;
}

.formulario textarea {
  resize: vertical;
  min-height: 100px;
}

/* Placeholder con contraste bajo */
.formulario input::placeholder,
.formulario textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

/* Botón de envío */
.btn-enviar {
  background-color: #004b84;
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  display: block;
  margin: 1rem auto 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #00365e;
}



.banner-img {
  width: 120%;
  max-width: 1380px;
  height: auto;
  aspect-ratio: 1380 / 400;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
.advertisement-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 1rem;
}


.logo-container {
  display: flex;
  align-items: center;
  gap: 15px; /* Espacio entre logos */
}

.logo img,
.logo-second img {
  height: 40px;
  width: auto;
}

@media (max-width: 600px) {
  .logo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo img,
  .logo-second img {
    height: 30px;
  }
}

@media screen and (max-width: 767px) {
  header.main-header {
    padding: 4px 10px; /* Reduce el alto */
  }

  .logo img,
  .logo-second img {
    max-width: 45px; /* Logos más pequeños */
  }

  .menu-icon {
    width: 24px; /* Icono de menú más pequeño */
  }
}




@media screen and (max-width: 768px) {
  /* Header: logos pequeños en fila y alineados a la izquierda */
  /* Contenedor de logos y menú */
/* HEADER más delgado y logos a la izquierda */
 .header {
    padding: 10px 15px;
    height: auto;
    flex-direction: row;
    align-items: center;
    background-color: transparent;
  }
  .logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .logo img,
  .logo-second img {
    height: 40px;
    max-width: 100px;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    right: 45px;
    top: 15px;
  }

/* Carrusel debajo del menú */
.hero-carousel {
  width: 100%;
  overflow: hidden;
  margin-top: 0px;
}

.hero-carousel img {
  display: none;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.hero-carousel img.active {
  display: block;
}

/* Sección Nosotros junta */
.about {
  margin-top: -350px;
  
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  text-align: center;
}

.about-img {
  width: 150%;
  max-height: 200px;
  object-fit: cover;
}

.about-content h2 {
  font-size: 20px;
}

.about-content p {
  font-size: 10px;
}

.about-button {
  font-size: 15px;
  padding: 6px 12px;
  margin-top: 20px;
}


  /* Productos destacados */
  .product-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .product-card {
    width: 140px;
    font-size: 13px;
  }

  .product-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Botones de tipo de producto */
  .product-types {
    flex-direction: column;
    gap: 10px;
    align-items: center;
    margin: 20px auto;
  }

  .product-type-card {
    width: 80%;
    text-align: center;
    padding: 10px;
    font-size: 14px;
  }

  /* Banner de publicidad */
  .advertisement-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .advertisement-content h2 {
    font-size: 20px;
  }

  .advertisement-content p {
    font-size: 14px;
  }

  .advertisement-button {
    font-size: 14px;
    padding: 6px 12px;
  }

 .footer-columns {
  flex-direction: column;
  align-items: center;
  gap: 5px; /* Reducido de 10px a 5px */
  text-align: center;
}

.footer-column h3 {
  font-size: 16px;
  margin-bottom: 2px; /* Reducido para acercar título al texto */
}

.footer-column p {
  font-size: 14px;
  margin: 2px 0; /* Menor margen entre párrafos */
}

.footer-social {
  justify-content: center;
  gap: 8px; /* Un poco más compacto */
  margin-top: 5px; /* Opcional: acercar redes al texto */
}

.footer-rights {
  font-size: 12px;
  text-align: center;
  margin-top: 5px; /* Reducido para más compacidad */
}
}


.advertisement-banner {
  position: relative;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* Puedes ajustar según preferencia */
  display: flex;
  align-items: center;
  justify-content: center;
}

.advertisement-container {
   /* fondo oscuro semitransparente para el texto */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: white;
  max-width: 90%;
}

.advertisement-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.advertisement-content p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #000;
  
}

.advertisement-button {
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.advertisement-button:hover {
  background-color: #ccc;
}

/* Responsive para móviles */
@media screen and (max-width: 768px) {
  .advertisement-banner {
    height: 300px;
  }

  .advertisement-content h2 {
    font-size: 20px;
  }

  .advertisement-content p {
    font-size: 14px;
  }

  .advertisement-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}




.submenu-items a {
  font-size: 0.85rem;  /* Letra más pequeña */
  margin-right: 8px;   /* Espacio pequeño entre enlaces */
  padding: 2px 4px;    /* Algo de espacio interno para que no estén pegados */
  white-space: nowrap; /* Que no se rompan en varias líneas */
}


/*ABOUT PERR0/////////////////////////////////*/
.about {
  background-color: #1C6C6C; /* o el color que desees */
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  display: flex;
  flex-direction: row; /* fila en desktop */
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  height: 100%;
  width: 100%;
  max-width: 1200px;
}

.about-content {
  color: white;
  max-width: 700px;
  width: 100%;
  text-align: left; /* texto alineado a la izquierda */
}

.about-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.about-content p {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.about-button {
  background-color: #ffffff;
  color: #000;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  /* para que quede alineado a la izquierda junto al texto */
  text-align: left;
}

.about-dog-img {
  display: block;
  width: 40%;
  max-width: 370px;
  height: auto;
  margin-left: 50rem;
  margin-top: 10rem; /* más espacio arriba */
}


/* RESPONSIVO */
@media screen and (max-width: 600px) {
  .about-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin-left: 0;  /* mejor quitar el margen izquierdo para que quede centrado */

    /* para subir el contenido: */
    padding-top: 3rem; /* ajusta según necesites */
  }

  /* Si quieres aún más arriba, usa margin-top negativo */
  .about-content {
    margin-top: 30rem; /* eliminar márgenes arriba */
  }

  .about-content {
    text-align: center;
  }

  .about-button {
    text-align: center;
  }

  .about-dog-img {
    margin-left: 0;
    margin-top: -30rem; /* más espacio arriba para que quede más abajo */
    width: 40%;
    max-width: 270px;
  }
}

@media screen and (max-width: 660px) {
  .about-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start; /* para que los hijos se alineen a la izquierda */
    text-align: left;        /* que el texto dentro quede a la izquierda */
    margin-left: 0;
    padding-top: 3rem;
  }

  .about-content {
    margin-top: -10rem;
    text-align: left; /* texto alineado a la izquierda */
    width: 80%;      /* para que ocupe todo el ancho disponible */
  }

  .about-button {
    text-align: left; /* botón alineado a la izquierda */
    display: inline-block; /* para respetar el alineamiento */
    margin-top: 1rem; /* para que no quede pegado al texto */
  }
  
  .about-dog-img {
  margin: 22rem auto 0 auto; /* top, right, bottom, left */
  width: 60%;
  max-width: 300px;
  display: block; /* asegúrate de que se comporte como un bloque para centrarse */
}

}




.advertisement-banner {
  background-color: #f4f4f4; /* puedes cambiar el color */
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.advertisement-container {
  max-width: 1200px;
  width: 100%;
}

.advertisement-content {
  text-align: left; /* alineado a la izquierda en escritorio */
}

.advertisement-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #1766a3;
}

.advertisement-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.advertisement-button {
  background-color: #1766a3;
  color: white;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  text-align: left;
}


/* Contenedor de los logos */
.logo-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Contenedor de los logos */
.logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Primer logo (izquierda) */
.logo img {
  height: 60px;  /* tamaño estándar */
  width: auto;
}


/* Segundo logo (más grande) */
.logo-second img {
  height: 80px;
  max-width: 290px;
}

.header {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px; /* antes quizás tenías más padding, prueba con menos */
  height: 80px;       /* puedes bajarlo a 80px o incluso 70px si quieres más compacto */
  
}


.hero-carousel {
  position: relative;
  overflow: hidden;
}

.hero-image {
  display: none;
  width: 100%;
  transition: opacity 0.5s ease-in-out;
}

.hero-image.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.carousel-btn:hover {
  background-color: rgba(0,0,0,0.7);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 5px;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-icon {
  width: 42px; /* tamaño pequeño */
  height: 38px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.carousel-icon:hover {
  opacity: 1;
}




.titulo-pequeno {
  font-size: 0.5em;  /* Más pequeño */
  margin: 4px 0;     /* Menos espacio arriba y abajo */
  line-height: 1.4;  /* Texto más compacto */
}





.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

/* Cuando se hace scroll */
.header.scrolled {
  background-color: #1C6C6C;
}



