

    /* Header */
    body{
       background-color: #f3f0f0;
       line-height: 1.5;
    }
    html {
        scroll-padding-top: 100px; /* Altura del menú fijo */
    }
    h2{
        font-size: 30px;
      text-transform: uppercase; /* Convierte el texto a mayúsculas */
  font-weight: bold; /* Hace el texto más negrita */
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
    }
    h3{
        font-size: 25px;
      text-transform: uppercase; /* Convierte el texto a mayúsculas */
  font-weight: bold; /* Hace el texto más negrita */
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
    }
    p{
       
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        font-size: 1.1rem;
    }
    a{
        font-size: 20px;
        font-family: "Oswald", sans-serif;
        font-optical-sizing: auto;
        font-weight: 500;
        font-style: normal;
    }
    .logo{
        width: 100px;
    }
    header {
      position: fixed;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 10%;
      background: white;
      color: black;
      transition: all 0.3s ease;
      z-index: 1000;
      
       
    }
   
    header h1 {
      
      margin-bottom: 10px;
      font-size: 1.5rem;
    }
    nav {
      display: flex;
      gap: 50px;
    }
    nav a {
     
      margin-bottom: 10px;
      text-decoration: none;
      color: inherit;
      font-size: 1rem;
      position: relative;
      transition: all 0.3s ease;
      
    }

    nav a:hover{
        color:rgba(19, 44, 110, 0.87);
    }
    header.active {
        
      background: white;
      padding-top: 10px;
      color: black;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    }
    nav a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background: currentColor;
      margin-top: 0px;
      color: rgba(19, 44, 110, 0.87);
      
      
    }
    nav a.active {
        color: rgba(19, 44, 110, 0.87);
    }
    /* Hero Section */
/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('img1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-text {
    max-width: 50%;
    text-align: left;
    color: white;
    animation: slideInLeft 1s ease-out forwards;
}

.hero-text h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-text .cta-button {
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-text .cta-button:hover {
    background-color:#dfe3e7;
    color: #007BFF;
}

.hero-stats {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    
}

.stat {
    background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(100px);
    animation: slideIn 1s ease forwards;
}


/* Contador numérico para las estadísticas */
.stat-number {
    font-size: 2rem;
    font-weight: bold;
    
    display: block;
}
.stat:hover{
    background-color: #007BFF;
    color: white;
}
.stat:hover h3{
    background-color: #007BFF;
    color: white;
}
/* Animación de estadísticas */
@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
        
    }
}

/* Animación para que el texto entre desde la izquierda */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
        
    }
    to {
        opacity: 1;
        transform: translateX(0);
        
    }
}

.stat:nth-child(1) {
    animation-delay: 0.3s;
}

.stat:nth-child(2) {
    animation-delay: 0.6s;
}

.stat:nth-child(3) {
    animation-delay: 0.9s;
}

/* Responsividad para pantallas menores a 800px */
@media (max-width: 800px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-stats {
        display: none; /* Ocultamos las estadísticas */
    }
}

/* Responsividad para pantallas menores a 600px */
@media (max-width: 600px) {
    .hero-text h2 {
        font-size: 2.2rem; /* Ajustar el tamaño del título */
    }

    .hero-text p {
        font-size: 1rem; /* Ajustar el tamaño del texto */
    }

    .hero-text .cta-button {
        padding: 10px 15px; /* Ajustar tamaño del botón */
    }
}

/*
 Keyframes para el zoom del fondo 
@keyframes kenburns-zoom {
  0% {
    background-size: 100%; /* Imagen original 
    background-position: center center;
  }
  100% {
    background-size: 100%; /* Zoom más sutil 
    background-position: center top;
  }
}

 Keyframes para el texto 
@keyframes typing {
  to {
    width: 100%;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*/



    /* Secciones */
    section {
      width: 100%;
      
      background: #f4f4f4;
    }
    section .section-container {
   
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 20px;
      opacity: 0;
      transform: translateY(100px);
      transition: all 1s ease-in-out;
    }
    section.visible .section-container {
      opacity: 1;
      transform: translateY(0);
    }
    .section-content {
      
      display: flex;
      flex-direction: column;
      gap: 20px;
      flex: 1;
      text-align: center;
    }
    .section-image {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .section-image img {
      max-width: 80%;
      height: auto;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      
    }
    .section-image img:hover {
      transform: scale(1.05);
      filter: brightness(0.8);
      box-shadow: 0 8px 12px rgba(0, 0, 0, 0.3);
      
    }
    .section-content h2 {
      font-size: 30px;
      text-transform: uppercase; /* Convierte el texto a mayúsculas */
  font-weight: bold; /* Hace el texto más negrita */
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  
  font-style: normal;
    }
    

    /* Botones */
    .section-content button {
        margin-top: 30px;
      background: #007BFF;
      color: white;
      padding: 15px 15px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      text-align: center;
      transition: all 0.3s ease;
      width: 50%;
      margin: 0 auto;
      margin-top: 30px;
    }
    .section-content button:hover {
      background: #0056b3;
      transform: scale(1.1);
    }
/*button {
  border: none;
  display: block;
  position: relative;
  padding: 0.7em 2.4em;
  font-size: 18px;
  background: transparent;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  color: royalblue;
  z-index: 1;
  font-family: inherit;
  font-weight: 500;
}
*/
button span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: -1;
  border: 4px solid royalblue;
}

button span::before {
  content: "";
  display: block;
  position: absolute;
  width: 8%;
  height: 500%;
  background: var(--lightgray);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-60deg);
  transition: all 0.3s;
}

button:hover span::before {
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 100%;
  background: royalblue;
}

button:hover {
  color: white;
}

button:active span::before {
  background: #2751cd;
}
    /* Section 2 & 4 Background Colors */
    #seccion1 {
        background-color: #f3f0f0;
        padding: 50px 0;
      }
   
    #seccion2 {
        color:white;
      background-color: #174f77;
      padding: 50px 0;
    }
    #seccion3 {
        background-color: #f3f0f0;
        justify-content: center;
        padding: 50px 0;
      }
    #seccion4 {
        color:white;
        background-color: #174f77;
       
    }
    #seccion4 {
      /*position: sticky;
      top: 80px;  Fija la sección 4 100px antes de llegar a la parte superior 
      z-index: 0;*/
      color:white;
      background-color: #174f77;
      padding: 50px 0;
    }

    /* Sección 5 - Fondo blanco, sube mientras se hace scroll */
    #seccion5 {
      position: relative;
      background-color: #f3f0f0;
      z-index: 2;
      transition: transform 0.3s ease-out;
      padding: 100px 0;
      padding: 50px 0;
    }
    #seccion6 {
        position: relative;
        z-index: 2;
        padding: 100px 0;
       
      background-color: #174f77;
      padding: 50px 0;
    }
    /* Footer */
   /* Estilos generales del footer */
footer {
    background-color: #2d2d2d;
    color: white;
    padding: 0px 0px;
 
  }
  
  /* Contenedor de las columnas */
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    padding: 50px 50px;
  }
  
  /* Estilo de cada columna */
  .footer-column {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
  }
  
  /* Títulos de las columnas */
  .footer-column h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  /* Textos dentro de las columnas */
  .footer-column p {
    font-size: 0.9em;
    margin-bottom: 10px;
    color: #bbb;
  }
  
  /* Estilo para los iconos de redes sociales */
  .social-icons {
    display: flex;
    gap: 10px;
  }
  
  .social-icon img {
    width: 25px;
    height: 25px;
    transition: all 0.3s ease;
  }
  
  .social-icon img:hover {
    transform: scale(1.1);
  }
  
  /* Estilo de los créditos */
  .footer-credits {
    text-align: center;
    font-size: 0.9em;
    color: #aaa;
    padding: 20px;
    background-color: #1d1d1d;
  }
  
  .footer-credits a {
    color: #007bff;
    text-decoration: none;
  }
  
  .footer-credits a:hover {
    text-decoration: underline;
  }
  
  /* Hacer el footer responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
    }
  
    .footer-column {
      text-align: center;
    }
  }
  

    /* Responsive */
    @media (max-width: 1000px) {
      section .section-container {
        flex-direction: column;
        padding: 30px 5%;
      }
      .section-image img {
        max-width: 100%;
      }
      .menu-item {
        display: block;
        padding: 10px;
        text-align: center;
      }
      .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 2rem;
      }
      .menu-toggle.active {
        display: block;
      }
      .menu-toggle.active a{
        display: block;
      }
      header {
        padding: 10px;
        padding-left: 30px;
      }
      nav {
        display: none;
      }
      header.active nav a{
        display: none;
      }
      
      header.active nav a  {
      
      display: block;
    }
    
    }

    /* Mobile Menu */
    .menu-toggle {
     display: none;
      cursor: pointer;
      font-size: 2rem;
    }
    nav.active {
      display: flex;
      flex-direction: column;
      gap: 0px;
      position: absolute;
      top: 60px;
      right: 10px;
      background: rgb(109, 110, 110);
      padding: 10px;
      border-radius: 5px;
    }
    
    @media (max-width: 1000px) {
   
        .menu-toggle {
            display: block;
       cursor: pointer;
       font-size: 2rem;
     }
      } 
  
      /*=============== GOOGLE FONTS ===============*/
      @import url("https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;500;600&display=swap");

      /*=============== VARIABLES CSS ===============*/
      :root {
        /*========== Colors ==========*/
        /*Color mode HSL(hue, saturation, lightness)*/
        --first-color: hsl(38, 92%, 58%);
        --first-color-light: hsl(38, 100%, 78%);
        --first-color-alt: hsl(32, 75%, 50%);
        --second-color: hsl(195, 75%, 52%);
        --dark-color: hsl(212, 40%, 12%);
        --white-color: hsl(212, 4%, 95%);
        --body-color: hsl(212, 42%, 15%);
        --container-color: hsl(212, 42%, 20%);
      
        /*========== Font and typography ==========*/
        /*.5rem = 8px | 1rem = 16px ...*/
        --body-font: "Bai Jamjuree", sans-serif;
        --h2-font-size: 1.25rem;
        --normal-font-size: 1rem;
      }
      
      /*=============== BASE ===============*/
      * {
        box-sizing: border-box;
        padding: 0;
        margin: 0;
      }
      
      body {
        font-family: var(--body-font);
        font-size: var(--normal-font-size);
        background-color: var(--body-color);
       
      }
      
      a {
        text-decoration: none;
      }
      
      img {
        display: block;
        max-width: 100%;
        height: auto;
      }
      
      /*=============== CARD ===============*/
      section .container {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        color: var(--white-color);
      }
      
      .card__container {
        padding-block: 5rem;
      }
      section .card__container{
         
         
          margin: 0 auto;
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          justify-content: center;
          gap: 20px;
          opacity: 0;
          transform: translateY(100px);
          transition: all 1s ease-in-out;
          color: var(--white-color);
        }
        section.visible .card__container{
          opacity: 1;
          transform: translateY(0);
        }
      .card__content {
        margin-inline: 1.75rem;
        border-radius: 1.25rem;
        overflow: hidden;
      }
      
      .card__article {
        width: 300px; /* Remove after adding swiper js */
        border-radius: 1.25rem;
        overflow: hidden;
      }
      
      .card__image {
        position: relative;
        background-color: var(--first-color-light);
        padding-top: 1.5rem;
        margin-bottom: -.75rem;
      }
      
      .card__data {
        background-color: var(--container-color);
        padding: 1.5rem 2rem;
        border-radius: 1rem;
        text-align: center;
        position: relative;
        z-index: 10;
      }
      
      .card__img {
        width: 180px;
        margin: 0 auto;
        position: relative;
        z-index: 5;
      }
      
      .card__shadow {
        width: 200px;
        height: 200px;
        background-color: var(--first-color-alt);
        border-radius: 50%;
        position: absolute;
        top: 3.75rem;
        left: 0;
        right: 0;
        margin-inline: auto;
        filter: blur(45px);
      }
      
      .card__name {
        font-size: var(--h2-font-size);
        color: var(--second-color);
        margin-bottom: .75rem;
      }
      
      .card__description {
        font-weight: 500;
        margin-bottom: 1.75rem;
      }
      
      .card__button {
        display: inline-block;
        background-color: var(--first-color);
        padding: .75rem 1.5rem;
        border-radius: .25rem;
        color: var(--dark-color);
        font-weight: 600;
      }
      
      /* Swiper class */
      .swiper-button-prev:after,
      .swiper-button-next:after {
        content: "";
      }
      
      .swiper-button-prev,
      .swiper-button-next {
        width: initial;
        height: initial;
        font-size: 3rem;
        color: var(--second-color);
        display: none;
      }
      
      .swiper-button-prev {
        left: 0;
      }
      
      .swiper-button-next {
        right: 0;
      }
      
      .swiper-pagination-bullet {
        background-color: hsl(212, 32%, 40%);
        opacity: 1;
      }
      
      .swiper-pagination-bullet-active {
        background-color: var(--second-color);
      }
      
      /*=============== BREAKPOINTS ===============*/
      /* For small devices */
      @media screen and (max-width: 320px) {
        .card__data {
          padding: 1rem;
        }
      }
      
      /* For medium devices */
      @media screen and (min-width: 768px) {
        .card__content {
          margin-inline: 3rem;
        }
      
        .swiper-button-next,
        .swiper-button-prev {
          display: block;
        }
      }
      
      /* For large devices */
      @media screen and (min-width: 1120px) {
        .card__container {
          max-width: 1120px;
        }
      
        .swiper-button-prev {
          left: -1rem;
        }
        .swiper-button-next {
          right: -1rem;
        }
      }

      /*estadisticas*/
      #stats {
        width: 80%;
        display: flex;
        justify-content: center;
        justify-content: space-around;
        padding: 20px;
        flex-wrap: wrap;
        margin: 0 auto;
        background-color: #f3f0f0;
      }
      
      .stat {
        text-align: center;
        flex: 1 1 30%;
        padding: 20px;
        margin: 10px;
        background-color: #f3f0f0;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      }
      
      .stat h3 {
        font-size: 1.5rem;
        color: #333;
      }
      
      .counter {
        font-size: 2rem;
        color: #007BFF;
        font-weight: bold;
        margin-top: 10px;
      }
      
      @media (max-width: 768px) {
        #stats {
          flex-direction: column;
        }
        .stat {
          flex: 1 1 100%;
          margin: 10px 0;
        }
      }
      .section-image img {
        width: 100%;
        height: auto;
        border: 10px solid #fff;  /* Borde blanco */
        border-radius: 10px;  /* Esquinas redondeadas */
        position: relative;  /* Necesario para el pseudo-elemento */
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);  /* Sombras internas y externas */
      }
      
      .section-image img::before {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        border: 2px solid transparent;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0.2), rgba(255, 255, 255, 0.5));  /* Rayas diagonales */
        border-radius: 15px;  /* Esquinas redondeadas del marco */
        z-index: -1;  /* Para que el marco quede debajo de la imagen */
      }
      
      .section-image img:hover {
        transform: scale(1.05);  /* Aumenta ligeramente el tamaño */
        box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.6), 0 8px 25px rgba(0, 0, 0, 0.4);  /* Sombras más intensas al pasar el ratón */
      }
      /*formualrio*/
      
.formulario {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    margin: 0px auto;
    width: 400px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3); 
    text-align: left;
  }
  
  .formulario .form {
    display: flex;
    flex-direction: column;
  }
  
  .formulario .form h2 {
    margin-bottom: 20px;
    text-align: center;
    color: #007BFF; /* Color naranja para combinar con el tema de la pollería */
  }
  
  .formulario .form-group {
    margin-bottom: 20px;
  }
  
  .formulario .form-group label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
    color: #007BFF;/* Color naranja para combinar con el tema de la pollería */
  }
  /* Agrupación de campos en una fila */
.formulario .form-group-row {
    display: flex;
    gap: 10px; /* Espacio entre los campos */
  }
  
  .formulario .form-group-row .form-group {
    flex: 1; /* Distribución equitativa del ancho */
  }
  
  .formulario .form-group-row .form-group input {
    width: 100%; /* Asegura que el campo ocupe todo el espacio disponible */
  }
  
  .formulario .form-group input, .form-group textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
  }
  
  .formulario .form-group textarea {
    resize: vertical;
    height: 50px;
  }
  
  .formulario button[type="submit"] {
    padding: 10px;
    background-color: #007BFF; /* Color naranja para combinar con el tema de la pollería */
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
  }
  
  .formulario button[type="submit"]:hover {
    background-color:#007BFF; /* Color naranja claro al pasar el cursor para dar feedback visual */
  }
  
  #pedido-sugerencias {
    font-size: 15px;
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-top: none;
    z-index: 1000;
  }
  #pedido-sugerencias div {
    padding: 10px;
    cursor: pointer;
  }
  #pedido-sugerencias div:hover {
    background-color: #f1f1f1;
  }
  /*sección nosotros*/
   /* Mission and Vision Section */
   .mision-vision {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.mision-vision div {
    flex: 1;
    padding: 20px;
    background:  #174f77;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    
}
.mision-vision div {
    
    color:  white;
   
    
}

.mision-vision h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

/* Values Section */
#nosotros .section-container{
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    display: block;
    flex-wrap:nowrap;

}

#nosotros .section-container h2 {
   
    text-align: center;
    margin-bottom: 30px;
}

#nosotros .section-container p {
    
    line-height: 1.6;
    text-align: center;
}
.valores {
    margin-top: 50px;
    text-align: center;
}

.valores ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.valores li {
    font-size: 1.2rem;
    padding: 10px;
    display: flex;
    align-items: center;
}

.valores img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
#nosotros h3{
    color: white;
}
#nosotros h2{
    color: #174f77;
}




/* CTA Section */
.cta {
    
    margin: 50px 50px;
    text-align: center;
}

.cta a {
    background-color: #007BFF;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-left: 20px;
    margin-right: 20px;

}

.cta a:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1000px) {
    .mision-vision {
        flex-direction: column;
    }

    .valores ul {
        flex-direction: column;
        gap: 20px;
    }
  
        .cta {
            width: 90%;
            padding: 15px;
        }

        .cta p {
            font-size: 1rem;
            margin-bottom: 80px;
        }

        .cta a {
            margin-top: 80px;
            padding: 12px 20px;
            font-size: 1rem;
        }
    
   
}
/*tarjetas apra formulario*/
.section {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-top: 0px;
}

/* Tarjeta de horario de atención */
.business-hours-card, .contact-card {
    width: 400px;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), inset 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #333333;
    opacity: 1;
    margin-top: 40px;
    justify-content: center;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.card-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f5f5f5;
    padding: 5px;
}

.card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: #0056b3;
    display: inline-block;
}

/* Efecto letra por letra */
.card-header h3 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: letter-appear 0.3s forwards ease;
}

.card-content p {
    font-size: 1rem;
    color: #555555;
    margin: 10px 0;
}

.card-content p strong {
    color: #0056b3;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    font-size: 1.5rem;
    color: #0056b3;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #003d8a;
}



@keyframes letter-appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Floating Social Button */
.social-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  
  .social-button {
    background-color: #007BFF;
    color: white;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .social-button:hover {
   color:#003d8a;
    background-color: white;
  }
  
  /* Social media buttons */
  .social-buttons {
    display: none;
    flex-direction: column;
    margin-top: 10px;
    align-items: flex-end;
  }
  
  .social-icon {
    margin-bottom: 8px;
  }
  
  .social-icon img {
    width: 45px;  /* Adjust logo size */
    height: 45px;
  }
  
  /* Show social icons when active */
  .social-buttons.active {
    display: flex;
  }
  
  .social-buttons.active .social-icon {
    opacity: 1;
    transform: translateY(0);
  }
  /*servicios*/
  .services-section {
    background-color: #174f77; /* Fondo gris claro */
    padding: 50px 20px; /* Espaciado alrededor */
    text-align: center; /* Alineación central */
}

.services-header h2 {
    font-size: 2.5rem; /* Tamaño grande para el título */
    color: white; /* Color azul oscuro */
    margin-bottom: 20px; /* Espaciado debajo del título */
}

.services-header p {
    font-size: 1.1rem;
    color: white;
    max-width: 800px;
    margin: 0 auto 40px; /* Centrado y espaciado */
}

/* Tarjetas de Servicio */
.services-cards {
    display: flex;
    justify-content: center; /* Alineación de las tarjetas */
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 25px;
    width: 280px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Sombra ligera */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
filter: brightness(0.7);
transform: scale(1.1); 
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
to {
opacity: 1;
transform: translateY(0);
}
}

.service-card:hover {
    transform: translateY(-10px); /* Leve elevación al pasar el ratón */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* Sombra más intensa */
}

.service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0056b3;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.service-card .card-button {
    background-color: #0056b3;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.service-card .card-button:hover {
    background-color: white;
    color: #003d8a;
}
.service-card img:hover {
transform: scale(1.05);
transition: transform 0.3s ease-in-out;
}


/* Botón General para Contacto */
.contact-button {
    display: inline-block;
    background-color: #0056b3;
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    margin-top: 40px;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: white;
    color: #003d8a;
}

/* Responsividad */
@media (max-width: 768px) {
    .services-cards {
        flex-direction: column; /* Apilar las tarjetas en pantallas pequeñas */
        align-items: center;
    }

    .service-card {
        width: 100%; /* Las tarjetas ocuparán todo el ancho disponible */
        margin-bottom: 20px; /* Espaciado entre tarjetas */
    }
}
#seccion2{
    background-image: radial-gradient(rgba(255, 252, 252, 0.26) 2px, transparent 2px);
    background-size: 32px 32px;
    
    
}
/*slide*/

    /* Slider Section */
    #slider {
      position: relative;
      width: 100%;
      height: 80vh;
      overflow: hidden;
      background-color: #000;
    }

    #slider .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      display: none;
      opacity: 0;
      transition: opacity 0.8s ease-in-out;
    }

    #slider .slide.active {
      display: block;
      opacity: 1;
    }

    #slider .slide img.bg {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }

    #slider .slide img.overlay {
      width: 50%;
      position: absolute;
      top: 50%;
      left: 30%; /* Moved the truck 40% from the left */
      transform: translate(-50%, -50%);
      z-index: 2;
      filter: drop-shadow(15px 15px 20px rgba(0, 0, 0, 0.7));
      animation: fade-in 0.8s ease-in-out;
    }

    /* Info Cards */
    .info-cards {
      position: absolute;
      top: 15%;
      right: 15%; /* Changed to 15% from right */
      display: flex;
      flex-direction: column;
      gap: 20px;
      z-index: 3;
    }

    .info-card {
      background-color: rgba(255, 255, 255, 0.9);
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      opacity: 0;
      transform: translateX(50%);
      transition: all 0.8s ease-in-out;
    }

    .slide.active .info-card {
      opacity: 1;
      transform: translateX(0);
      animation: slideInRight 0.8s ease-in-out forwards;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(50%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .info-card h3 {
      margin: 0;
      font-size: 1.2rem;
    }

    .info-card p {
      margin: 5px 0;
      font-size: 0.9rem;
    }

    /* Bottom Shadow Effect */
    #slider::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 20%;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      z-index: 4;
    }

    /* Navigation Buttons */
    #slider .nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(0, 0, 0, 0.5);
      color: #fff;
      border: none;
      padding: 10px 15px;
      cursor: pointer;
      z-index: 5;
    }

    #slider .nav.left {
      left: 10px;
    }

    #slider .nav.right {
      right: 10px;
    }

    /* Animations */
    @keyframes fade-in {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    /* Responsiveness */
    @media (max-width: 768px) {
      .info-cards {
        top: 10%;
        right: 2%;
      }

      .info-card {
        padding: 10px;
      }

      .info-card h3 {
        font-size: 1rem;
      }

      .info-card p {
        font-size: 0.8rem;
      }

      #slider .slide img.overlay {
        width: 70%;
      }
      .business-hours-card, .contact-card {
        width: 90%;}
      .formulario {
         width: 90%;
        }
        
    }

    @media (max-width: 480px) {
      #slider .slide img.overlay {
        width: 80%;
      }

      .info-cards {
        top: 5%;
        right: 2%;
        gap: 15px;
      }

      .info-card {
        padding: 8px;
      }

      .info-card h3 {
        font-size: 0.9rem;
      }

      .info-card p {
        font-size: 0.75rem;
      }
    }