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

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #2d2d2d;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

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

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

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

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

.hero-overlay {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.hero-lead {
    font-size: 1.3rem;
    color: var(--gray);
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    margin: 2rem 0;
}

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

.article-intro {
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.drop-cap::first-letter {
    font-size: 3.5rem;
    line-height: 1;
    float: left;
    margin: 0 0.1em 0 0;
    color: var(--accent-color);
    font-weight: bold;
}

.inline-cta-box {
    background: var(--light-bg);
    padding: 2rem;
    margin: 3rem 0;
    border-left: 4px solid var(--accent-color);
}

.cta-small-text {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.btn-inline {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.btn-inline:hover {
    background: #d63850;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

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

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.image-caption {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    font-style: italic;
}

.quote-block {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--accent-color);
    background: var(--light-bg);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-color);
}

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

.dark-bg {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 4px;
}

.dark-bg h2 {
    color: var(--white);
}

.split-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

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

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

.cta-break h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #d63850;
}

.services-editorial {
    margin-top: 2.5rem;
}

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

.service-card.featured {
    border: 2px solid var(--accent-color);
    background: #fff5f7;
}

.badge-featured {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 20px;
}

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

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

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.service-duration {
    font-size: 0.9rem;
    color: var(--gray);
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.btn-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

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

.testimonial-inline {
    margin: 3rem 0;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-left: 4px solid var(--accent-color);
}

.testimonial-inline blockquote {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-color);
}

.testimonial-inline cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--gray);
}

.editorial-form {
    margin-top: 2rem;
    background: var(--light-bg);
    padding: 2.5rem 2rem;
    border-radius: 4px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #d63850;
}

.final-note {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

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

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: background 0.3s;
    margin-bottom: 1rem;
}

.btn-primary-large:hover {
    background: #d63850;
}

.cta-sub {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.link-inline {
    color: var(--accent-color);
    text-decoration: underline;
}

.link-inline:hover {
    color: #d63850;
}

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-sticky {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #d63850;
    box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

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

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

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

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

.btn-cookie:hover {
    background: #d63850;
}

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

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

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

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

    .nav-menu li {
        padding: 0.8rem 5%;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .content-block h2 {
        font-size: 1.6rem;
    }

    .dark-bg {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

    .cta-break {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        padding: 2rem 1.5rem;
    }

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

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

@media (min-width: 769px) {
    .split-visual {
        flex-direction: row;
        gap: 3rem;
    }
}