/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2980b9;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a5c8b;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation - Editorial Style */
.nav-editorial {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-menu a:hover {
    border-bottom-color: #2980b9;
}

/* Editorial Content Container */
.editorial-content {
    max-width: 100%;
    margin: 0 auto;
}

/* Hero - Editorial Story Style */
.hero-editorial {
    padding: 4rem 2rem 3rem;
    max-width: 720px;
    margin: 0 auto;
}

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

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

.hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
    font-weight: 400;
}

.hero-image-inline {
    margin: 2rem 0;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-inline img {
    width: 100%;
}

/* Page Header Editorial */
.page-header-editorial {
    padding: 3rem 2rem 2rem;
    max-width: 720px;
    margin: 0 auto;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 2rem;
}

.page-header-editorial h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.legal-update {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Text Sections - Narrow Centered */
.text-section {
    padding: 3rem 2rem;
}

.text-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.text-section h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.text-section h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 2rem 0 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.text-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.text-section ul,
.text-section ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.text-section li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #2c3e50;
    color: #ffffff;
}

.bg-dark h2,
.bg-dark h3,
.bg-dark p {
    color: #ffffff;
}

/* Image Breaks */
.image-break {
    margin: 3rem 0;
    max-width: 100%;
}

.image-break img {
    width: 100%;
    height: auto;
}

/* Inline CTA */
.cta-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.btn-text-link {
    font-size: 1.15rem;
    color: #2980b9;
    font-weight: 600;
    border-bottom: 2px solid #2980b9;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.btn-text-link:hover {
    color: #1a5c8b;
    border-bottom-color: #1a5c8b;
}

/* Testimonial Inline */
.testimonial-inline {
    background-color: #f8f9fa;
    border-left: 4px solid #2980b9;
    padding: 1.5rem 2rem;
    margin: 2.5rem 0;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2c3e50;
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

/* Features Inline */
.features-inline {
    margin: 2.5rem 0;
}

.feature-item {
    margin-bottom: 2.5rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
    font-weight: 600;
}

.feature-item p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 0;
}

/* Service Cards - Editorial */
.service-card-editorial {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
}

.service-card-editorial:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card-editorial h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem 0;
    color: #2c3e50;
    font-weight: 600;
}

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

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

.btn-service-link {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background-color: #2980b9;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-service-link:hover {
    background-color: #1a5c8b;
    color: white;
}

/* CTA Section Editorial */
.cta-section-editorial {
    padding: 4rem 2rem;
    text-align: center;
}

.btn-primary-editorial {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2980b9;
    color: white;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(41,128,185,0.3);
}

.btn-primary-editorial:hover {
    background-color: #1a5c8b;
    color: white;
    box-shadow: 0 4px 12px rgba(41,128,185,0.4);
    transform: translateY(-2px);
}

.btn-primary-light {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: #2980b9;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-light:hover {
    background-color: #f0f0f0;
    color: #1a5c8b;
}

.btn-secondary-editorial {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.btn-secondary-editorial:hover {
    background-color: #2980b9;
    color: white;
}

/* Process List */
.process-list {
    counter-reset: process-counter;
    list-style: none;
    padding-left: 0;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 2rem;
    height: 2rem;
    background-color: #2980b9;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1rem;
}

.process-list strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Help List */
.help-list {
    list-style: none;
    padding-left: 0;
}

.help-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
}

.help-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Form Section Editorial */
.form-section-editorial {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: #2980b9;
}

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

.btn-submit-editorial {
    padding: 1rem 3rem;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(39,174,96,0.3);
}

.btn-submit-editorial:hover {
    background-color: #229954;
    box-shadow: 0 4px 12px rgba(39,174,96,0.4);
    transform: translateY(-2px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.form-note a {
    color: #2980b9;
    text-decoration: underline;
}

/* Services List Section */
.services-list-section {
    padding: 3rem 2rem;
}

.service-card-detailed {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card-detailed:hover {
    border-color: #2980b9;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-card-detailed.highlight-service {
    border-color: #f39c12;
    background-color: #fffbf0;
}

.service-header {
    background-color: #f8f9fa;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.highlight-service .service-header {
    background-color: #fff4d6;
}

.service-header h3 {
    margin: 0;
    font-size: 1.6rem;
    color: #2c3e50;
    font-weight: 700;
}

.price-large {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin: 0;
}

.badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #f39c12;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-body {
    padding: 2rem;
}

.service-body ul {
    margin: 1.5rem 0;
}

.service-body strong {
    color: #2c3e50;
}

.btn-service-cta {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: #2980b9;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background-color: #1a5c8b;
    color: white;
    transform: translateY(-2px);
}

/* FAQ Items */
.faq-item {
    margin-bottom: 2.5rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0;
}

/* Included/Excluded Lists */
.included-list,
.excluded-list {
    margin: 1.5rem 0;
}

.included-list li::marker {
    color: #27ae60;
}

.excluded-list li::marker {
    color: #e74c3c;
}

/* Contact Info Blocks */
.contact-info-block {
    margin-bottom: 3rem;
}

.contact-info-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-info-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    color: #2980b9;
    font-weight: 600;
}

.note-text {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
}

/* Value Item */
.value-item {
    margin-bottom: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #2980b9;
}

.value-item h3 {
    margin-top: 0;
}

/* Stats List */
.stats-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2980b9;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    margin: 0;
}

/* Thanks Section */
.thanks-section {
    padding: 5rem 2rem;
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
    text-align: left;
}

.thanks-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.thanks-info ol {
    padding-left: 1.5rem;
}

.thanks-info li {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-contact {
    margin: 2rem 0;
}

.thanks-contact p {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.email-link {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2980b9;
}

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

/* Legal Page */
.legal-page .text-section {
    padding: 2rem;
}

.legal-content h2 {
    font-size: 1.6rem;
    margin: 2.5rem 0 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #34495e;
    font-weight: 600;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-column a {
    color: #bdc3c7;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid #34495e;
    text-align: center;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
    display: none;
}

.sticky-cta.show {
    display: block;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.btn-sticky {
    display: block;
    padding: 1rem 2rem;
    background-color: #27ae60;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(39,174,96,0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    background-color: #229954;
    color: white;
    box-shadow: 0 6px 20px rgba(39,174,96,0.5);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

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

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

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

    .text-section h2 {
        font-size: 1.6rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .badge-popular {
        position: static;
        margin-bottom: 1rem;
    }

    .stats-list {
        flex-direction: column;
    }

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

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

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

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

    .btn-secondary-editorial {
        margin-left: 0;
        margin-top: 1rem;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-editorial {
        padding: 2rem 1rem;
    }

    .text-section {
        padding: 2rem 1rem;
    }

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

    .service-header,
    .service-body {
        padding: 1.5rem;
    }
}
