:root {
    --ivory: #F7F3EE;
    --navy: #1F3556;
    --gold: #C9A24D;
    --charcoal: #2E2E2E;
    --ivory-dark: #E8E1D8;
    --black: #000000;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--ivory);
    color: var(--black);
    line-height: 1.8;
    font-size: 17px;
}

/* Header Grande (Home) */
header {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4570 100%);
    color: var(--ivory);
    padding: 3rem 2rem 4rem;
    text-align: center;
    position: relative;
}

/* Header Pequeño (otras páginas) */
.header-small {
    padding: 2rem 2rem;
}

.logo-container, .logo-container-small {
    max-width: 300px;
    margin: 0 auto 1.5rem;
    padding: 1.5rem;
    background: rgba(247, 243, 238, 0.1);
    border-radius: 16px;
}

.logo-container-small {
    max-width: 200px;
    padding: 1rem;
}

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

h1 {
    font-family: 'Spectral', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.tagline {
    font-family: 'Spectral', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    opacity: 0.95;
    max-width: 600px;
    margin: 2rem auto 1.5rem;
    line-height: 1.6;
    text-align: center;
}

.header-info {
    font-size: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 1rem auto;
    line-height: 1.6;
    text-align: center;
}

/* Language Toggle */
.lang-toggle {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
}

.lang-toggle a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.lang-toggle a:hover {
    color: var(--gold);
}

.lang-toggle span {
    color: var(--gold);
    margin: 0 0.3rem;
}

/* CTA Button */
.header-cta {
    margin-top: 2.5rem;
}

.btn-cta-main {
    display: inline-block;
    padding: 1.4rem 3.5rem;
    background-color: var(--gold);
    color: var(--navy);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(201, 162, 77, 0.4);
    border: 2px solid var(--gold);
}

.btn-cta-main:hover {
    background-color: #d4b15e;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(201, 162, 77, 0.5);
}

/* Navigation */
nav {
    background-color: var(--ivory-dark);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
}

nav a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--gold);
}

nav a:hover::after {
    width: 100%;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

/* Section */
section {
    margin-bottom: 6rem;
    scroll-margin-top: 100px;
}

h2 {
    font-family: 'Spectral', serif;
    font-size: 2.2rem;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--gold);
}

h3 {
    font-family: 'Spectral', serif;
    font-size: 1.6rem;
    color: var(--black);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    text-align: justify;
    line-height: 1.8;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.8rem;
}

a {
    color: var(--navy);
    text-decoration: underline;
}

a:hover {
    color: var(--gold);
}

/* Features Sutiles - CON COLOR */
.features-subtle {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(31, 53, 86, 0.03) 0%, rgba(201, 162, 77, 0.05) 100%);
    border-radius: 16px;
}

.feature-subtle {
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-subtle:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon-svg {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    fill: var(--navy);
    opacity: 0.85;
}

.feature-title-subtle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    box-shadow: 0 4px 12px rgba(201, 162, 77, 0.3);
}

.btn-primary:hover {
    background-color: #d4b15e;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(201, 162, 77, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--navy);
    color: var(--ivory);
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-icon {
    width: 48px;
    height: 48px;
    fill: var(--navy);
    margin-bottom: 1.5rem;
}

.service-includes {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(201, 162, 77, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
}

/* Accordion */
.faq-category {
    margin-bottom: 3rem;
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: rgba(31, 53, 86, 0.02);
}

.accordion-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.accordion-icon-svg {
    width: 28px;
    height: 28px;
    fill: var(--navy);
}

.accordion-toggle {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* About */
.about-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.about-content {
    flex: 1;
}

/* Social Links */
.social-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background-color: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    background-color: var(--gold);
    color: white;
}

.social-icon-svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Calendly */
.calendly-section {
    margin-top: 4rem;
}

.calendly-section h3 {
    text-align: center;
    margin-top: 0;
}

.calendly-inline-widget {
    min-width: 320px;
    height: 700px;
    margin-top: 2rem;
}

/* Footer */
footer {
    background-color: var(--navy);
    color: var(--ivory);
    text-align: center;
    padding: 3rem 2rem;
    margin-top: 5rem;
}

footer p {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav ul {
        gap: 1.5rem;
        font-size: 0.9rem;
    }
    
    .features-subtle {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .about-container {
        flex-direction: column;
        text-align: center;
    }
    
    .about-photo {
        width: 150px;
        height: 150px;
    }
}

/* Language toggle */
.lang-en {
    display: none;
}
