/* Produto Patrocinado Page Styles */
:root {
    --pp-primary: #FF6B35;
    --pp-secondary: #E55A2B;
    --pp-accent: #FF7F50;
    --pp-light: #FFF4F0;
    --pp-gradient: linear-gradient(135deg, var(--pp-primary) 0%, var(--pp-secondary) 100%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, #BD0BFF 0%, #E191FF 100%), linear-gradient(0deg, #BD0BFF, #BD0BFF);
    color: white;
    padding-top: 25px !important;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 0.4rem 3rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-left: 0;
    justify-self: left;
}

.btn-cta {
    background: white;
    color: #9333EA;
    border: none;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-left: 0;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #7C3AED;
}

/* Hero Image */
.hero-image {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.hero-image img {
    max-width: 55vh;
    height: 30vh;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
    transform: scale(1.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 5rem 0;
    position: relative;
}

.benefits-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #FFD700 0%, #FF8C00 20%, #FF1493 40%, #9932CC 60%, #4169E1 80%, #00CED1 100%);
}

.benefits-title {
    color: #626262;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    text-align: left;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 64px;
    height: 64px;
}

.benefit-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.benefit-card h3 {
    color: #626262;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: left;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
    text-align: left;
}

/* Where Ads Appear Section */
.where-ads-section {
    background: white;
    padding: 5rem 0;
}

.where-ads-title {
    color: #626262;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.ad-placement-buttons {
    margin-bottom: 2rem;
}

.buttons-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
}

.buttons-row:last-child {
    margin-bottom: 0;
}

.placement-btn {
    background: #E5E5E5;
    color: white;
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: auto;
    min-height: 36px;
}

.placement-btn:hover {
    background: #D0D0D0;
    transform: translateY(-2px);
}

.placement-btn.active {
    background: #BD0BFF !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(189, 11, 255, 0.3);
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    object-fit: contain;
}

.placement-btn.active .btn-icon {
    filter: brightness(0) invert(1);
}

.placement-description {
    margin-top: 2rem;
}

.placement-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.placement-mockup {
    text-align: center;
    position: relative;
}

.placement-mockup img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: opacity 0.3s ease;
    opacity: 1;
}

.placement-description {
    margin-top: 2rem;
}

.placement-description p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.placement-mockup {
    text-align: center;
    position: relative;
}

.placement-mockup img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    transition: opacity 0.3s ease;
    opacity: 1;
}

/* Success Cases Section */
.success-cases-section {
    background: white;
    padding: 5rem 0;
}

.success-cases-title {
    color: #626262;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.case-card {
    background: #F5F5F5;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    padding: 1rem;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 8px;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 2rem;
}

.case-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.case-content strong {
    color: #626262;
    font-weight: 600;
}

.case-link {
    color: #0086FF;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.case-link:hover {
    color: #0070d9;
}



/* CTA Section */
.cta-section {
    background: white;
    padding: 5rem 0;
}

.col-lg-10 {
    flex: 0 0 auto;
    width: 100.333333%;
}

.cta-container {
    background: linear-gradient(90deg, #BD0BFF 0%, #E191FF 100%), linear-gradient(0deg, #BD0BFF, #BD0BFF);
    border-radius: 24px;
    padding: 3rem 4rem;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 2rem;
}

.btn-cta-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.google-ads-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.google-ads-link:hover {
    color: white;
    opacity: 1;
    text-decoration: underline;
}

.cta-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.decoration {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.decoration-left {
    width: 140px;
    height: 100px;
    top: 84px;
    left: 0;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0px 16px 16px 0px;
}

.decoration-right {
    width: 116px;
    height: 154px;
    top: 0;
    right: 93px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 16px 16px;
}

/* Process Section */
.process-section {
    background: var(--pp-light);
    padding: 5rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--pp-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.process-step h3 {
    color: #626262;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2 {
    color: #626262;
    font-size: 2.2rem;
    font-weight: 600;
}

.contact-form-container p {
    color: #666;
    font-size: 1.1rem;
}

.form-label {
    color: #626262;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--pp-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.form-check-input:checked {
    background-color: var(--pp-primary);
    border-color: var(--pp-primary);
}

.form-check-label {
    color: #666;
}

.form-check-label a {
    color: var(--pp-primary);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}



.btn-outline-light {
    border: 2px solid white;
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--pp-primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .benefits-title {
        font-size: 2.2rem;
    }

    .benefits-subtitle {
        font-size: 1rem;
        margin-bottom: 3rem;
    }

    .benefit-card {
        padding: 1.5rem 1rem;
        margin-bottom: 2rem;
    }

    .where-ads-title {
        font-size: 2rem;
    }

    .success-cases-title {
        font-size: 2.2rem;
    }

    .case-content {
        padding: 1.5rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-container {
        padding: 2.5rem 2rem;
    }

    .buttons-row {
        justify-content: center;
    }

    .placement-btn {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        min-height: 32px;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .result-number {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
}

.hero-buttons {
    justify-content: center;
}

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

.contact-form-container {
    padding: 2rem;
}

.results-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.result-number {
    font-size: 2.5rem;
}


}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .benefits-title {
        font-size: 1.8rem;
    }

    .benefits-subtitle {
        font-size: 0.95rem;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .where-ads-title {
        font-size: 1.6rem;
    }

    .success-cases-title {
        font-size: 1.8rem;
    }

    .case-content {
        padding: 1.25rem;
    }

    .case-content p {
        font-size: 0.9rem;
    }

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

    .cta-subtitle {
        font-size: 1.1rem;
    }

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

    .decoration-left {
        width: 100px;
        height: 70px;
    }

    .decoration-right {
        width: 80px;
        height: 60px;
    }

    .buttons-row {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .placement-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .process-step {
        padding: 1.5rem;
    }

    .result-number {
        font-size: 2rem;
    }
}

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

.hero-buttons {
    flex-direction: column;
    align-items: center;
}

.hero-buttons .btn {
    width: 100%;
    max-width: 280px;
}

.contact-form-container {
    padding: 1.5rem;
}

.process-step {
    padding: 1.5rem;
}

.result-number {
    font-size: 2rem;
}

@media (min-width: 1025px) {
    .wp-block-kadence-tabs .kt-tabs-id17_3496e8-fc>.kt-tabs-title-list {
        float: none !important;
        width: 500px !important;
        flex-direction: row !important;
    }
}