/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary: #7C896B;
    --color-secondary: #D6C4A7;
    --color-background: #FDF7F2;
    --color-text: #4A4A4A;
    --color-text-muted: #757575;
    --color-text-light: #FFFFFF;
    --color-cta: #9AA689;
    --color-cta-hover: #7C896B;
    --border-radius-btn: 12px;
    --border-radius-card: 20px;
    --border-radius-input: 8px;
    --shadow: 0 4px 20px rgba(124, 137, 107, 0.08);
    --font-heading: 'EB Garamond', serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    line-height: 1.3;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

/* Header */
.header {
    background: var(--color-background);
    padding: var(--header-padding, 0.5rem) 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

.logo img {
    height: var(--logo-height, 120px);
    width: auto;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-btn);
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--color-cta);
    color: var(--color-text-light);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-cta) 100%);
    color: var(--color-text-light);
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    color: var(--color-text-light);
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background: rgba(124, 137, 107, 0.05);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--color-cta);
    color: var(--color-text-light);
    padding: 1rem 2rem;
    border-radius: var(--border-radius-btn);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--color-cta-hover);
    color: var(--color-text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-whatsapp {
    background: #25D366;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Cards */
.intro-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-card .highlight {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--color-primary);
    margin: 2rem 0;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
    text-align: center;
}

.feature-icon {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

/* Services */
.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
}

.service-card ul {
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-cta);
    border-radius: 50%;
}

.services-note {
    text-align: center;
    padding: 2rem;
    background: rgba(124, 137, 107, 0.1);
    border-radius: var(--border-radius-card);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--color-primary);
}

.pricing-subtitle {
    color: var(--color-text-muted);
    font-style: italic;
    margin-bottom: 1rem;
}

.pricing-highlight {
    background: rgba(124, 137, 107, 0.1);
    padding: 1rem;
    border-radius: var(--border-radius-input);
    margin: 1.5rem 0;
    text-align: center;
    color: var(--color-primary);
}

.pricing-prices {
    margin-top: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(124, 137, 107, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

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

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
}

.info-card ul {
    margin-top: 1rem;
}

.info-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.info-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-cta);
    font-weight: bold;
}

.cta-section {
    text-align: center;
    padding: 2rem;
    background: rgba(124, 137, 107, 0.1);
    border-radius: var(--border-radius-card);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
}

.contact-phone {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.contact-phone a {
    font-weight: 700;
}

.contact-email {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.contact-map h2 {
    margin-bottom: 1.5rem;
}

.map-container {
    border-radius: var(--border-radius-card);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--color-primary);
    color: var(--color-text-light);
    padding: 3rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer a {
    color: var(--color-text-light);
}

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

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-bottom p {
    margin: 0;
}

/* Footer Location Links */
.footer-locations {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.footer-locations h3 {
    color: var(--color-text-light);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-locations ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    line-height: 1.3;
}

.footer-locations li {
    display: inline;
}

.footer-locations a {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-locations a:hover {
    opacity: 1;
}

/* Landing Pages */
.landing-content {
    max-width: 900px;
    margin: 0 auto;
}

.landing-intro {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.landing-features,
.landing-pricing,
.landing-cta {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.landing-features ul {
    margin-top: 1rem;
}

.landing-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.landing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--color-cta);
    border-radius: 50%;
}

.pricing-simple {
    margin-top: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(124, 137, 107, 0.15);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .price {
    font-weight: 700;
    color: var(--color-primary);
}

.landing-cta {
    text-align: center;
    background: rgba(124, 137, 107, 0.1);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-background);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(124, 137, 107, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
        border-radius: 0;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 20px;
    }

    .section {
        padding: 60px 20px;
    }

    .intro-card {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}
