* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores principales */
    --background-cream: #faf8f5;
    --primary-terracotta: #d4826f;
    --accent-gold: #c9a96e;
    --sage-green: #8b9d83;
    
    /* Neutrales */
    --text-charcoal: #2c2c2c;
    --text-gray: #6b6b6b;
    --white: #ffffff;
    --light-gray: #e8e5e0;
    
    /* Gradientes */
    --gradient-hero: linear-gradient(135deg, rgba(212, 130, 111, 0.85), rgba(139, 157, 131, 0.85));
    --gradient-card: linear-gradient(180deg, rgba(44, 44, 44, 0.4), rgba(44, 44, 44, 0.75));
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-charcoal);
    line-height: 1.6;
    background-color: var(--white);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-charcoal);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

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

.cta-header {
    padding: 12px 28px;
    background: var(--primary-terracotta);
    color: #ffffff !important;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(212, 130, 111, 0.3);
    position: relative;
    z-index: 10;
}

.cta-header:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 130, 111, 0.5);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-charcoal);
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 60px;
    gap: 15px;
    background: var(--white);
    border-top: 1px solid var(--light-gray);
}

.mobile-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: var(--primary-terracotta);
}

.mobile-menu.active {
    display: flex;
}

/* HERO FULLSCREEN */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('/static/hero-organizadora-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    color: var(--white);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 700px;
}

.hero-description {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 600px;
    opacity: 0.95;
}

.hero-cta {
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--white);
    padding-bottom: 5px;
    transition: all 0.3s;
}

.hero-cta:hover {
    border-bottom: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* SECCIÓN INTRODUCCIÓN */
.intro-section {
    padding: 120px 60px;
    background: var(--white);
    text-align: center;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-charcoal);
}

.section-subtitle {
    font-size: 18px;
    font-weight: 300;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 60px;
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 400;
    color: var(--primary-terracotta);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* SERVICIOS */
.services-section {
    padding: 120px 60px;
    background: var(--background-cream);
    text-align: center;
}

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

.service-card {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: transform 0.5s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-card);
    transition: background 0.3s;
}

.service-card:hover::before {
    background: linear-gradient(180deg, rgba(44, 44, 44, 0.1), rgba(44, 44, 44, 0.5));
}

.service-card:hover {
    transform: scale(1.02);
}

.service-content {
    position: relative;
    z-index: 10;
    color: var(--white);
}

.service-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0.9;
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-price {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

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

.service-features li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.service-features li::before {
    content: '✓ ';
    margin-right: 8px;
}

.service-link {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid var(--white);
    padding-bottom: 3px;
    display: inline-block;
    transition: all 0.3s;
}

.service-link:hover {
    border-bottom: 1px solid var(--accent-gold);
    color: var(--accent-gold);
}

/* PORTFOLIO */
.portfolio-section {
    padding: 120px 60px;
    background: var(--white);
    text-align: center;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.portfolio-item {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(44, 44, 44, 0.9), transparent);
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.portfolio-category {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* PROCESO */
.process-section {
    padding: 120px 60px;
    background: var(--background-cream);
    text-align: center;
}

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

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    color: var(--primary-terracotta);
    margin: 0 auto 25px;
}

.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

.step-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* TESTIMONIOS */
.testimonials-section {
    padding: 120px 60px;
    background: var(--white);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 0;
}

.testimonial-card {
    background: var(--background-cream);
    padding: 40px;
    border-radius: 8px;
    transition: transform 0.3s;
    text-align: left;
}

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

.testimonial-quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-charcoal);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.author-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 3px;
    color: var(--text-charcoal);
}

.author-info p {
    font-size: 12px;
    color: var(--text-gray);
}

/* CONTACTO */
.contact-section {
    padding: 120px 60px;
    background: var(--background-cream);
    text-align: center;
}

.contact-container {
    max-width: 800px;
    margin: 60px auto 0;
}

.contact-form {
    background: var(--white);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
    text-align: left;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-terracotta);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 130, 111, 0.3);
}

/* FOOTER */
footer {
    background: var(--text-charcoal);
    color: var(--white);
    padding: 60px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 2;
    transition: color 0.3s;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--primary-terracotta);
    background: var(--primary-terracotta);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-legal-links {
    margin-top: 10px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    fill: white;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 30px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-content,
    .intro-section,
    .services-section,
    .portfolio-section,
    .process-section,
    .testimonials-section,
    .contact-section {
        padding: 80px 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-legal-links {
        font-size: 11px;
    }
    
    .contact-form {
        padding: 40px 30px;
    }
    
    footer {
        padding: 60px 30px 30px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .mobile-menu {
        padding: 20px 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-container {
        max-width: 100%;
    }
}

/* AVAILABILITY BADGE */
.availability-badge {
    display: inline-block;
    background: rgba(212, 130, 111, 0.15);
    border: 1px solid var(--primary-terracotta);
    color: var(--primary-terracotta);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    margin: 15px 0 20px 0;
    letter-spacing: 0.5px;
}

/* WHY LAURA SECTION */
.why-laura-section {
    padding: 120px 60px;
    background: var(--white);
    text-align: center;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 60px auto 40px;
}

.why-card {
    background: var(--background-cream);
    padding: 40px 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

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

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

.why-description {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
}

.why-footer {
    max-width: 800px;
    margin: 40px auto 0;
    font-size: 16px;
    color: var(--text-charcoal);
    line-height: 1.8;
}

/* FAQ SECTION */
.faq-section {
    padding: 120px 60px;
    background: var(--background-cream);
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: left;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-charcoal);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary-terracotta);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--primary-terracotta);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    margin: 10px 0;
    padding-left: 0;
}

.faq-answer ul li {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-terracotta);
    font-weight: bold;
}

.faq-answer strong {
    color: var(--text-charcoal);
}

/* GLIGHTBOX CUSTOM */
.glightbox-clean .gslide-description {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-charcoal);
}

.glightbox-clean .gslide-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

/* LEGAL PAGES */
.legal-page {
    min-height: 100vh;
    background: var(--white);
    padding: 150px 60px 80px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-charcoal);
}

.legal-page .last-updated {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-charcoal);
}

.legal-page h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-charcoal);
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.legal-page ul, .legal-page ol {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.legal-page strong {
    color: var(--text-charcoal);
}

.legal-page a {
    color: var(--primary-terracotta);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.legal-back-link {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.legal-back-link:hover {
    color: var(--primary-terracotta);
}

@media (max-width: 768px) {
    .legal-page {
        padding: 120px 30px 60px;
    }
    
    .legal-page h1 {
        font-size: 36px;
    }
    
    .legal-page h2 {
        font-size: 28px;
    }
}
