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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8fb0;
    --accent-color: #e8993b;
    --text-color: #2b2b2b;
    --text-light: #5a5a5a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --error-color: #dc3545;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.9rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
}

h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

p {
    margin-bottom: 1.3rem;
}

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

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

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

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1.3rem;
}

li {
    margin-bottom: 0.5rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 95, 125, 0.97);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 280px;
}

.cookie-content a {
    color: white;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: var(--accent-color);
    color: white;
}

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

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

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

.nav-minimal {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--text-color);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

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

.editorial-header {
    margin-bottom: 3rem;
    text-align: left;
}

.editorial-header h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.editorial-image {
    margin: 3rem 0;
    width: 100%;
}

.editorial-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.editorial-image-inline {
    margin: 2.5rem 0;
}

.editorial-image-inline img {
    width: 100%;
    border-radius: 4px;
}

.editorial-content {
    margin-bottom: 3rem;
}

.editorial-quote {
    font-size: 1.4rem;
    font-style: italic;
    margin: 2.5rem 0;
    padding: 2rem;
    border-left: 5px solid var(--accent-color);
    background-color: var(--bg-light);
    line-height: 1.6;
}

.editorial-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    font-style: normal;
    color: var(--text-light);
}

.inline-cta {
    margin: 2.5rem 0;
    text-align: center;
    padding: 1.5rem 0;
}

.cta-link {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    color: var(--accent-color);
}

.cta-link-secondary {
    display: inline-block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    color: var(--secondary-color);
    text-decoration: underline;
}

.inline-cta-box {
    background-color: var(--bg-light);
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

.inline-cta-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.inline-cta-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: white;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d48529;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 153, 59, 0.3);
}

.benefits-inline {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #e8f4f8;
    border-radius: 4px;
}

.benefits-inline h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.benefits-list {
    list-style: none;
    margin-left: 0;
}

.benefits-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.services-cards {
    margin: 3rem -1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    margin-top: 0;
    color: var(--primary-color);
    font-size: 1.6rem;
}

.service-card p {
    color: var(--text-light);
}

.price-tag {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.btn-select-service {
    width: 100%;
    padding: 1rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-box {
    margin: 3rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-left: 5px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.urgency-box {
    background-color: #fff3e0;
    border: 2px solid var(--accent-color);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 4px;
    text-align: center;
}

.urgency-box h3 {
    margin-top: 0;
    color: var(--accent-color);
}

.form-container {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.consultation-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background-color: white;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d48529;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 153, 59, 0.3);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

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

.service-detail-card {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
    position: relative;
}

.service-detail-card.highlighted {
    background-color: #e8f4f8;
    border: 3px solid var(--secondary-color);
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background-color: var(--accent-color);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-detail-card h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.service-description h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.service-description ul {
    margin-bottom: 1.5rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0 1.5rem 0;
    padding: 1rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.1rem;
    color: var(--text-light);
}

.price-amount {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.faq-item h4 {
    margin-top: 0;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

.contact-info-box {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h4 {
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-item p {
    margin-bottom: 0;
    line-height: 1.8;
}

.thanks-header {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 3rem;
    color: white;
    background-color: var(--success-color);
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.next-steps-box {
    background-color: var(--bg-light);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 4px;
}

.next-steps-box h3 {
    margin-top: 0;
    color: var(--primary-color);
}

.steps-list {
    list-style-type: none;
    counter-reset: step-counter;
    margin-left: 0;
}

.steps-list li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
}

.preparation-list {
    list-style: none;
    margin-left: 0;
}

.preparation-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.preparation-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.links-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.link-card {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.link-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.link-card h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.link-card p {
    margin-bottom: 0;
    color: var(--text-light);
}

.legal-page .editorial-header {
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 1.5rem;
}

.legal-page h2 {
    color: var(--primary-color);
}

.legal-page h3 {
    color: var(--secondary-color);
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.95rem;
}

.cookies-table thead {
    background-color: var(--primary-color);
    color: white;
}

.cookies-table th,
.cookies-table td {
    padding: 0.9rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table tbody tr:nth-child(even) {
    background-color: var(--bg-light);
}

.footer-editorial {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 2rem 1.5rem 2rem;
    margin-top: 5rem;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-column ul {
    list-style: none;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: white;
    opacity: 0.9;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    body {
        font-size: 17px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

    .editorial-header h1 {
        font-size: 2rem;
    }

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

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

    .inline-cta-box,
    .urgency-box {
        padding: 1.5rem;
    }

    .form-container {
        padding: 1.5rem;
    }

    .service-detail-card {
        padding: 1.5rem;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

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

    .cookies-table {
        font-size: 0.85rem;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 0.6rem;
    }
}

@media (max-width: 480px) {
    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

    .editorial-header h1 {
        font-size: 1.7rem;
    }

    .price-tag {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 1.7rem;
    }
}