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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #1a1a1a;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #888;
    padding: 0.3rem 0.7rem;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 6rem 2rem 4rem;
}

.editorial-hero {
    position: relative;
    margin-bottom: 3rem;
}

.hero-image-wrapper {
    width: 100%;
    background-color: #e8e8e8;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-text-overlay {
    margin-top: 2rem;
}

.hero-text-overlay h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    font-weight: 400;
    line-height: 1.5;
}

.editorial-intro {
    margin-top: 3rem;
}

.text-column {
    max-width: 100%;
}

.intro-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.text-column p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
}

.text-column h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.text-column ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.text-column li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.text-column a {
    color: #0066cc;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 102, 204, 0.3);
    transition: border-bottom-color 0.3s ease;
}

.text-column a:hover {
    border-bottom-color: #0066cc;
}

.inline-image-block {
    margin: 2.5rem 0;
    background-color: #f9f9f9;
    border-radius: 4px;
    overflow: hidden;
}

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

.image-caption {
    padding: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
}

.editorial-quote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid #1a1a1a;
    background-color: #f8f8f8;
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    color: #2a2a2a;
}

.cta-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f0f4f8;
    border-radius: 6px;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.btn-cta-inline {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.btn-cta-inline:hover {
    background-color: #333333;
}

.testimonial-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #fafafa;
    border-radius: 6px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.services-cards {
    margin: 3rem 0;
}

.service-card {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 1rem;
}

.service-duration {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #333333;
}

.service-card-detailed {
    margin-bottom: 3rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
}

.service-image-wrapper {
    width: 100%;
    background-color: #e8e8e8;
}

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

.service-content {
    padding: 2rem;
}

.form-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background-color: #f5f5f5;
    border-radius: 6px;
}

.contact-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group input[readonly] {
    background-color: #f0f0f0;
    color: #666;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #333333;
}

.disclaimer-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #fff8e1;
    border-left: 4px solid #ffb300;
    border-radius: 4px;
}

.disclaimer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.disclaimer-section p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.references-section {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.references-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.references-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 0.5rem;
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.page-subtitle {
    font-size: 1.15rem;
    color: #666;
}

.contact-info-block {
    margin: 2rem 0;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    font-size: 1rem;
    line-height: 1.7;
    color: #3a3a3a;
}

.contact-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-text-block {
    margin: 2.5rem 0;
}

.about-cta {
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f0f4f8;
    border-radius: 6px;
    text-align: center;
}

.about-cta p {
    margin-bottom: 1.5rem;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-message h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 2rem;
}

.thanks-details {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f0f4f8;
    border-radius: 6px;
}

.thanks-next-steps {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.thanks-image {
    margin: 2rem 0;
    background-color: #f9f9f9;
    border-radius: 6px;
    overflow: hidden;
}

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

.thanks-actions {
    margin-top: 3rem;
}

.legal-text {
    font-size: 0.95rem;
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid #d0d0d0;
}

.cookie-table th {
    background-color: #f0f0f0;
    font-weight: 600;
}

.footer {
    margin-top: 5rem;
    padding: 2.5rem 0;
    background-color: #f8f8f8;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a1a1a;
}

.footer-copy {
    font-size: 0.85rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    border-top: 2px solid #333;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-cookie-accept {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    background-color: #e0e0e0;
}

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .editorial-container {
        padding: 5rem 1.5rem 3rem;
    }

    .hero-text-overlay h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .text-column h2 {
        font-size: 1.5rem;
    }

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

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
}