:root {
    --primary: #231f1c;       /* Dark warm brown */
    --primary-light: #3a342f;
    --accent: #c7a46a;        /* Brand gold */
    --accent-hover: #d8cbb8;
    --bg-main: #f6f1ea;       /* Cream */
    --bg-card: #ffffff;
    --text-main: #5a4f47;
    --text-heading: #231f1c;
    --border: #d8cbb8;
    --taupe: #8b7d6b;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 600;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* -------------------
   NAVBAR & GLASSMORPHISM
   ------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-size: 2rem;
    line-height: 1;
    color: var(--bg-main);
}

.navbar.scrolled .logo h1 {
    color: var(--primary);
}

.logo h1 span {
    color: var(--accent);
}

.logo span {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg-main);
}

.navbar.scrolled .logo span {
    color: var(--text-main);
}

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

.nav-links a {
    font-weight: 500;
    color: white; /* On hero */
    transition: var(--transition);
}

.navbar.scrolled .nav-links a {
    color: var(--text-heading);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}
.navbar.scrolled .mobile-menu-btn {
    color: var(--primary);
}

/* Buttons */
.btn-primary {
    background-color: var(--accent);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

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

.btn-outline {
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 4px;
}
.navbar.scrolled .btn-outline {
    border-color: var(--primary);
}

/* -------------------
   HERO SECCIÓN
   ------------------- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('assets/vanessa-5.jpeg') top center / cover no-repeat;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: white;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

/* -------------------
   SOBRE MÍ
   ------------------- */
.about {
    padding: 100px 0;
    background-color: var(--bg-card);
}

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

.about-image-wrapper {
    position: relative;
    border-radius: 8px;
}

.about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 4/5;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
}

.experience-badge .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cred-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

/* -------------------
   SERVICIOS
   ------------------- */
.services {
    padding: 100px 0;
    background-color: var(--bg-main);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 60px; height: 60px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-wrapper svg {
    width: 28px; height: 28px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-main);
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

.service-card:hover .read-more {
    color: var(--accent);
}

/* -------------------
   SERVICES LIST & PRICING
   ------------------- */
.services-list-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 900px) {
    .services-list-grid { grid-template-columns: 1fr; }
}

.service-list-card {
    background: var(--bg-card);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-top: 4px solid var(--accent);
    transition: var(--transition);
}

.service-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.service-list-card h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.custom-list {
    list-style: none;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-main);
    line-height: 1.5;
}

.custom-list li::before {
    content: '✓';
    position: absolute;
    left: 0; top: 0;
    color: var(--accent);
    font-weight: 800;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: var(--bg-main);
    border: 1px solid var(--border);
    padding: 40px 30px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: var(--accent);
}

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

.pricing-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 15px;
}

.pricing-card .price span {
    display: block;
    font-size: 0.85rem;
    color: #64748B;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.pricing-card p {
    color: var(--text-main);
    flex-grow: 1;
}

.pricing-card-featured {
    background: var(--primary);
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    padding: 50px;
    margin-top: 20px;
    border-radius: 8px;
}
.pricing-card-featured h3 { color: var(--accent); font-size: 1.8rem;}
.pricing-card-featured p { color: #CBD5E1; }
.pricing-card-featured .custom-list li { color: white; }

.list-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 20px;
}

@media (max-width: 900px) {
    .pricing-card-featured { flex-direction: column; align-items: flex-start; gap: 20px;}
    .list-horizontal { grid-template-columns: 1fr; gap: 10px;}
}


/* -------------------
   PARALLAX / PHILOSOPHY
   ------------------- */
.philosophy {
    position: relative;
    padding: 120px 0;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg-3 {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('assets/vanessa-8.jpeg') center/cover no-repeat fixed;
    z-index: 1;
}

.parallax-bg-3::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.85); /* Oscurece la foto para legibilidad */
}

.philosophy-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.philosophy-content .quote-icon {
    margin-bottom: 30px;
    opacity: 0.8;
}

.philosophy-content blockquote {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-style: italic;
    line-height: 1.4;
    margin-bottom: 20px;
}

.philosophy-content cite {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* -------------------
   CONTACTO
   ------------------- */
.contact {
    padding: 100px 0;
    background-color: var(--primary);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

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

.contact-info h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
}

.contact-info p {
    color: #94A3B8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-image-wrapper {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-photo:hover {
    transform: scale(1.05);
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 24px;
    background: rgba(255,255,255,0.05);
    width: 50px; height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.info-item strong {
    display: block;
    color: var(--accent);
    margin-bottom: 5px;
}

/* Formularios Flotantes */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    color: var(--text-main);
}

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 15px 15px 0;
    border: none;
    border-bottom: 1px solid #CBD5E1;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-heading);
    transition: var(--transition);
}

.form-group select {
    color: #64748B;
}

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

.form-group label {
    position: absolute;
    top: 15px; left: 0;
    color: #64748B;
    pointer-events: none;
    transition: var(--transition);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--primary);
    font-weight: 600;
}

.form-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 0.85rem;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.w-100 { width: 100%; border: none; cursor: pointer; text-transform: uppercase; letter-spacing: 1px;}

/* -------------------
   FOOTER
   ------------------- */
footer {
    background-color: var(--primary-light);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo h2 {
    color: white;
    font-size: 2rem;
}
.footer-logo h2 span { color: var(--accent); }
.footer-logo p { margin-top: 15px; color: #94A3B8; max-width: 300px; }

.footer-links h3, .footer-social h3 {
    color: white; margin-bottom: 20px; font-size: 1.2rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #94A3B8; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

.social-icons { display: flex; gap: 15px; }
.social-icons a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); color: white;
}
.social-icons a:hover { background: var(--accent); color: var(--primary); }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #64748B;
    font-size: 0.9rem;
}

/* -------------------
   WHATSAPP PILL
   ------------------- */
.whatsapp-pill {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366; 
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-pill:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-pill .text {
    max-width: 250px;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease;
}

.whatsapp-pill.scrolled-down .text {
    max-width: 0;
    opacity: 0;
}

/* -------------------
   ANIMATIONS 
   ------------------- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }

/* -------------------
   RESPONDIVE DESIGN
   ------------------- */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--primary);
    z-index: 999;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    gap: 30px;
    transform: translateY(-100%);
    transition: var(--transition);
}
.mobile-menu.active { transform: translateY(0); }
.mobile-link { font-size: 1.5rem; color: white; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    
    .hero-content h1 { font-size: 3.2rem; }
    
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image { aspect-ratio: 16/9; }
    .experience-badge { bottom: -20px; right: 20px; padding: 20px;}
    
    .footer-content { grid-template-columns: 1fr; text-align: center;}
    .social-icons { justify-content: center;}
    
    .whatsapp-pill { bottom: 20px; right: 20px; padding: 12px; }
    .whatsapp-pill .text { display: none; }
}

/* Modal de Clientes */
.client-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.client-modal.show {
    opacity: 1;
}

.client-modal-content {
    background-color: var(--bg-main);
    padding: 50px 40px 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.client-modal.show .client-modal-content {
    transform: translateY(0);
}

.client-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #64748B;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

.client-modal-close:hover {
    color: var(--accent);
}

.client-modal-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    margin-bottom: 25px;
}

.client-modal-name {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 600;
}
