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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #d4a574;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f6f3;
    --color-bg-dark: #1a1a1a;
    --color-border: #e0ddd8;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-secondary);
}

.nav-ad-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background-color: var(--color-bg-alt);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: white;
    padding: 1.5rem;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie,
.btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie {
    background-color: var(--color-accent);
    color: var(--color-primary);
}

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

.btn-cookie-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-minimal {
    display: flex;
    min-height: 70vh;
    align-items: center;
    gap: 3rem;
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-card {
    flex: 1;
    max-width: 600px;
}

.hero-content-card h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.hero-content-card p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.hero-image-container {
    flex: 1;
    position: relative;
    background-color: var(--color-bg-alt);
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.section-story {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-story h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-story p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-cards {
    padding: 6rem 2rem;
}

.section-header-offset {
    margin-bottom: 4rem;
    margin-left: 2rem;
}

.section-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-header-offset p {
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.card-product {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    position: relative;
    background-color: var(--color-bg-alt);
    overflow: hidden;
    height: 250px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 1.5rem;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.card-body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.btn-card {
    width: 100%;
    padding: 0.875rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.section-insight {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
}

.section-insight h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-insight p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.section-testimonials {
    padding: 6rem 2rem;
}

.section-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.testimonials-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-secondary);
}

.testimonial-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-secondary);
}

.section-form-embedded {
    padding: 6rem 2rem;
    background-color: var(--color-bg-alt);
}

.container-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-card {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.form-card > p {
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-secondary);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.section-benefits-alt {
    padding: 5rem 2rem;
}

.benefits-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.benefit-block {
    flex: 1 1 calc(33.333% - 3rem);
    min-width: 250px;
}

.benefit-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.benefit-block p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.footer-modern {
    background-color: var(--color-bg-dark);
    color: #cccccc;
    padding: 4rem 2rem 2rem;
}

.footer-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #999999;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: #999999;
    line-height: 1.6;
}

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

.page-about {
    padding-top: 0;
}

.hero-about {
    padding: 5rem 2rem 3rem;
    background-color: var(--color-bg-alt);
}

.hero-about h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-story-full {
    padding: 6rem 2rem;
}

.story-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: var(--color-bg-alt);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.story-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.section-values-cards {
    padding: 6rem 2rem;
    background-color: var(--color-bg-alt);
}

.section-values-cards h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

.section-team {
    padding: 5rem 2rem;
}

.section-team h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-team p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.section-process {
    padding: 6rem 2rem;
    background-color: var(--color-bg-alt);
}

.section-process h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(25% - 2rem);
    min-width: 200px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.process-step p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.section-cta-about {
    padding: 5rem 2rem;
    text-align: center;
}

.section-cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-cta-about p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.page-services {
    padding-top: 0;
}

.hero-services {
    padding: 5rem 2rem 3rem;
    background-color: var(--color-bg-alt);
}

.hero-services h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.hero-services p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-card-full {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.service-card-full.reverse {
    flex-direction: row-reverse;
}

.service-image-large {
    flex: 1;
    background-color: var(--color-bg-alt);
}

.service-image-large img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    padding: 0.5rem 1rem;
    background-color: var(--color-bg-alt);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.price-reveal {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

.btn-service {
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.section-cta-services {
    padding: 5rem 2rem;
    background-color: var(--color-bg-alt);
    text-align: center;
}

.section-cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.section-cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.page-contact {
    padding-top: 0;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    background-color: var(--color-bg-alt);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.contact-content {
    padding: 6rem 2rem;
}

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

.contact-info-card {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

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

.contact-map-placeholder {
    padding: 4rem 2rem;
    background-color: var(--color-bg-alt);
}

.map-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: white;
    border-radius: 8px;
    text-align: center;
}

.map-note p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.page-thanks {
    padding: 4rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    width: 100%;
}

.thanks-card {
    background-color: white;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.thanks-card > p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.service-selected {
    margin: 2rem 0;
}

.service-note {
    padding: 1rem;
    background-color: var(--color-bg-alt);
    border-radius: 4px;
    color: var(--color-text);
}

.thanks-next-steps {
    text-align: left;
    margin: 3rem auto;
    max-width: 500px;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--color-text-light);
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--color-secondary);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--color-secondary);
    text-decoration: none;
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.page-legal {
    padding: 4rem 2rem;
}

.page-legal h1 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-family: var(--font-secondary);
    color: var(--color-primary);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
    color: var(--color-secondary);
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: var(--color-text-light);
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-minimal {
        flex-direction: column;
    }

    .nav-floating {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .cards-grid {
        flex-direction: column;
    }

    .card-product {
        flex: 1 1 100%;
    }

    .testimonials-cards {
        flex-direction: column;
    }

    .testimonial-card {
        flex: 1 1 100%;
    }

    .benefits-layout {
        flex-direction: column;
    }

    .benefit-block {
        flex: 1 1 100%;
    }

    .footer-layout {
        flex-direction: column;
    }

    .story-split {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .value-card {
        flex: 1 1 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step {
        flex: 1 1 100%;
    }

    .service-card-full,
    .service-card-full.reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}
