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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
}

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

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

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

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

.nav-links a:hover {
    color: #2c3e50;
}

.editorial-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
    min-height: 100vh;
}

.article-hero {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.article-hero h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.article-lead {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #555;
    font-style: italic;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.inline-image {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.pull-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
    color: #2c3e50;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #3498db;
    background-color: #f8f9fa;
}

.testimonial-inline {
    background-color: #f8f9fa;
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid #27ae60;
}

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

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.cta-inline {
    margin: 2rem 0;
}

.btn-text-link {
    font-size: 1.1rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text-link:hover {
    color: #2980b9;
}

.services-grid-editorial {
    margin: 3rem 0;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

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

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

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.btn-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.btn-service:hover {
    background-color: #2980b9;
}

.cta-section-editorial {
    background-color: #f8f9fa;
    padding: 3rem 2rem;
    margin: 4rem 0;
    text-align: center;
    border-radius: 4px;
}

.cta-section-editorial h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cta-section-editorial p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1a252f;
}

.btn-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.final-cta-editorial {
    text-align: center;
    margin: 4rem 0;
}

.final-cta-editorial p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

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

.form-section-editorial h2 {
    margin-top: 0;
    text-align: center;
}

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

.editorial-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

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

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

.editorial-footer {
    margin-top: 5rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    text-align: center;
}

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

.footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #2c3e50;
}

.footer-copy {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-cookie-accept:hover,
.btn-cookie-reject:hover {
    opacity: 0.8;
}

.contact-info {
    margin: 3rem 0;
}

.contact-item {
    background-color: #f8f9fa;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.contact-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-item p {
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.service-detailed {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border-radius: 4px;
}

.service-detailed h2 {
    margin-top: 0;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0 1.5rem 0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    margin: 2rem;
    padding: 2.5rem;
    border-radius: 4px;
    max-width: 500px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: #000;
}

#modalTitle {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content a {
    color: #3498db;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.service-confirmation {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .editorial-container {
        padding: 2rem 1.5rem;
    }

    .article-hero h1 {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        width: 100%;
    }

    .pull-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
    }

    .service-card,
    .service-detailed {
        padding: 1.5rem;
    }

    .cta-section-editorial {
        padding: 2rem 1.5rem;
    }

    .form-section-editorial {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 0.8rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .article-hero h1 {
        font-size: 1.6rem;
    }

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