.seo-content {
    padding: 4rem 0;
    background: var(--bg-primary)
}

.hero {
    padding-top: 160px
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2
}

.hero-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(245, 158, 11, 0.3)
}

@media(max-width:768px) {
    .hero-title {
        font-size: 2rem
    }
}

.content-article {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-primary);
    padding: 0 1rem
}

.lead-paragraph {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.content-article h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 2rem;
    padding-bottom: .75rem;
    color: var(--text-primary);
    border-bottom: 3px solid var(--primary-color);
    position: relative
}

.content-article h2:first-of-type {
    margin-top: 2rem
}

.content-article h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: var(--secondary-color)
}

.content-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary)
}

.content-article p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary)
}

.content-article a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color .3s ease;
    font-weight: 500
}

.content-article a:hover {
    color: var(--secondary-color)
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.services-list li {
    padding: 1.2rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color)
}

.services-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    top: 50%;
    transform: translateY(-50%)
}

.services-list li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0
}

.price-item {
    padding: 2.5rem 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.price-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12)
}

.price-item h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem
}

.price-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0
}

.price-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0
}

.features-list {
    display: grid;
    gap: 2rem;
    margin: 3rem 0
}

.feature-item {
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05)
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-left-color: var(--secondary-color);
    border-color: var(--primary-color)
}

.feature-item h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem
}

.feature-item p {
    margin-bottom: 0;
    font-size: 1.05rem;
    line-height: 1.7
}

.steps-list {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 2rem 0
}

.steps-list li {
    counter-increment: step-counter;
    padding: 1.5rem;
    padding-left: 5rem;
    position: relative;
    margin-bottom: 1.5rem;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease, border-color .3s ease
}

.steps-list li:hover {
    transform: translateX(5px);
    border-color: var(--primary-color)
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15)
}

.cta-section {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15)
}

.cta-section h2 {
    color: white;
    margin-top: 0;
    font-size: 2.2rem;
    border-bottom: none;
    padding-bottom: 0
}

.cta-section h2::after {
    display: none
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: .95;
    color: white
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap
}

.cta-section a.btn {
    text-decoration: none !important
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white
}

.cta-section .btn-primary:hover,
.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2)
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2)
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25)
}

.cta-section .btn-whatsapp {
    background-color: #075E54 !important;
    color: white !important;
    border: 2px solid #075E54 !important
}

.cta-section .btn-whatsapp:hover {
    background-color: #064e46 !important;
    color: white !important;
    border-color: #064e46 !important
}

@media(max-width:768px) {
    .hero {
        padding-top: 120px
    }

    .seo-content {
        padding: 2rem 0
    }

    .content-article h2 {
        font-size: 1.6rem;
        margin-top: 3rem
    }

    .lead-paragraph {
        font-size: 1.1rem;
        padding: 1.5rem
    }

    .feature-item {
        padding: 1.5rem
    }

    .pricing-info {
        grid-template-columns: 1fr
    }

    .steps-list li {
        padding-left: 4rem
    }

    .steps-list li:before {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
        left: 1rem
    }

    .cta-section {
        padding: 2rem 1.5rem
    }

    .cta-section h2 {
        font-size: 1.8rem
    }

    .cta-buttons {
        flex-direction: column
    }

    .btn-large {
        width: 100%
    }
}

body.dark-mode .lead-paragraph {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .services-list {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .services-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1)
}

body.dark-mode .price-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .price-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color)
}

body.dark-mode .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .feature-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color)
}

body.dark-mode .steps-list li {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3)
}

body.dark-mode .steps-list li:hover {
    border-color: var(--primary-color)
}

.hero-image {
    animation: fadeInUp .8s ease
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}