/*
Theme Name: Carito Theme
Description: Tema personalizado para Carolina Yepez - Wedding Content Creator.
Author: Paul
Version: 1.0
*/

/* --- VARIABLES GLOBALES --- */
:root {
    --bg-cream: #F8F6F0; 
    --text-dark: #2C2A29;
    --gold-primary: #C5A059;
    --gold-gradient: linear-gradient(135deg, #d3ad64, #b2883e);
    --white: #FFFFFF;
    --font-main: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Desplazamiento suave y compensación por el menú flotante */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; 
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
}

h1, h2, h3, h4, .serif {
    font-family: var(--font-serif);
    font-weight: 600;
}

.container {
    width: 90%;
    max-width: 1150px; 
    margin: 0 auto;
}

/* --- HEADER --- */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--bg-cream);
    transition: all 0.3s ease;
}

.site-header.is-scrolled {
    background-color: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.main-header {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 30px 0 10px 0; 
    transition: padding 0.3s ease;
}

.site-header.is-scrolled .main-header {
    padding: 10px 0; /* Reduce el espacio vertical al bajar */
}

.logo-box img {
    width: 180px; 
    height: auto;
    display: block;
    transition: width 0.3s ease;
}

.site-header.is-scrolled .logo-box img {
    width: 110px; /* Reduce el tamaño del logo sutilmente */
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px; 
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover { color: var(--gold-primary); }

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-dark);
}

.menu-toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--text-dark);
    display: none; /* Oculto por defecto en escritorio */
    align-items: center;
    z-index: 1001;
}

/* --- MENÚ MÓVIL (OVERLAY) --- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(44, 42, 41, 0.98); /* Usamos el --text-dark con transparencia */
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
}

.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-serif);
    margin: 15px 0;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* --- HERO SECTION --- */
.hero-section {
    display: flex;
    align-items: center;
    gap: 60px; 
    padding: 10px 0 80px 0; 
}

.hero-image {
    flex: 0 0 45%; 
    display: flex;
    justify-content: flex-start; 
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 250px 250px 0 0; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.hero-content {
    flex: 1;
    max-width: 600px; 
}

.main-title {
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 400; 
}

.brand-name {
    font-size: 3.2rem;
    letter-spacing: -1px;
    display: block;
}

.brand-subtitle {
    font-size: 1.8rem;
    letter-spacing: 0px;
    display: block;
    margin-top: 5px;
    color: #333;
}

.hook-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 35px;
    max-width: 500px;
}

.hook-text strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* --- GRILLA DE BENEFICIOS --- */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start; 
    gap: 12px;
}

.feature-full-width {
    grid-column: 1 / -1; 
}

.feature-item .icon {
    font-size: 1.4rem; 
    color: var(--gold-primary);
    margin-top: 2px;
}

.feature-item span {
    font-size: 0.75rem; 
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.4;
    color: var(--text-dark);
}

/* --- TRUSTED BY --- */
.trusted-by {
    margin-top: 20px;
}

.trusted-by h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: left; 
}

.trusted-logos {
    display: flex;
    gap: 40px;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    color: #444;
    align-items: flex-end; 
}

.trusted-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px; 
}

.trusted-item i {
    color: var(--gold-primary);
    font-size: 1.4rem;
}

/* --- PORTAFOLIO DE TRABAJO (SLIDER) --- */
.work-section {
    background: linear-gradient(rgba(248, 246, 240, 0.93), rgba(248, 246, 240, 0.93)), url('/wp-content/uploads/2026/03/flores-scaled.jpg') center/cover;
    padding: 80px 0 100px 0;
    text-align: center;
    overflow: hidden; 
}

.section-title {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 2.5rem;
    letter-spacing: 2px;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.work-section .container {
    position: relative; 
    padding-left: 20px; 
    padding-right: 20px;
}

.portfolio-slider {
    padding-bottom: 50px; 
}

.phone-mockup {
    width: 280px;
    height: 560px;
    margin: 0 auto;
    border-radius: 40px;
    border: 12px solid #111;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.phone-mockup video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 28px; 
    display: block;
    background-color: #000; 
}

/* FLECHAS DEL SLIDER */
.work-section .swiper-button-next,
.work-section .swiper-button-prev {
    display: none;
}

@media (min-width: 768px) {
    .work-section .swiper-button-next,
    .work-section .swiper-button-prev {
        display: flex; 
        align-items: center;
        justify-content: center;
        background-color: var(--white); 
        color: var(--gold-primary); 
        width: 55px; 
        height: 55px;
        border-radius: 50%; 
        box-shadow: 0 6px 15px rgba(0,0,0,0.08); 
        transition: all 0.3s ease; 
        top: 50%; 
        transform: translateY(-50%); 
        border: 1px solid rgba(197, 160, 89, 0.15); 
        z-index: 10; 
    }

    .work-section .swiper-button-next:hover,
    .work-section .swiper-button-prev:hover {
        background-color: var(--gold-primary); 
        color: var(--white); 
        box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3); 
        transform: translateY(-50%) scale(1.05); 
    }

    .work-section .swiper-button-prev { left: -40px; }
    .work-section .swiper-button-next { right: -40px; }
}

.work-section .swiper-button-next::after,
.work-section .swiper-button-prev::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900; 
    font-size: 18px; 
    color: inherit; 
}

.work-section .swiper-button-prev::after { content: "\f053"; }
.work-section .swiper-button-next::after { content: "\f054"; }
.swiper-pagination-bullet-active { background: var(--gold-primary); }


/* --- PAQUETES DE SERVICIO --- */
.pricing-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-cream);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-top: 50px;
}

/* Estructura de la tarjeta */
.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--gold-primary);
    border-bottom: none; /* Quitamos el borde plano de abajo para hacer la punta */
    position: relative;
    margin-bottom: 40px; /* Espacio para la punta del banner */
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    cursor: pointer; /* Cambia el cursor a una 'manito' indicando que es clickeable */
    text-decoration: none; /* Evita que el texto se subraye al ser un enlace */
    color: inherit; /* Mantiene los colores de texto intactos */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15); /* Añade un leve resplandor dorado al pasar el mouse */
}

.pricing-card:active {
    transform: translateY(-5px); /* Crea un efecto físico de "presionado" al hacer click */
}

/* La Punta del Banner (Vector SVG Dinámico) */
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: -39px; /* Se traslapa 1px para evitar líneas blancas */
    left: -1px;
    width: calc(100% + 2px); 
    height: 40px;
    /* Dibuja un polígono blanco relleno y una línea dorada solo en el borde en V */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 50,40 100,0' fill='%23FFFFFF' stroke='none'/%3E%3Cpolyline points='0,0 50,40 100,0' fill='none' stroke='%23C5A059' stroke-width='1' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 1;
}

/* Iconos Superiores */
.card-icons {
    padding: 25px 0 15px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--gold-primary);
    font-size: 1.8rem;
}

/* Estilos para los íconos de FontAwesome en las tarjetas */
.card-icons i {
    transition: transform 0.3s ease, color 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(197, 160, 89, 0.3)); /* Sombra sutil dorada */
}

.card-icons i:hover {
    transform: scale(1.15) translateY(-3px);
    color: #987125; /* Tono más oscuro al pasar el cursor */
}

/* Franja Dorada */
.card-gold-strip {
    background: linear-gradient(135deg, #EFE3B8 0%, #C5A059 30%, #987125 70%, #DBC179 100%);
    padding: 20px 10px;
    color: #1a1a1a;
    margin: 0 10px; /* Separado de los bordes laterales */
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-gold-strip h3 {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

.card-gold-strip .price {
    font-size: 2.2rem;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* Detalles de la lista */
.card-details {
    padding: 20px 25px 40px 25px;
    text-align: left;
    flex-grow: 1;
}

.card-details h4 {
    font-size: 0.8rem;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.card-details ul {
    list-style: none;
}

.card-details li {
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
}

.card-details li::before {
    content: "\f00c"; /* Icono de check (visto bueno) de FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Debe ser 900 para que el icono solid sea visible en versión gratuita */
    color: var(--gold-primary); /* Check en color dorado */
    font-size: 0.9rem;
    margin-top: 2px;
}

/* Logo en la punta del banner */
.card-logo {
    position: absolute;
    bottom: -20px; /* Montado sobre la punta SVG */
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: auto;
    z-index: 2;
}


/* --- SECCIÓN DE CONTACTO --- */
.contact-section {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
    align-items: stretch;
}

/* Tarjeta de Información de Contacto */
.contact-info-card {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card .watermark-logo {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    opacity: 0.08;
    pointer-events: none;
}

.contact-info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    line-height: 1.3;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.contact-list li i {
    color: var(--gold-primary);
    font-size: 1.3rem;
    width: 25px;
    text-align: center;
}

.contact-list li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-list li a:hover {
    color: var(--gold-primary);
}

/* Tarjeta del Formulario */
.contact-form-card {
    background-color: var(--bg-cream);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.contact-form-card h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Estilos del Formulario */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
    background-color: var(--white);
}

/* --- Mensajes de validación del formulario --- */
.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
    font-size: 0.95rem;
}
.form-message.success { background-color: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
.form-message.error { background-color: #ffebee; color: #c62828; border: 1px solid #ef9a9a; }

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Fila del Formulario (2 columnas) */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Botón de Envío */
.submit-btn {
    background: linear-gradient(135deg, #d3ad64, #b2883e);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn span {
    line-height: 1.4;
}

.submit-btn img {
    width: 24px;
    height: auto;
    opacity: 0.9;
}


/* --- SECCIÓN DE BENEFICIOS --- */
.benefits-section {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background-color: var(--white);
    border: 2px solid rgba(197, 160, 89, 0.3);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

/* Línea decorativa dorada en la parte superior */
.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), #d3ad64);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.15);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-gradient);
    border-radius: 50%;
    margin-bottom: 10px;
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.25);
    transition: all 0.3s ease;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.35);
}

.benefit-card h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 5px 0;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
    font-weight: 400;
}


/* --- SERVICIOS ADICIONALES --- */
.additional-services-section {
    padding: 40px 0 80px 0;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    margin-top: 40px;
}

/* Tarjetas horizontales */
.additional-card {
    background-color: var(--white);
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 10px;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

/* Línea dorada decorativa en hover */
.additional-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.15);
}

.additional-card:hover::before {
    transform: scaleY(1);
}

.additional-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.additional-info i {
    color: var(--gold-primary);
    font-size: 1.6rem;
    width: 30px;
    text-align: center;
}

.additional-info h3 {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.additional-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-primary);
    white-space: nowrap;
}

/* --- PREGUNTAS FRECUENTES (FAQ) --- */
.faq-section {
    background-color: var(--white); /* Fondo blanco del contenedor general */
    padding: 80px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.faq-item {
    background-color: var(--bg-cream); /* Crema suave para destacar en el fondo blanco */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
    border-left: 4px solid var(--gold-primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.1);
}

.faq-item h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.4;
}

.faq-item h4 i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-top: 2px;
}

.faq-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    padding-left: 31px; /* Alinea el párrafo con el texto, saltando el icono */
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--text-dark);
    color: var(--bg-cream);
    padding: 80px 0 0 0;
    font-family: var(--font-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
}

.brand-col p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b3b3b3;
    max-width: 350px;
}

.footer-col h4 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.links-col ul { list-style: none; }
.links-col li { margin-bottom: 15px; }

.links-col a {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.links-col a:hover { color: var(--gold-primary); padding-left: 5px; }

.social-links { display: flex; gap: 15px; }

.social-links a {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold-gradient);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(197, 160, 89, 0.3);
}

.footer-bottom { background-color: #1a1918; padding: 25px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { font-size: 0.85rem; color: #888; margin: 0; }

/* --- BOTÓN FLOTANTE CTA Y POPUP --- */
.floating-cta-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: heartbeat 2s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.floating-cta-btn i { font-size: 1.2rem; }

.floating-cta-btn:hover {
    transform: scale(1.05);
    animation: none;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
    30% { transform: scale(1.1); }
    40% { transform: scale(1); }
    100% { transform: scale(1); }
}

.popup-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(44, 42, 41, 0.8);
    backdrop-filter: blur(5px);
    display: flex; align-items: center; justify-content: center;
    z-index: 2000;
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
}

.popup-modal.is-open { opacity: 1; visibility: visible; }

.popup-content {
    background-color: var(--bg-cream);
    padding: 40px; border-radius: 12px; width: 90%; max-width: 500px;
    position: relative;
    transform: translateY(50px);
    transition: transform 0.4s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.popup-modal.is-open .popup-content { transform: translateY(0); }

.popup-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--text-dark); cursor: pointer; transition: color 0.3s ease; }
.popup-close:hover { color: var(--gold-primary); }
.popup-form-card { box-shadow: none; padding: 0; border: none; }

/* --- BOTÓN FLOTANTE WHATSAPP --- */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: var(--white);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .hero-image { justify-content: center; }
    .hero-content { max-width: 100%; }
    .hook-text { margin: 0 auto 35px auto; }
    .features-grid { text-align: left; }
    .trusted-by h4 { text-align: center; }
    .trusted-logos {
        justify-content: center;
        flex-wrap: wrap;
        align-items: center;
    }
    .brand-name { font-size: 2.5rem; }
    .brand-subtitle { font-size: 1.4rem; }
    .logo-box img { width: 120px; }
    .site-header.is-scrolled .logo-box img { width: 85px; }
    
    /* Paquetes se apilan en tablet/móvil */
    .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 50px auto 0 auto; }
    
    /* Contacto en tablet */
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    
    /* Beneficios en tablet */
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 25px; }
    
    /* FAQ y Servicios Adicionales en tablet */
    .additional-grid { grid-template-columns: 1fr; gap: 20px; }
    .faq-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
    /* Mostramos el menú hamburguesa y ocultamos el de escritorio */
    .nav-link { display: none; }
    .menu-toggle { display: flex; }

    .features-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .phone-mockup { width: 260px; height: 520px; }
    
    /* Contacto en móvil */
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
    .contact-info-card h3,
    .contact-form-card h3 {
        font-size: 1.3rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Beneficios en móvil */
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card {
        padding: 30px 20px;
    }
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    .benefit-icon i {
        font-size: 1.5rem;
    }

        /* Servicios adicionales en móvil (Apilados) */
        .additional-card { padding: 25px 20px; flex-direction: column; text-align: center; gap: 12px; }
        .additional-info { flex-direction: column; gap: 10px; }
        .additional-info i { font-size: 1.8rem; }
        .additional-price { font-size: 1.4rem; }

        /* FAQ en móvil */
        .faq-grid { grid-template-columns: 1fr; gap: 20px; }
        .faq-item { margin-bottom: 20px; }

        /* Footer en móvil */
        .footer-grid { grid-template-columns: 1fr; text-align: center; }
        .social-links { justify-content: center; }

        /* Popup y CTA en móvil */
        .floating-cta-btn { bottom: 20px; left: 20px; padding: 12px 20px; font-size: 0.9rem; }
        .popup-content { padding: 30px 20px; }
        .floating-whatsapp-btn { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.8rem; }
}