/* ===== RESET CSS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Altura del navbar fijo */
}

/* Prevenir scroll automático del navegador al recargar */
html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== VARIABLES CSS ===== */
:root {
    /* Colores principales */
    --primary-color: #D69DFE;
    --secondary-color: #FFAF58;
    --accent-color: #FFD4A6;
    --accent-secondary: #E0C7F2;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #FAF4EB;
    --bg-light: #FAF4EB;
    --border-color: #E0C7F2;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #D69DFE 0%, #E0C7F2 100%);
    --gradient-secondary: linear-gradient(135deg, #FFAF58 0%, #FFD4A6 100%);
    
    /* Sombras */
    --shadow-light: 0 2px 10px rgba(214, 157, 254, 0.15);
    --shadow-medium: 0 5px 25px rgba(214, 157, 254, 0.25);
    --shadow-heavy: 0 10px 40px rgba(214, 157, 254, 0.35);
    
    /* Espaciado */
    --section-padding: 10px 0;
    --container-padding: 0 20px;
    
    /* Transiciones */
    --transition: all 0.3s ease;
}

/* ===== COMPONENTES GLOBALES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    width: 100%;
    height: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    white-space: nowrap;
}

.btn i {
    margin-right: 8px;
    font-size: 1em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
    font-size: 2.2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffdfd9;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Override del padding global para navbar */
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

/* Asegurar que el hamburger esté oculto en desktop */
@media (min-width: 1025px) {
    .hamburger {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
        position: static !important;
        background: transparent !important;
        padding: 0 !important;
        box-shadow: none !important;
    }
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 0;
    background: #FAF4EB;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
    aspect-ratio: 1;
    object-fit: cover;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 0;
    background: #FFE9E5;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.skills {
    margin-top: 30px;
}

.skills h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-img {
    width: 100%;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    aspect-ratio: 1;
    object-fit: cover;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 0;
    background: #FAF4EB;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(214, 157, 254, 0.25);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(214, 157, 254, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: all 0.2s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(214, 157, 254, 0.35);
    border-color: rgba(214, 157, 254, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

.service-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
    padding: 0;
    background: #FFE9E5;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    aspect-ratio: 1;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    aspect-ratio: 1;
}

.portfolio-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(102, 126, 234, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
    text-align: center;
    padding: 0 20px;
}

.portfolio-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.portfolio-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* ===== SESSION STEPS ===== */
.session-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.session-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(252, 249, 243, 0.95));
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(214, 157, 254, 0.12);
    transition: var(--transition);
    border: 1px solid rgba(214, 157, 254, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.session-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0.8;
}

.session-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(214, 157, 254, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(250, 244, 235, 0.98));
}

.session-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.session-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.session-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.session-cta {
    text-align: center;
    margin-top: 50px;
}

.session-cta .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 0;
    background: #FFE9E5;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== NEW SECTIONS FOR THERAPY WEBSITE ===== */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(214, 157, 254, 0.25);
    border: 1px solid rgba(214, 157, 254, 0.1);
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.more-info-btn-container {
    margin-top: 30px;
    text-align: center;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(214, 157, 254, 0.1), rgba(255, 175, 88, 0.1));
    border: 1.5px solid rgba(214, 157, 254, 0.3);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-sm:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(214, 157, 254, 0.3);
}

.additional-info {
    margin-top: 50px;
    text-align: center;
}

.info-card {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    max-width: 600px;
    margin: 0 auto;
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.info-card h3 i {
    margin-right: 10px;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.specialties {
    padding: 0;
    background: #FAF4EB;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.specialty-category {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.specialty-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.specialty-category h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex-direction: column;
    line-height: 1.3;
}

.specialty-category h3 i {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.specialty-category ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.specialty-category ul li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.specialty-category ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 8px;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
    top: 8px;
}

.specialty-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.specialty-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 0;
    background: #FFE9E5;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

/* Estilos para tarjetas de precio como enlaces */
.pricing-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.pricing-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
}

.pricing-price {
    margin-bottom: 20px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-duration {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.pricing-note p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--primary-color);
    margin-right: 8px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--text-color);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Reset estilos de inputs para checkboxes del formulario */
.form-group input[type="checkbox"] {
    width: auto;
    padding: 0;
    border: none;
    border-radius: 4px;
    appearance: auto;
    -webkit-appearance: auto;
    height: 20px;
    cursor: pointer;
}

/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsapp-intro 3s ease-out;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #128C7E;
    color: white;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
    transform: scale(1.1);
}

@keyframes whatsapp-intro {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    25% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6), 0 0 0 15px rgba(37, 211, 102, 0.1);
    }
    75% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 0;
    background: #FAF4EB;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.review-stars {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.review-stars i {
    color: #ffd700;
    font-size: 1.1rem;
    margin-right: 3px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

.review-author {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
    }
    
    .review-card {
        min-height: 200px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        margin: 0 20px;
    }
    
    .review-card {
        padding: 25px 20px;
        min-height: 180px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #ffdfd9;
    backdrop-filter: blur(10px);
    color: #333;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-light);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(102, 102, 102, 0.3);
    color: var(--text-light);
}

.footer-bottom p {
    margin-bottom: 8px;
}

.developer-credit {
    font-size: 0.9rem;
    opacity: 0.8;
}

.developer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.developer-credit a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ===== COOKIES BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #ffffff;
    color: var(--text-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10000;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(214, 157, 254, 0.25);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 18px;
}

.cookie-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cookie-text i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--gradient-primary);
    color: #fff;
}

.cookie-decline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        border-radius: 10px;
    }
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .cookie-actions {
        justify-content: flex-end;
        gap: 8px;
    }
}

/* ===== INSTAGRAM FOOTER GALLERY ===== */
.instagram-footer-post .instagram-post-icon-sutil {
    display: block !important;
}
/* Icono sutil para publicaciones Instagram en el footer */
.instagram-post-icon-sutil {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.1rem;
    color: rgba(0,0,0,0.7);
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    z-index: 2;
    opacity: 0.7;
    pointer-events: none;
}
.instagram-footer-posts {
    width: 100%;
    background: transparent;
    padding: 0;
    text-align: center;
    margin-bottom: 30px;
}
.instagram-footer-posts h4 {
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}
.instagram-footer-gallery {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: nowrap;
    margin-bottom: 0;
}
.instagram-footer-post {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    overflow: hidden;
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.instagram-footer-post:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.instagram-footer-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
}
@media (max-width: 900px) {
    .instagram-footer-gallery {
        gap: 18px;
    }
    .instagram-footer-post {
        width: 140px;
        height: 140px;
    }
}
@media (max-width: 600px) {
    .instagram-footer-gallery {
        gap: 10px;
    }
    .instagram-footer-post {
        width: 100px;
        height: 100px;
    }
    .instagram-footer-posts h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .container {
        padding: 35px 25px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .specialty-category h3 {
        font-size: 1rem;
    }
    
    .specialty-category ul li {
        font-size: 0.85rem;
    }
    
    .session-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

/* Tablet Portrait */
@media (max-width: 900px) {
    .container {
        padding: 30px 20px;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
    }
    
    .session-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Tablet & Mobile navigation (collapse up to 1024px) */
@media (max-width: 1024px) {
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        z-index: 1001;
        cursor: pointer;
        background: transparent;
        border: none;
        box-shadow: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 64px);
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        transform: translateX(-20px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        display: flex !important;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }

    .nav-item {
        margin: 4px 0;
        width: 100%;
        max-width: 320px;
        flex-shrink: 0;
    }

    .nav-link {
        padding: 14px 25px;
        border-radius: 12px;
        margin: 0 20px;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: rgba(214, 157, 254, 0.05);
        border: 1px solid transparent;
        width: calc(100% - 40px);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        min-height: 48px;
        box-sizing: border-box;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(214, 157, 254, 0.15);
        border-color: rgba(214, 157, 254, 0.3);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(214, 157, 254, 0.2);
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* Mobile Landscape & Portrait */
@media (max-width: 768px) {
    /* Base adjustments for mobile */
    html {
        font-size: 16px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 25px 15px;
        max-width: 100%;
    }
    
    /* Header improvements */
    .header {
        background: #ffdfd9;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 40px;
        width: 40px;
    }
    
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        z-index: 1001;
        cursor: pointer;
        background: transparent;
        border: none;
        box-shadow: none;
    }
    
    .hamburger i {
        font-size: 18px;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .hamburger.active i {
        color: #e74c3c;
        transform: rotate(180deg);
    }
    
    .bar {
        width: 100%;
        height: 2px;
        background: var(--text-color);
        transition: all 0.3s ease;
        border-radius: 1px;
        transform-origin: center;
        display: block;
    }
    
    /* Ensure all nav items are visible */
    .nav-menu {
        display: flex !important;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    
    /* Menu mobile styling */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 64px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: calc(100vh - 64px);
        text-align: center;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 1000;
        justify-content: flex-start;
        align-items: center;
        opacity: 0;
        transform: translateX(-20px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-item {
        margin: 4px 0;
        width: 100%;
        max-width: 320px;
        flex-shrink: 0;
    }
    
    .nav-link {
        padding: 14px 25px;
        border-radius: 12px;
        margin: 0 20px;
        transition: all 0.3s ease;
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: rgba(214, 157, 254, 0.05);
        border: 1px solid transparent;
        width: calc(100% - 40px);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        min-height: 48px;
        box-sizing: border-box;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(214, 157, 254, 0.15);
        border-color: rgba(214, 157, 254, 0.3);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(214, 157, 254, 0.2);
    }
    
    .nav-link i {
        font-size: 1rem;
        opacity: 1;
        flex-shrink: 0;
    }
    
    /* Hamburger animation */
    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Sections height adjustment */
    .hero, .about, .services, .portfolio, .specialties, .pricing, .contact {
        min-height: auto;
        padding: 60px 0;
    }
    
    .reviews {
        min-height: auto;
        padding: 50px 0;
    }
    
    /* Hero section mobile */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 15px;
        display: flex;
        flex-direction: column;
    }
    
    .hero-image {
        order: -1; /* Mover la imagen arriba */
        margin-bottom: 20px;
    }
    
    .hero-content {
        order: 1; /* Contenido después de la imagen */
    }
    
    .hero-title {
        font-size: 2.3rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-img {
        max-width: 280px;
    }
    
    /* About section mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .about-img {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .skill-tags {
        justify-content: center;
    }
    
    .skill-tag {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .cta-section {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    /* Sessions mobile */
    .session-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .session-card {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .session-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .session-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .session-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Specialties mobile */
    .specialties-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .specialty-category {
        min-height: auto;
        padding: 25px 20px;
        text-align: left;
    }
    
    .specialty-category h3 {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
        font-size: 1.2rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .specialty-category h3 i {
        margin-right: 10px;
        margin-bottom: 0;
        font-size: 1.3rem;
        flex-shrink: 0;
    }
    
    .specialty-category ul {
        margin-bottom: 20px;
        padding-left: 0;
    }
    
    .specialty-category ul li {
        font-size: 0.9rem;
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
        line-height: 1.4;
        margin: 0;
    }
    
    .specialty-category ul li:before {
        content: '•';
        position: absolute;
        left: 8px;
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.2rem;
        line-height: 1;
        top: 8px;
    }
    
    .specialty-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
        width: 100%;
        text-align: center;
    }
    
    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }
    
    .pricing-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    /* Contact mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    /* General mobile improvements */
    .section-header {
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 8px;
        line-height: 1.3;
        text-align: center;
    }
    
    .section-title i {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: 10px;
        padding: 0 15px;
    }
    
    .btn {
        padding: 14px 25px;
        font-size: 0.9rem;
        min-width: 160px;
        border-radius: 25px;
    }
    
    .btn i {
        margin-right: 6px;
    }
    
    /* Improved touch targets for mobile */
    .btn,
    .nav-link,
    .social-link,
    .specialty-btn {
        min-height: 44px; /* Recommended touch target size */
    }
    
    /* Better spacing for readability */
    p {
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
    }
    
    /* Footer mobile */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-links a {
        padding: 8px 0;
    }
    
    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
        font-size: 0.9rem;
    }
    
    .footer-bottom p {
        margin-bottom: 8px;
    }
    
    /* WhatsApp button mobile optimization */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    
    .whatsapp-float:hover {
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    }
    
    /* Accessibility improvements for mobile */
    :focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Remove outline for mouse users */
    .js-focus-visible :focus:not(.focus-visible) {
        outline: none;
    }
    
    /* Improve form inputs on mobile */
    .form-group input,
    .form-group textarea {
        -webkit-appearance: none;
        appearance: none;
        border-radius: 8px;
    }
    
    /* Better hover states for touch devices */
    @media (hover: hover) {
        .service-card:hover,
        .pricing-card:hover,
        .specialty-category:hover {
            transform: translateY(-5px);
        }
    }
    
    /* For touch devices, use active state instead */
    @media (hover: none) {
        .service-card:active,
        .pricing-card:active,
        .specialty-category:active {
            transform: translateY(-2px);
        }
        
        .btn:active {
            transform: scale(0.98);
        }
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 20px 12px;
    }
    
    /* Mobile menu adjustments for very small screens */
    .nav-menu {
        top: 56px;
        height: calc(100vh - 56px);
        padding: 12px 0;
    }
    
    .nav-item {
        margin: 2px 0;
        max-width: 260px;
    }
    
    .nav-link {
        padding: 10px 15px;
        margin: 0 10px;
        font-size: 0.9rem;
        gap: 6px;
        width: calc(100% - 20px);
        min-height: 42px;
        border-radius: 8px;
    }
    
    .nav-link i {
        font-size: 0.85rem;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .logo-img {
        height: 32px;
        width: 32px;
    }
    
    .hamburger {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: transparent;
        border: none;
    }
    
    .hamburger i {
        font-size: 15px;
        color: #333;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    /* Hero order for extra small mobile */
    .hero .container {
        display: flex;
        flex-direction: column;
        padding: 30px 10px;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 15px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-img {
        max-width: 180px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        padding: 20px 10px;
    }
    
    .service-card,
    .specialty-category,
    .session-card,
    .pricing-card,
    .review-card {
        padding: 15px 12px;
    }
    
    .hero-img,
    .about-img {
        max-width: 180px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
}

/* ===== MODAL LISTS FIXES ===== */
.modal-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.modal-content ul li {
    padding: 10px 0 10px 25px !important;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-light);
    position: relative;
    line-height: 1.6;
    margin-bottom: 5px;
}

.modal-content ul li:before {
    content: '•' !important;
    position: absolute !important;
    left: 8px !important;
    top: 10px !important;
    color: var(--primary-color) !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.modal-content ul li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.modal-content ul li strong {
    color: var(--text-color) !important;
}

/* Mobile specific adjustments for modal lists */
@media (max-width: 768px) {
    .modal-content ul li {
        padding: 12px 0 12px 30px !important;
        font-size: 0.95rem;
    }
    
    .modal-content ul li:before {
        left: 10px !important;
        top: 12px !important;
    }
}

@media (max-width: 480px) {
    .modal-content ul li {
        padding: 14px 0 14px 32px !important;
        font-size: 0.9rem;
    }
    
    .modal-content ul li:before {
        left: 12px !important;
        top: 14px !important;
    }
}

/* ===== HERO SECTION ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Hero animation classes */
.hero-content {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.2s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.4s forwards;
}

.hero-description {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.6s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out 0.8s forwards;
}

.hero-image {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out 0.3s forwards;
}

.hero-img {
    opacity: 0;
    animation: slideInScale 0.8s ease-out 0.5s forwards;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-buttons,
    .hero-image,
    .hero-img {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ===== RGPD Checkbox & Política de Privacidad ===== */
.privacidad-consent { margin: 12px 0 18px 0; }
.privacidad-label {
    margin: 8px 0 16px 0;
    display: block;
    width: 100%;
}
.privacidad-label input[type="checkbox"]:checked { margin-right: 8px; }
.privacidad-text {
    font-size: 0.97rem;
    line-height: 1.45;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-wrap: wrap;
    white-space: normal;
}
.privacidad-checkbox {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    margin-top: 2px;
}
.privacidad-text a {
    text-decoration: underline;
    color: #4e7bbf;
    transition: color 0.2s;
}
.privacidad-text a:hover {
    color: #2c4a7a;
}

/* Mobile friendly checkbox size */
@media (max-width: 768px) {
    .privacidad-text { gap: 12px; font-size: 0.95rem; align-items: flex-start; }
    .privacidad-checkbox { width: 24px; height: 24px; flex: 0 0 24px; }
    .form-group input[type="checkbox"] { height: 24px; }
}
