main>.container {
    padding: 30px 0;
}


body {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1.5s ease-in-out forwards;
    overflow-x: hidden;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.envio-domicilio {
    animation: bounce 1.5s ease-in-out infinite;
}

h5 {
    margin: 0;
    padding: 0;
}



.separador {
    margin-top: 10px; 
    margin-bottom: 10px; 
    border: none; 
    height: 2px; 
    background-color: #333; 
}



:root {
    --color-white-100: hsl(206, 0%, 100%);
    --color-white-200: hsl(0, 14%, 97%);
    --color-white-300: hsl(206, 0%, 80%);
    --color-white-400: hsl(206, 0%, 65%);
    --color-white-500: hsl(206, 0%, 50%);
    --color-black-100: hsl(217, 30%, 18%);
    --color-black-200: hsl(217, 27%, 15%);
    --color-black-300: hsl(217, 27%, 12%);
    --color-black-400: hsl(192, 97%, 23%);
    --color-blue-100: hsl(215, 97%, 87%);
    --color-blue-200: hsl(215, 96%, 78%);
    --color-blue-300: hsl(215, 94%, 68%);
    --color-blue-400: hsl(215, 91%, 60%);
    --color-blue-500: #025d74;
    --color-blue-600: hsl(215, 76%, 48%);
    --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
       0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
       0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
       0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  *,
  *::before,
  *::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    list-style-type: none;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  
  html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black-400);
    background-color: var(--color-white-200);
  }
  body.darkmode {
    color: var(--color-white-100);
    background-color: var(--color-black-400);
  }

  #footer {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--color-black-400);
    background-color: var(--color-white-100);
  }
  .darkmode #footer{
    color: var(--color-white-100);
    background-color: var(--color-black-400);
  }

  .darkmode #nosotros{
    color: var(--color-white-100);
    background-color: var(--color-black-300);
  }

  .darkmode .heading-m{
    color: var(--color-black-400);
  }

  .darkmode #testimonios{
    color: var(--color-white-100);
    background-color: var(--color-black-300);
  }

  #producto{
    background-color: var(--color-white-200);
    padding-top: 70px;
  }

  .darkmode #producto{
    color: var(--color-white-100);
    background-color: var(--color-black-300);
  }
  
  
  main {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }

  
  p {
    text-wrap: balance;
  }
  
  a,
  button {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    border: none;
    outline: none;
    background: none;
  }
  
  img,
  video {
    display: block;
    max-width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  
  .section {
    margin: 0 auto;
    padding: 5rem 0 2rem;
  }
  
  .container {
    max-width: 75rem;
    height: auto;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
  
  .paragraph {
    font-family: inherit;
    text-wrap: balance;
    color: inherit;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }

  .heading-m {
    font-family: inherit;
    font-size: clamp(0.848rem, 2vw, 3.241rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }

  .heading-l {
    font-family: inherit;
    font-size: clamp(1.648rem, 3vw, 3.241rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    
  }

  

  .heading-xl {
    font-family: inherit;
    font-size: clamp(2.648rem, 6vw, 4.241rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }
  .heading-lg {
    font-family: inherit;
    font-size: clamp(2.179rem, 5vw, 3.176rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
  }
  .heading-md {
    font-family: inherit;
    font-size: clamp(1.794rem, 4vw, 2.379rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -1px;
  }
  
  .btn {
    display: inline-block;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    outline: none;
    border: none;
    border-radius: 0.25rem;
    text-transform: unset;
    transition: all 0.3s ease-in-out;
  }
  .btn-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .btn-darken {
    padding: 0.75rem 2rem;
    color: var(--color-white-100);
    background-color: var(--color-black-200);
    box-shadow: var(--shadow-medium);
  }
  .darkmode .btn-darken {
    background-color: var(--color-blue-300);
  }
  
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100px;
    margin: 0 auto;
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
  }
  .darkmode .header {
    background-color: var(--color-black-400);
  }
  
  .navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    width: 100%;
    height: 7rem;
    margin: 0 auto;
  }
  
  .brand {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: var(--color-blue-500);
    transition: all .4s ease-in-out;
    display: inline-block;
  }
  .darkmode .brand {
    color: var(--color-white-100);
  }
  
  .menu {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 10;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: var(--color-black-400);
    background-color: var(--color-white-100);
    box-shadow: var(--shadow-medium);
    transition: all 0.4s ease-in-out;
  }
  .darkmode .menu {
    color: var(--color-white-100);
    background-color: var(--color-black-400);
  }
  .menu.is-active {
    left: 0;
  }
  .menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 1.25rem;
    margin-top: 7rem;
  }
  .menu-link {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 550;
    line-height: 1.5;
    color: inherit;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }

  .menu-link:hover {
    color: var(--color-black-100);
  }
  @media only screen and (min-width: 48rem) {
    .menu {
      position: relative;
      top: 0;
      left: 0;
      width: auto;
      height: auto;
      padding: 0rem;
      margin-left: auto;
      background: none;
      box-shadow: none;
      transition: none;
    }
    .menu-inner {
      display: flex;
      flex-direction: row;
      -moz-column-gap: 2rem;
           column-gap: 2rem;
      margin: 0 auto;
    }
    .menu-link {
      text-transform: capitalize;
    }
  }
  
  .burger {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    order: -1;
    z-index: 12;
    width: 1.6rem;
    height: 1.15rem;
    margin-right: 1.25rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
  }
  @media only screen and (min-width: 48rem) {
    .burger {
      display: none;
      visibility: hidden;
    }
  }
  .burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: var(--color-black-300);
    transition: 0.25s ease-in-out;
  }
  .darkmode .burger-line {
    background-color: var(--color-white-100);
  }
  .burger-line:nth-child(1) {
    top: 0px;
  }
  .burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
  }
  .burger-line:nth-child(3) {
    top: 1rem;
  }
  .burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
  }
  .burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
  }
  .burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
  }
  
  .switch {
    position: relative;
    display: block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    z-index: 9;
    margin-left: 5rem;
    margin-right: 0.5rem;
  }
  .switch-light, .switch-dark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in;
  }
  .switch-light {
    font-size: 1.45rem;
    visibility: visible;
    color: var(--color-black-300);
  }
  .darkmode .switch-light {
    font-size: 0rem;
    visibility: hidden;
  }
  .switch-dark {
    font-size: 0rem;
    visibility: hidden;
    color: var(--color-white-100);
  }
  .darkmode .switch-dark {
    font-size: 1.45rem;
    visibility: visible;
  }
  
  .banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 2rem;
  }
  @media only screen and (min-width: 48rem) {
    .banner-column {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      justify-content: center;
      margin-top: 4rem;
    }
  }
  @media only screen and (min-width: 64rem) {
    .banner-column {
      grid-template-columns: 1fr -webkit-max-content;
      grid-template-columns: 1fr max-content;
      -moz-column-gap: 2rem;
           column-gap: 2rem;
    }
  }
  .banner-image {
    display: block;
    max-width: 25rem;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    justify-self: center;
  }

  .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.5rem;
  }
  @media only screen and (min-width: 48rem) {
    .banner-image {
      order: 1;
      max-width: 28rem;
      height: auto;
    }
  }
  @media only screen and (min-width: 64rem) {
    .banner-image {
      max-width: 33rem;
      height: auto;
    }

    .banner-inner {
      align-items: start;
    }

   

    .main{
      text-align: start;
    }

    #producto{
      padding-top: 120px;
    }
  }
  
  


#nosotros{
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 40px;
    background-color: #E6EFF0;
}

#productos
{
  text-align: center;
}
  

  


  @media (min-width: 768px){
    #nosotros{
      flex-direction: row;
      justify-content: space-between;
      padding: 50px;
    }

    .datos{
      margin-left: 50px;
    }

    #nosotros img{
      width: 300vh;
    }

    
  }


  .section-padding {
    padding: 0px 0; 
  }
  .brand-carousel {
    margin-top: 5%;
  }
  .owl-dots {
    text-align: center;
    margin-top: 4%;
  }
  .owl-dot {
    display: inline-block;
    height: 15px !important;
    text-align: center;
    width: 15px !important;
    background-color: #878787 !important;
    opacity: 0.8;
    border-radius: 50%;
    margin: 0 5px;
  }
  .owl-dot.active {
    background-color: #000 !important;
  }

  .single-logo{
    margin-right: 40px;
  }
  

  .divider {
    width: 10%;
    height: 3px; /* Altura del divisor */
    background-color: var(--color-blue-500); /* Color del divisor */
    margin: 15px auto ;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
  }

  #testimonios{
    padding: 10px;
  }


  @keyframes slideIn {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  .texto, .outside, .inside, .flip-card, .producto {
    animation: slideIn 1.2s ease-out;
  }
  
  
     
  
  #lottie-empresa{
      display: none;
      
      
  }
  
  @media (min-width: 768px){
          #lottie-empresa{
            display: flex;
            height: 50px;
            width: 50px;
          }
  }
  
  .fijo {
    position: relative; /* Cambiar fixed si se desea que el contenido fluya */
    width: 100%;
    height: 60vh;
    background-image: url('../img/fija.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  
  /* Estilos del Flip Card */
  .flip-card {
      width: 250px;
      height: 250px;
      perspective: 1000px; /* Agrega profundidad */
  }
  
  /* Estructura interna */
  .flip-card-inner {
      width: 100%;
      height: 100%;
      position: relative;
      transform-style: preserve-3d;
      transition: transform 0.6s;
  }
  
  /* Al pasar el mouse, se voltea */
  .flip-card:hover .flip-card-inner {
      transform: rotateY(180deg);
  }
  
  /* Cara frontal y trasera */
  .flip-card-front, .flip-card-back {
      position: absolute;
      width: 100%;
      height: 50%;
      backface-visibility: hidden;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 15px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
      font-size: 1.8em;
      font-weight: bold;
      text-transform: uppercase;
  }
  
  /* Estilo de la cara frontal */
  .flip-card-front {
      background-color:  rgb(2, 93, 116); 
      color: white;
  }
  
  /* Estilo de la cara trasera */
  .flip-card-back {
      background-color: #333; /* Negro */
      color: white;
      transform: rotateY(180deg);
  }
  
  /* Botón de la cara trasera */
  .flip-card-back a {
      text-decoration: none;
      color: white;
      background-color: none;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 1.2em;
  }
  
  .flip-card-back a:hover {
      color: gray;
  }
  
  
  .productos {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/productos.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center; /* Centrado horizontal por defecto (mobile) */
    align-items: center; /* Centrado vertical */
  }
  
  /* Estilos para el párrafo dentro de productos */
  .productos p {
    padding: 20px;
    max-width: 80%;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center; /* Texto centrado en móviles */
    background-color: rgba(2, 93, 116, 0.5); /* Fondo semitransparente para mejorar la legibilidad */
    border-radius: 8px;
  }
  
  /* Estilos para pantallas grandes (desktop, 768px en adelante) */
  @media screen and (min-width: 768px) {
    .productos {
      justify-content: flex-end; /* Mueve el contenido al lado derecho */
      align-items: center; /* Mantiene el centrado vertical */
    }
  
    .productos p {
      text-align: left; /* Alinea el texto a la izquierda */
      max-width: 60%;
      padding: 40px;
    }
  }
  
    /* Estilos generales para el contenedor de la portada */
    .portada {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../img/portada.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center; /* Alinea el contenido al lado derecho */
    align-items: center; /* Centra el contenido verticalmente */
  }
  
  /* Estilos para el texto dentro de la portada */
  .texto {
    padding: 20px;
    max-width: 80%; /* Evita que el texto se desborde */
    color: white;
    font-family: Arial, sans-serif;
    text-align: left; /* Alinea el texto a la izquierda en pantallas grandes */
    background-color: rgba(2, 93, 116, 0.5); /* Fondo semitransparente para mejorar la legibilidad */
    border-radius: 8px;
  }
  
  /* Estilos específicos para pantallas grandes (desktop, 768px en adelante) */
  @media screen and (min-width: 768px) {
  
    .portada{
      justify-content: flex-end;
    }
    .texto {
      max-width: 60%; /* Ajusta el ancho del texto */
      padding: 40px; /* Aumenta el padding en pantallas más grandes */
    }
  }
  
  #nosotros{
    background-image: url('../img/textura.png');
    background-position: center;
    
  }
  
  .empresa{
    display: flex;
    flex-direction: column;
    text-align: center;
    height: 100vh;
  }
  
  .parrafo1{
    display: flex;
    flex-direction: column;
    padding: 40px;
  }
  
  .lottie{
    justify-content: center;
  }
    
  
  @media screen and (min-width: 768px) {
  
    .empresa{
      padding: 70px;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      text-align: start;
      height: 50vh;
    }
  
    .parrafo1{
      max-width: 70vh;
      padding: 0px;
    }
  
    .outside{
      min-width: 60vh;
      margin: 0;
      padding: 0;
    }
  
    .outside img {
      width: 100%;
      height: auto;
      margin-left: 100px;
    }
  
    .lottie{
    justify-content: start;
  }
    
  }
  
  
  






