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

:root {
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-text: #34495e;
    --color-light: #ecf0f1;
    --color-white: #ffffff;
    --color-border: #bdc3c7;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    --max-width-narrow: 720px;
    --max-width-wide: 1200px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    font-size: 18px;
}

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

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

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

.nav-editorial {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-light);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-primary);
}

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

.hero-editorial {
    margin-bottom: var(--spacing-large);
}

.hero-text-center {
    text-align: center;
    margin-bottom: var(--spacing-medium);
}

.hero-text-center h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 400;
}

.hero-image-inline {
    width: 100%;
    margin-top: var(--spacing-medium);
    border-radius: 8px;
}

.text-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto var(--spacing-large) auto;
}

.text-narrow h2 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
}

.text-narrow h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.text-narrow p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.list-editorial {
    margin: 1.5rem 0 1.5rem 2rem;
    line-height: 1.9;
}

.list-editorial li {
    margin-bottom: 0.8rem;
}

.image-break {
    margin: var(--spacing-large) 0;
}

.image-break img {
    width: 100%;
    border-radius: 8px;
}

.cta-inline {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: var(--spacing-large) 0;
}

.cta-inline p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--color-text);
}

.btn-primary {
    display: inline-block;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #2980b9;
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-secondary);
    padding: 0.9rem 2rem;
    border-radius: 6px;
    border: 2px solid var(--color-secondary);
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary-large {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary-large:hover {
    background: #c0392b;
    color: var(--color-white);
    transform: translateY(-2px);
}

.services-editorial {
    margin: var(--spacing-large) 0;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-medium);
    color: #7f8c8d;
}

.service-card {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

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

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

.service-card p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 1.5rem 0;
}

.btn-select-service {
    background: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.testimonial-block {
    background: #f8f9fa;
    border-left: 4px solid var(--color-secondary);
    padding: 2rem;
    margin: var(--spacing-large) 0;
    border-radius: 4px;
}

.testimonial-block blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
}

.testimonial-block cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--color-primary);
}

.form-section {
    background: var(--color-light);
    padding: 3rem;
    border-radius: 8px;
    margin: var(--spacing-large) 0;
}

.form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.form-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-selected-service {
    background: var(--color-white);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--color-secondary);
}

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

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

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

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

.btn-submit {
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 1rem 3rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.final-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: var(--color-white);
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: var(--spacing-large) 0;
}

.final-cta h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 3rem 2rem 1rem 2rem;
    margin-top: var(--spacing-large);
}

.footer-content {
    max-width: var(--max-width-wide);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: var(--color-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--color-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 90;
}

.sticky-btn {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #c0392b;
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
    transform: translateY(-3px);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    z-index: 200;
    display: none;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

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

.btn-cookie-reject {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-large);
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-light);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.header-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: var(--spacing-large) 0;
}

.contact-card {
    background: var(--color-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-secondary);
}

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

.contact-card p {
    line-height: 1.7;
}

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

.service-card-detailed {
    background: var(--color-white);
    border: 2px solid var(--color-light);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    transition: box-shadow 0.3s ease;
}

.service-card-detailed:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--color-primary);
    flex: 1;
    margin: 0;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.service-details h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-details ul {
    margin-left: 1.5rem;
    line-height: 1.8;
}

.service-details p {
    margin-top: 1rem;
    line-height: 1.7;
}

.featured-service {
    border: 3px solid var(--color-accent);
    background: linear-gradient(to bottom, #fff, #fef5f5);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-light);
}

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.faq-item p {
    line-height: 1.7;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

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

.thanks-container h1 {
    font-size: 2.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.thanks-service {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: none;
}

.thanks-next-steps {
    text-align: left;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.thanks-next-steps ul {
    margin-left: 1.5rem;
    line-height: 1.9;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--color-light);
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--color-primary);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content ul {
    margin-left: 2rem;
    line-height: 1.9;
}

.legal-content p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        border-bottom: 2px solid var(--color-light);
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

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

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

    .editorial-container {
        padding: 2rem 1.5rem;
    }

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

    .service-price {
        font-size: 1.6rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .service-header {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }
}