/* Reset básico */ 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
/* paragraph format */
.paragraph-light {
    margin: 0;
    padding: 0;
    text-align: calc(100vw - 100%); 
    
}
body {    
    color: #1d1d1f;
    background-color: #e0e0ec;
    line-height: 1.1;
}

/* Navegation */
nav {
    background-color: rgba(0, 0, 0, 0.75);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: saturate(100%) blur(7px);
}

.nav-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    position: relative;
}

.nav-item {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.nav-item:hover {
    color: rgba(255, 255, 255, 1);
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 20px;
    position: absolute;
    right: 20px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

/* Mobile Nav Styles */
.mobile-nav {
    display: none;
    position: fixed;
    top: 44px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 998;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.mobile-nav.active {
    height: calc(100vh - 44px);
    padding: 20px 0;
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 30px;
    margin: 15px 0;
    transition: color 0.2s;
}

.mobile-nav a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Hero Sections */
.hero {
    text-align: center;
    padding: 60px 20px;
    background-color: #ffffff;
    margin-bottom: 10px;
}
.hero-image-main {
    background-image: url('/img/orange-vapor-background.webp');
    background-size: cover;       
    
   }

.hero-products-img {
    background-image: url('/productos/img/bartec-nuestros-productos.webp');
    
}
.hero-solutions-img {
    background-image: url('/soluciones/img/bartec-nuestras-soluciones.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.hero-atex-img {
    background-image: url('/productos/atex/img/atex-intrinsecamente-seguro.webp');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    
}
.hero-title {
    font-size: 54px;
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #c5c5c5;
}

.hero-subtitle-light {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 14px;
    color: #bbbbbb;
}
.hero-subtitle-mid {
    font-size: 28px;
    font-weight: 450;
    margin-bottom: 14px;
    color: #3b3b3b;
}

.hero-links {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 700;    
}

.hero-link {
    color: #0066cc;
    text-decoration: none;
    margin: 0 20px;
}

.hero-link:hover {
    text-decoration: none;
    color: #0055aa;
}

.hero-image {
    margin-top: 10px;
    max-width: 100%;
    height: auto;
    background-image: cover;
}

/* Grid section */
.grid-container {
    display: grid;
    /*grid-template-columns: repeat(2, 1fr);*/
    gap: 10px;
    padding: 0 10px;
    max-width: 1440px;
    margin: 0 auto;
}

.grid-item {
    background-color: #fff;
    height: 580px;    
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding-top: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


/*Product container sm*/
.grid-item-sm {
    background-color: #fff;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.container-sm {
    background-color: transparent;
    width: 100%;
    max-width: 800px;
    height: 100%; 
    display: flex;
    flex-direction: column;    
    border-radius: 1px;
    overflow: hidden;
    
}

.top-row {
    background-color: transparent;
    height: 40%; /* Height adjusts automatically to maintain aspect ratio */
    
    
}

.middle-row {
    background-color: transparent;
    padding: 5px;
    height: 30%; /* Height adjusts automatically to maintain aspect ratio */
    width: 100%; /* Makes the image take the full width of its container */
    height: auto; /* Height adjusts automatically to maintain aspect ratio */
    max-width: 100%; /* Ensures image never exceeds its original size */
    display: block; /* Removes any extra space below the image */
    object-fit: contain; /* Alternative option that ensures the entire image is visible */    
}
.middle-row-img {
    background-color: transparent;
    height: 50%;
    width: 100%; /* Makes the image take the full width of its container */
    height: auto; /* Height adjusts automatically to maintain aspect ratio */
    max-width: 100%; /* Ensures image never exceeds its original size */
    display: block; /* Removes any extra space below the image */
    object-fit: contain; /* Alternative option that ensures the entire image is visible */    
}

.bottom-row {
    background-color: transparent;
    height: 20%; /* Height adjusts automatically to maintain aspect ratio */
    
}

.grid-item-fullwidth-main-image {
    background-image: url('/img/reparacion-electronica.webp');
    background-size: cover;
}

.grid-item3-Grid-image {
    background-image: url('../img/automatizacion-y-control.webp');
    background-size: cover;
}
.grid-item4-Grid-image {
    background-image: none;
    background-size: cover;
}
/* Para asegurar que el contenido se ajuste adecuadamente */
.content {
    width: 100%;
    overflow: auto;
}
/* Grid para seccion productos*/

.container-product {
    background-color: transparent;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;    
    max-width: 1200px;
    margin: auto;
    padding: 40px 10px;
  }

  .item-product {
    background-color: white;
    color: var(--text-color);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        
  }

  .row-top-product {
    padding: 20px 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
  }

  .row-middle-product {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;    
  }

  .row-middle img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: cover;
  }

  .row-bottom-product {
    padding: 16px;
    display: flex;
    justify-content: center;
  }

  .row-bottom button {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
  }

  .dark-mode-product {
    --background-color: black;
    --text-color: white;
  }


.grid-item-full {
    grid-column: span 2;
    height: 580px;
}

.dark-bg {
    background-color: #000;
    color: #f5f5f7;
}

.grid-title {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 6px;
}

.grid-subtitle {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 14px;
}

.grid-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    max-height: 75%;
}

/* Footer */
footer {
    background-color: #f5f5f7;
    color: #6e6e73;
    padding: 20px;
    font-size: 13px;
    font-weight: 400;
    margin-top: 20px;
}

.footer-container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
    height: auto;
}

.footer-legal {
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-column {
    width: 23%;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.footer-column a {
    display: block;
    color: #6e6e73;
    text-decoration: none;
    margin-bottom: 0.9rem;
}

.footer-column a:hover {
    text-decoration: underline;
}

.copyright {    
    margin-top: 15px;
    border-top: 1px solid #d2d2d7;
    padding-top: 10px;
    line-height: 1.5rem; 
    height: fit-content;   
}

.copyright a {    
    color: #6e6e73;
    text-decoration: none;
    margin-bottom: 0.9rem;
}

.copyright a:hover {
    text-decoration: underline;
}

/* Font control */

.roboto-logo {
    font-family: "Roboto", sans-serif;
    font-size: 25px;
    font-optical-sizing: auto;
    font-weight: 580;
    font-style: normal;
    font-variation-settings:
      "wdth" 100;
  }

/* Orange capsule button */
.orange-button {
    display: inline-block;
    background-color: #fc7100; /* Color naranja estilo Apple */
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    text-align: center;
    border-radius: 25px;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin: 0.9rem;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
  }
  
  /* Efecto hover */
  .orange-button:hover {
    background-color: #f79525; /* Naranja más claro al pasar el mouse */
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12);
  }
  
  /* Efecto active (al hacer clic) */
  .orange-button:active {
    background-color: #F57C00; /* Naranja más oscuro al hacer clic */
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  
  /* Black capsule button */
  .black-button {
    display: inline-block;
    background-color: #272727; /* Black color */
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    text-align: center;
    border-radius: 25px;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin: 0.9rem;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
  }
  
  /* Hover effect */
  .black-button:hover {
    background-color: #333333; /* Lighter black/dark gray on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12);
  }
  
  /* Active effect (when clicked) */
  .black-button:active {
    background-color: #0a0a0a; /* Darker black when clicked */
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  /* Black capsule button */
  .blue-button {
    display: inline-block;
    background-color: #0078D7; /* Standard blue color */
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 500;
    text-align: center;
    border-radius: 25px;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin: 0.9rem;
    text-decoration: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
  }
  
  /* Hover effect */
  .blue-button:hover {
    background-color: #0086F0; /* Lighter blue on hover */
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.12);
  }
  
  /* Active effect (when clicked) */
  .blue-button:active {
    background-color: #0062B1; /* Darker blue when clicked */
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .call-button {
  display: none; /* Oculto por defecto */
}

 .call-button-footer {
    display: inline-block; /* Se muestra solo en pantallas => 789px */
    padding: 10px 15px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;    
  }  

/* Responsive */

/* Big screen */
@media (min-width: 1025px) {
    .grid-container-sm {        
        grid-template-columns: repeat(2, 1fr);        
    }
    .orange-button {
        font-size: 1.05rem;
        padding: 0.70rem 1.2rem;
        min-width: 160px;
      }
      .black-button {
        font-size: 1.05rem;
        padding: 0.70rem 1.2rem;
        min-width: 160px;
      }
      .blue-button {
        font-size: 1.05rem;
        padding: 0.70rem 1.2rem;
        min-width: 160px;
      }
}

/* Tablets til landscape */
@media (max-width: 1024px) and (min-width: 769px) {
    .grid-container {        
        background-color: transparent;
    }
    .grid-container-sm {        
        grid-template-columns: repeat(2, 1fr);
        
    }
    .grid-item {        
        padding: 15px 20px;
    }    
    .orange-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        min-width: 150px;
      }
    .black-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        min-width: 150px;
      }
    .blue-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.25rem;
        min-width: 150px;
      }
      .container-product {
        background-color: transparent;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;    
        max-width: 1200px;
        margin: auto;
        padding: 40px 30px;
      }
}
/* Smartphones til landscape */
@media (max-width: 768px) {
    .grid-container-sm {        
        grid-template-columns: repeat(2, 1fr);        
    }
    
    .grid-item-full {
        grid-column: span 1;
    }
    .grid-item {        
        padding: 15px 20px;
    }
    
    .footer-column {
        width: 48%;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }    
    
    /* Show hamburger menu on mobile */
    .hamburger-menu {
        display: flex;
    }
    
    /* Hide desktop nav items on mobile */
    .nav-items {
        display: none;
    }
    
    /* Show mobile nav when active */
    .mobile-nav {
        display: flex;
    }
    
    /* Center the logo when in mobile view */
    .nav-container {
        justify-content: flex-start;
        padding-left: 20px;
    }
    .orange-button {
        font-size: 1.15rem;
        padding: 0.5rem 1.1rem;
        min-width: 120px;
      }
    .black-button {
        font-size: 1.15rem;
        padding: 0.5rem 1rem;
        min-width: 120px;
      }
    .blue-button {
        font-size: 1.15rem;
        padding: 0.5rem 1.1rem;
        min-width: 120px;
      }

    .hero-products-img {
        background-image: url('/productos/img/bartec-nuestros-productos.webp');
        background-size: cover;
        
    }
    .hero-solutions-img {
        background-image: url('/soluciones/img/bartec-nuestras-soluciones.webp');
        background-size: cover;
        
    }
    
    .container-product {
        background-color: transparent;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;    
        max-width: 1200px;
        margin: auto;
        padding: 40px 30px;
      }

    .gradient-text-4 {
        /* Optimiza el gradiente para pantallas pequeñas */
        background-size: 200% 100%;
        
        /* Mejora la legibilidad en dispositivos móviles */
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
    }
    .download-card {
                padding: 1.5rem;
            }

    .description-title {
                font-size: 2rem;
            }

    .description-text {
                font-size: 1rem;
            }
    
    .call-button {
    display: inline-block; /* Se muestra solo en pantallas <= 789px */
    padding: 12px 24px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
 .call-button-footer {
  display: none; /* Oculto por defecto */
 } 
 
 }

/* Gradients for titles */
.gradient-text {
    /* Definición estándar del gradiente */
    background: linear-gradient(45deg, #4bc3d3, #0066ff, #9900cc);
    
    /* Soporte para Safari en iOS */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Sintaxis estándar para navegadores modernos */
    background-clip: text;
    color: transparent;
    
    /* Propiedades adicionales para mejor compatibilidad con iOS 18 */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    
    /* Asegura que el texto se renderice correctamente */
    
    
    /* Mejora la nitidez del texto en dispositivos Apple */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.gradient-text-2 {
    /* Definición estándar del gradiente */
    background: linear-gradient(45deg, #db2403, #f58505, #ffef16);
    
    /* Soporte para Safari en iOS */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Sintaxis estándar para navegadores modernos */
    background-clip: text;
    color: transparent;
    
    /* Propiedades adicionales para mejor compatibilidad con iOS 18 */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    
    /* Asegura que el texto se renderice correctamente */
    display: inline-block;
    
    /* Mejora la nitidez del texto en dispositivos Apple */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.gradient-text-3 {
    /* Definición estándar del gradiente */
    background: linear-gradient(45deg, #db0388, #f58505, #167bff);
    
    /* Soporte para Safari en iOS */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Sintaxis estándar para navegadores modernos */
    background-clip: text;
    color: transparent;
    
    /* Propiedades adicionales para mejor compatibilidad con iOS 18 */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    
    /* Asegura que el texto se renderice correctamente */
    display: inline-block;
    
    /* Mejora la nitidez del texto en dispositivos Apple */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gradient-text-4 {
    /* Definición estándar del gradiente */
    background: linear-gradient(270deg, #032900, #3ff127, #fd8f00);
    
    /* Soporte para Safari en iOS */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Sintaxis estándar para navegadores modernos */
    background-clip: text;
    color: transparent;
    
    /* Propiedades adicionales para mejor compatibilidad con iOS 18 */
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    
    /* Asegura que el texto se renderice correctamente */
    
    
    /* Mejora la nitidez del texto en dispositivos Apple */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

.circular-image {
    /* Hace que la imagen sea circular */
    border-radius: 50%;
    
    /* Mantiene la proporción y hace la imagen responsiva */
    width: 100%;
    height: auto;
    max-width: 100%;    
    /* Asegura que la imagen mantenga su forma circular al redimensionar */
    object-fit: cover;
    
  }
  
  /* Para mantener una proporción cuadrada del contenedor (opcional) */
  .image-container {
    background-color: tomato;
    width: 100%; /* Tamaño inicial, ajusta según necesites */
    max-width: 50%; /* Para que sea responsivo */
    aspect-ratio: 1/1; /* Mantiene el contenedor cuadrado */
    overflow: hidden; /* Asegura que la imagen no se salga del contenedor */
    content: center; /* Centra el contenido dentro del contenedor */
    /*position: relative; /* Para posicionar la imagen dentro del contenedor */
    
  }

  .small-responsive-image {
    width: auto;
    height: auto;
    object-fit: cover;
    max-width: 100%; /* Asegura que la imagen no exceda el ancho del contenedor */
  }

  .small-responsive-img {
    width: auto;
    height: auto;
    object-fit: cover;
    max-width: 150%; /* Asegura que la imagen no exceda el ancho del contenedor */
  }
  .small-responsive-img.circle {    
    border-radius: 50%; /* Hace que la imagen sea circular */
    width: auto;
    height: auto;
    object-fit: cover;
    max-width: 120%; /* Asegura que la imagen no exceda el ancho del contenedor */
    padding: 10px;
  }

  /* Button disabled */
  .nav-item.disabled {
  pointer-events: none; /* Prevents clicks */
  cursor: default;     /* Changes cursor to indicate it's not clickable */
  opacity: 0.6;        /* Makes it look visually disabled (optional) */
  text-decoration: none; /* Remove underline (optional) */
  color: #aaa;         /* Change color (optional) */
}

a.disabled {
  pointer-events: none;  /* desactiva clics */
  cursor: default;       /* cambia el cursor */
  opacity: 0.5;          /* los hace "apagados" */
  text-decoration: none; /* quita subrayado si quieres */
  color: gray;           /* color desactivado */
}

/* Noise animation */
.noise {
  
  animation: interference 3s infinite;
}
@keyframes interference {
    0% {
        transform: skewX(0)
    }

    31% {
        transform: skewX(-2deg)
    }

    31.5% {
        transform: skewX(89deg)
    }

    32% {
        transform: skewX(89deg)
    }

    32.1% {
        transform: skewX(0)
    }

    33% {
        transform: skewX(2deg)
    }

    54% {
        transform: skewX(0deg)
    }

    94% {
  
        transform: skewX(2deg)
    }

    95.1% {
        transform: skewX(-3deg)
    }

    95.2% {
        transform: skewX(-89deg)
    }

    95.3% {
        transform: skewX(2deg)
    }

    100% {
        transform: skewX(0)
    }
}
.description-container{
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f5f5f7;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    
}
.description-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}
.description-text {
    font-size: 20px;
    line-height: 1.4;
    color: #333;
    text-align: justify;
}
.product-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            max-width: 300px;
            height: 100%;
        }

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

        .card-image {
            width: 100%;
            height: 200px;
            background: #000;
            /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
            position: relative;
            overflow: hidden;
        }        
        
        .card-content {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .card-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .card-description {
            color: #6c757d;
            font-size: 1.rem;
            margin-bottom: 24px;
            flex-grow: 1;
            text-align: left;
        }

        /* Each letter will be a span */
        .glow-text span {
            display: inline-block;
            /* Animation properties */
            animation: progressive-glow 2.5s ease-in-out forwards;
            opacity: 0; /* Start invisible, fade in via animation */
        }

        /* The keyframe animation for the glow */
        @keyframes progressive-glow {
            0% {
                opacity: 0;
                color: #e5e7eb; /* Light gray start */
                text-shadow: none;
            }
            50% {
                opacity: 1;
                color: #ffffff; /* Bright white at peak */
                text-shadow: 
                    0 0 5px rgba(255, 255, 255, 0.8),
                    0 0 10px rgba(79, 70, 229, 0.7),
                    0 0 20px rgba(79, 70, 229, 0.6),
                    0 0 40px rgba(79, 70, 229, 0.5);
            }
            100% {
                opacity: 1;
                color: #e5e7eb; /* End state color */
                text-shadow: none;
            }
        }

.small.txt{
    font-size: 7px;
}
/* Animate styles */

.sticky-footer {
            position: fixed;
            bottom: 15px;
            left: 0;
            right: 15px;
            height: 40px; /* A height of approximately 40px */
            background-color: transparent;
            display: flex;
            align-items: right;
            justify-content: right;
            gap: 10px;
        }

/*WhatsApp link*/
.whatsapp-button {    
    --wa-green:#25D366;
    --wa-green-dark:#1DA851;
    display:inline-flex;
    align-items:center;
    gap:.6rem;
    padding:.1rem .35rem;
    border-radius:9999px;
    background:var(--wa-green);
    color:#fff;
    font:600 16px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    text-decoration:none;
    box-shadow:0 6px 18px rgba(37,211,102,.35);
    transition:transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.wa-icon{
    width:30px;
    height:30px;
    fill:currentColor;
  }
.animate__bounce.animate__bounce__ctrl {
  animation-duration: 2s;
  animation-delay: 3s;
  animation-iteration-count: infinite;
  animation-timing-function:ease-out;
}

.animate__headShake.animate__headShake__ctrl {
    animation-duration: 2s;
    animation-delay: 5s;    
    animation-iteration-count: infinite;
    animation-timing-function:ease-out;
}
