/*
Theme Name: Solgas
Theme URI: #
Author: Seo#
Author URI: 
Description: Plantilla#

*/
:root {
    --primary-blue: #002d72;
    --accent-yellow: #ffdf00;
    --whatsapp-green: #25d366;
    --text-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-white);
    overflow-x: hidden;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed; width: 100%;
}

.logo-text {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
}
.btn-fijo {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #007bff; /* Color azul */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.btn-fijo:hover {
    background-color: #0056b3; /* Un tono más oscuro al pasar el mouse */
    transform: translateY(-5px); /* Pequeño salto hacia arriba */
}

/* Ajuste para móviles: un poco más pequeño para no estorbar */
@media (max-width: 768px) {
    .btn-fijo {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}
.nav-links a.active {
    color: var(--accent-yellow);
    font-weight: bold;
}

.btn-pide {
    background-color: var(--whatsapp-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 50px;
    min-height: 80vh;
    background: url(img/slider01.jpg);
    background-attachment: fixed;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    background-color: var(--accent-yellow);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.highlight {
    color: var(--accent-yellow);
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 450px;
    opacity: 0.9;
}

/* --- BOTONES --- */
.cta-group {
    display: flex;
    gap: 20px;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
}

.btn-phone {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
}

/* --- IMAGEN --- */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.image-container {
    width: 80%;
    height: 500px;
    background: #333; /* Respaldo */
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); 
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- FLOATING WHATSAPP --- */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    text-align: center;
}

.tooltip {
    background: red;
    color: white;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.whatsapp-icon {
    background: var(--whatsapp-green);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* --- SECCIÓN PRODUCTOS --- */
.products {
    background-color: #f4f7f6; /* Fondo gris claro para que resalten las cards */
    padding: 80px 4%;
    display: flex;
    justify-content: center;
}

.products-grid {
    display: grid;
        grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 1200px;
}

/* --- CARD BASE --- */
.product-card {
    background: white;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* --- HEADERS DE COLORES --- */
.card-header {
    height: 250px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.yellow { background-color: #ffdf00; }
.blue { background-color: #003da5; }
.dark-blue { background-color: #001a4d; }

.tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #003da5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 900;
}

/* Animación de Imagen */
.img-wrapper {
    width: 234px;
    height: 220px;
    background: white;
    padding: 10px;
    border-radius: 10px; /* Estilo de la imagen en la captura */
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .img-wrapper {
    transform: scale(1.1) rotate(3deg);
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- CUERPO DE LA CARD --- */
.card-body {
    padding: 30px;
    color: #333;
}

.subtitle {
    color: #66b3ff;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-body h3 {
    color: #002d72;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.desc {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.specs {
    list-style: none;
    margin-bottom: 25px;
}

.specs li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: #444;
}

/* --- PRECIO Y BOTONES --- */
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.from { font-size: 0.65rem; color: #999; }
.price { 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: #002d72; 
}

.btn-arrow {
    background: #002d72;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-arrow:hover {
    background: #ffdf00;
    color: #002d72;
}

/* Botón WhatsApp */
.btn-whatsapp-card {
    display: block;
    background-color: #25d366;
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-whatsapp-card:hover {
    filter: brightness(1.1);
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* --- SECCIÓN CTA --- */
.cta-section {
    background: url(img/banner01.jpg);
    background-size: cover;
    background-attachment: fixed;
    /* Fondo amarillo general */
    padding: 80px 8%;
    display: flex;
    justify-content: center;
}

.cta-container {
    width: 100%;
    max-width: 1000px;
}

/* --- TARJETA CENTRAL AZUL --- */
.cta-card {
    background-color: #002d72; /* Azul Solgas */
    border-radius: 40px; /* Bordes muy redondeados */
    padding: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* --- TEXTO Y TÍTULO --- */
.cta-text h2 {
    color: white;
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.highlight-yellow {
    color: #ffdf00; /* Texto amarillo */
}

.cta-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 550px;
    margin-bottom: 50px;
}

/* --- BOTONES DE ACCIÓN --- */
.cta-buttons {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Estilo Base para el Botón de WhatsApp */
.btn-whatsapp-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

/* Estilo Base para el Botón de Teléfono */
.btn-phone-cta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    text-decoration: none;
    border-radius: 50px;
}

.btn-phone-cta .icon-circle {
    background-color: #ffdf00; /* Círculo amarillo */
    color: #002d72; /* Icono azul */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.phone-text .label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;text-align: left;
}

.phone-text .number {
    font-size: 1.4rem;
    font-weight: bold;
}

/* --- ANIMACIONES PERPETUAS --- */

/* 1. Animación de Pulso (WhatsApp): Efecto de onda */
@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.ripple {
    animation: ripple 1.5s infinite;
}

/* 2. Animación de Latido (Teléfono): Efecto de escala */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
}



.heartbeat {
    animation: heartbeat 1.8s infinite ease-in-out;
}
/* --- SECCIÓN FAQ --- */
.faq-section {
    background-color: #fcfcfc; /* Fondo casi blanco */
    padding: 100px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden; /* Importante para la imagen animada */
}

.faq-container {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
}

/* --- TEXTO FAQ --- */
.sub-title {
    color: #66b3ff;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.faq-text h2 {
    color: #002d72;
    font-size: 3.2rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 40px;
}

.highlight-yellow {
    color: #ffdf00; /* Texto amarillo */
}

/* --- ACORDEÓN --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid rgba(0,0,0,0.05); /* Línea divisoria suave */
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: #002d72;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: #66b3ff; /* Color al pasar el mouse */
}

.accordion-header i {
    font-size: 1.4rem;
    color: #002d72;
    transition: transform 0.3s ease;
}

.accordion-header:hover i {
    transform: translateX(5px); /* Pequeña animación del icono */
}

/* --- IMAGEN CON MOVIMIENTO SUTIL --- */
.image-wrapper-faq {
    flex: 1;
    max-width: 550px;
    position: relative;
    margin-left: 50px;
}

/* Contenedor principal de la imagen (la máscara) */
.animated-image-container {
    width: 100%;
    height: 600px;
    background-color: #333; /* Respaldo */
    border-radius: 35px; /* Bordes redondeados de la card */
    overflow: hidden; /* Mantiene la imagen dentro de la máscara */
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* La imagen en sí, que se mueve */
.animated-image-container img {
    width: 120%; /* Un 20% más ancha para tener espacio de movimiento */
    height: 100%;
    object-fit: cover;
    object-position: right;
    
    /* Animación de movimiento perpetuo sutil */
    animation: slowPan 19s infinite ease-in-out;
}

/* Keyframes para el movimiento sutil (panorámica lenta) */
@keyframes slowPan {
    0%, 100% {
        transform: translateX(0%); /* Posición inicial */
    }
    50% {
        transform: translateX(-15%); /* Mueve suavemente hacia la izquierda */
    }
}

/* --- SELLO DE GARANTÍA (Flotante) --- */
.warranty-seal {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.seal-icon {
    background-color: #ffdf00; /* Fondo amarillo del icono */
    color: #002d72; /* Icono azul */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.seal-text {
    display: flex;
    flex-direction: column;
}

.seal-text .label {
    font-size: 0.65rem;
    color: #999;
    font-weight: bold;
}

.seal-text .title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #002d72;
}
/* --- ESTILOS DEL ACORDEÓN --- */
.accordion-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 10px;
    border: 1px solid rgba(0, 45, 114, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    background: white;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border: none;
    outline: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: #002d72;
    transition: background 0.3s ease;
}

.accordion-header i {
    font-size: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- CONTENIDO OCULTO --- */
.accordion-content {
    max-height: 0; /* Oculto por defecto */
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); /* Efecto slide suave */
    background: #fff;
    padding: 0 25px;
    opacity: 0;
}

.accordion-content p {
    padding-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* --- ESTADO ACTIVO (Vía JS) --- */
.accordion-item.active {
    box-shadow: 0 10px 25px rgba(0, 45, 114, 0.08);
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Altura suficiente para el texto */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
    color: #ffdf00;
}

/* --- ANIMACIÓN DE LA IMAGEN (Panorámica sutil) --- */
.animated-image-container {
    width: 100%;
    height: 550px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.animated-image-container img {
    width: 130%; /* Más ancho para que el movimiento no deje bordes vacíos */
    height: 100%;
    object-fit: cover;
    animation: panImage 20s infinite alternate ease-in-out;
}

@keyframes panImage {
    from { transform: translateX(0); }
    to { transform: translateX(-15%); }
}

/* --- FOOTER --- */
.footer {
    background-color: #001a4d; /* Azul muy oscuro para contraste */
    color: white;
    padding: 80px 8% 40px 8%;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Columna de Información */
.footer-col h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-col.info p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 20px 0;
    max-width: 300px;
}

/* Iconos de Redes Sociales */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffdf00;
    color: #002d72;
    transform: translateY(-5px);
}

/* Listas de Enlaces y Contacto */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-col.links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col.links a:hover {
    color: #ffdf00;
    padding-left: 5px;
}

.footer-col.contact i {
    color: #ffdf00; /* Iconos amarillos como en el diseño */
    font-size: 1.2rem;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- SECCIÓN SOBRE NOSOTROS --- */
.about-section {
    background-color: #ffffff;
    padding: 100px 8%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- BLOQUE DE TEXTO --- */
.about-content {
    flex: 1;
}

.about-content .sub-title {
    color: #002d72;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    color: #002d72;
    font-size: 2.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
}

.about-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 35px;
    font-size: 1rem;
}

/* --- TARJETAS DE INFORMACIÓN --- */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.info-card {
    background: #f8faff;
    padding: 25px;
    border-radius: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(10px);
}

.icon-box {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.blue-bg { background: #002d72; color: white; }
.yellow-bg { background: #ffdf00; color: #002d72; }

.info-text h4 {
    color: #002d72;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-text p {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5; margin-bottom: 0px;
}

/* Botón WhatsApp */
.btn-whatsapp-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-whatsapp-about:hover {
    filter: brightness(1.1);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* --- BLOQUE DE IMAGEN --- */
.about-image-wrapper {
    flex: 1;
}

.main-image {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tarjeta Flotante (Glassmorphism) */
.floating-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
}

.stats-icon {
    background: #ffdf00;
    color: #002d72;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.stats-text {
    display: flex;
    flex-direction: column;
}

.stats-text strong { font-size: 1.2rem; }
.stats-text span { font-size: 0.8rem; opacity: 0.9; }

/* --- RESPONSIVO --- */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .info-card {
        text-align: left;
    }

    .about-content h2 {
        font-size: 2.5rem;
    }

    .main-image {
        height: 400px;
    }
}

/* --- RESPONSIVO --- */
@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col.info p {
        margin: 20px auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-col.contact ul li {
        justify-content: center;
    }
}
/* ================================================================
   ESTILOS RESPONSIVOS (Añadir al final de tu CSS)
   ================================================================ */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero-image .image-container { height: 400px; }
    .cta-card { padding: 40px; }
    .cta-text h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    /* --- NAVBAR --- */
    .navbar {
        padding: 15px 5%;
        background: var(--primary-blue); /* Fondo sólido en móvil para legibilidad */
    }

    .nav-links {
        display: none; /* Ocultar links en móvil (requiere menú hamburguesa JS) */
    }

    .btn-pide {
        padding: 8px 15px;
        font-size: 0.8rem;
    }

    /* --- HERO --- */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 5% 40px;
        background-attachment: scroll; /* Mejor rendimiento en móviles */
    }

    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .cta-group {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        width: 100%;
        justify-content: center;
    }

    .image-container {
        width: 100%;
        height: 300px;
    }

    /* --- PRODUCTOS --- */
    .products {
        padding: 60px 5%;
    }

    .products-grid {
        grid-template-columns: 1fr; /* Una sola columna en móvil */
    }

    /* --- CTA SECTION --- */
    .cta-section {
        padding: 40px 5%;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .btn-whatsapp-cta {
        width: 100%;
        justify-content: center;
    }

    /* --- FAQ SECTION --- */
    .faq-section {
        flex-direction: column;
        padding: 60px 5%;
    }

    .faq-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .image-wrapper-faq {
        display: none; /* Ocultamos la imagen grande en móvil para ahorrar espacio */
    }

    .faq-container {
        max-width: 100%;
    }

    /* --- FOOTER (Ya tenías una parte, aquí la reforzamos) --- */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-col.info p {
        margin: 15px auto;
    }

    .social-links, .footer-col.contact ul li {
        justify-content: center;
    }

    /* Ajuste de elementos flotantes */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .btn-whatsapp, .btn-phone {
        width: 100%;
        justify-content: center;
    }

    .cta-card {
        border-radius: 20px;
        padding: 30px 20px;
    }

    .price {
        font-size: 1.5rem;
    }
}