/* ============================================
   MKTC - BELOW THE FOLD STYLES
   Mobile First - Roxo Agência 2E
   ============================================ */

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* ============================================
   SEÇÕES - Contraste forte entre cada uma
   ============================================ */
.section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    .section {
        padding: 6rem 0;
    }
}

/* Seção Pain - Escuro com overlay */
.section-pain {
    background: linear-gradient(180deg, rgba(15, 10, 31, 0.8) 0%, rgba(26, 19, 51, 0.6) 100%);
}

/* Seção About - Roxo leve */
.section-about {
    background: rgba(124, 58, 237, 0.05);
}

/* Seção Differentials - Gradiente roxo médio */
.section-differentials {
    background: linear-gradient(180deg, rgba(45, 27, 105, 0.4) 0%, rgba(26, 19, 51, 0.3) 100%);
}

/* Seção Testimonials - Escuro */
.section-testimonials {
    background: rgba(15, 10, 31, 0.5);
}

/* Seção Stats - Gradiente roxo claro vibrante */
.section-stats {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(109, 40, 217, 0.1) 50%, rgba(167, 139, 250, 0.1) 100%);
}

/* Seção Cases - Médio */
.section-cases {
    background: rgba(26, 19, 51, 0.6);
}

/* Seção Guarantee - Roxo leve */
.section-guarantee {
    background: rgba(124, 58, 237, 0.08);
}

/* Seção FAQ - Gradiente escuro */
.section-faq {
    background: linear-gradient(180deg, rgba(15, 10, 31, 0.7) 0%, rgba(26, 19, 51, 0.5) 100%);
}

/* Seção Final - Roxo leve */
.section-final {
    background: rgba(45, 27, 105, 0.3);
}

/* ============================================
   TÍTULOS E TEXTOS
   ============================================ */
.section__title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: center;
}

.destaque{
    color: var(--accent-yellow);
}

.section__intro {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section__highlight {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    color: #ffffff;
}

/* ============================================
   PAIN CARDS
   ============================================ */
.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.pain-card {
    background: rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: 0.3s ease;
    text-align: center;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(124, 58, 237, 0.15);
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    border-color: #7c3aed;
}

.pain-card__icon {
    margin: 0 auto 1rem;
}

.pain-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .about-gallery {
        grid-template-columns: 1fr 2fr 1fr;
        gap: 2rem;
    }
}

.about-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    object-fit: cover;
}

.about-gallery img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4);
}

.about-quote {
    background: rgba(93, 16, 194, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-left: 4px solid #7c3aed;
    color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.benefit-card {
    background: rgba(124, 58, 237, 0.08);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
    transform: translateY(-3px);
}

.benefit-card img {
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
}

/* ============================================
   DIFFERENTIALS
   ============================================ */
.differentials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.differential-card {
    background: rgba(45, 27, 105, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    transition: 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.differential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    border-color: #7c3aed;
    background: rgba(124, 58, 237, 0.12);
}

.differential-card img {
    margin-bottom: 1rem;
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.differential-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4);
}

.testimonial-card img {
    width: 100%;
    height: auto;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
}

.stat-card {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: #ffffff;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.6);
}

.stat-card__number {
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    color: var(--accent-yellow);
    font-family: var(--font-primary);
    text-align: center;
}

.stat-card__text {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   CASES
   ============================================ */
.cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .cases-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.case-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(124, 58, 237, 0.4);
}

.case-card img {
    width: 100%;
    height: auto;
    transition: 0.3s ease;
}

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

/* ============================================
   GUARANTEE
   ============================================ */
.guarantee-card {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: #1a1333;
    padding: 4rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.3);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.guarantee-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    animation: pulse 3s ease-in-out infinite;
}

.guarantee-card__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

.guarantee-card__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.guarantee-card__text {
    font-size: 1.125rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-accordion {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: rgba(124, 58, 237, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.2);
    background: rgba(124, 58, 237, 0.12);
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
    background: none;
    border: none;
}

.faq-item__question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-item__icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item__question[aria-expanded="true"] .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item__question[aria-expanded="true"] + .faq-item__answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-item__answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ============================================
   FINAL
   ============================================ */
.section-final {
    text-align: center;
}

.final-message {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: #ffffff;
    padding: 2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0f0a1f;
    color: #ffffff;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer__copyright {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.875rem;
}

.footer__brand {
    margin-bottom: 2rem;
}

.footer__scroll-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(124, 58, 237, 0.5);
    background: rgba(124, 58, 237, 0.1);
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

.footer__scroll-top:hover {
    background: #7c3aed;
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #7c3aed;
}

.footer__scroll-top img {
    width: 20px;
    height: 20px;
}

/* ============================================
   BOTÕES CTA
   ============================================ */
.section__cta {
    text-align: center;
    margin-top: 3rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn--primary {
    background: linear-gradient(135deg, #0cdf3e 0%, #05962e 100%);
    color: #ffffff;
    box-shadow: 0px 0px 30px -5px #80FF0090;
    animation: float 3s ease-in-out infinite;
    display: flex;
    margin: 0 auto;
    gap: 10px;
    align-items: center;
}

.icon-wa{
    width: 30px;
    height: auto;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.btn--cta {
    position: relative;
    overflow: hidden;
}

.btn--cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn--cta:hover::before {
    width: 300px;
    height: 300px;
}

.btn--large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal[aria-hidden="false"] {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal__container {
    position: relative;
    background: rgba(26, 19, 51, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
    z-index: 1;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: 0.3s ease;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.modal__close:hover {
    background: #7c3aed;
    transform: rotate(90deg);
}

.modal__content {
    padding: 4rem 2rem 2rem;
}

.modal__content .form-title {
    color: #ffffff;
}

.modal__content .form-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* ============================================
   UTILITIES
   ============================================ */
body.modal-open {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}