/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*
 * Override the services section title colour
 * The general .section-title uses a gradient text effect. For the services
 * section (Como sua transformação funciona na prática) the client requested
 * a solid white colour. Use a descendant selector scoped to the #servicos
 * section to override only that instance of .section-title.
 */
#servicos .section-title {
    /* Remove gradient backgrounds and restore normal text fill */
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
    color: #ffffff;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #ec4899;
    --dark-bg: #0f172a;
    --dark-secondary: #1e293b;
    --text-light: #f1f5f9;
    --text-gray: #94a3b8;
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
background-image: url('hero-image.jpg?v=2.5');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transform: translateY(-50%);
}

.hero-content .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
    padding: 2.5rem 3rem;
    position: relative;
    background: rgba(0, 0, 0, 0.22);
    border-radius: 24px;
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 0 60px rgba(0, 0, 0, 0.15);
}

.hero-text::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.22) 40%, transparent 100%);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.hero-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    margin-top: 0;
    line-height: 1.15;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.hero-title strong {
    color: #ffffff;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 10px rgba(99, 102, 241, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    opacity: 0.98;
    position: relative;
    z-index: 1;
}

.hero-subtitle strong {
    color: #ec4899;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(236, 72, 153, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4), 0 4px 15px rgba(0, 0, 0, 0.3);
    font-size: 1rem;
    padding: 1rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    font-size: 1rem;
    padding: 1rem 2.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

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

.sobre .section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

/* Sobre Section */
.sobre {
    background: var(--dark-secondary);
    padding: 4rem 0 5rem 0;
}

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.sobre-text {
    text-align: center;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Resultados Section */
.resultados {
    background: var(--dark-bg);
    padding: 3rem 0 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.resultados::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.resultados .container {
    position: relative;
    z-index: 1;
}

.resultados-wrapper {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* Carrossel */
.resultados-carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
    background: var(--dark-secondary);
    max-height: 550px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    padding: 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content img {
    width: 100%;
    height: auto;
    max-height: 550px;
    display: block;
    object-fit: contain;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
}

.before-after .before,
.before-after .after {
    position: relative;
    overflow: hidden;
}

.before-after img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
    min-height: 520px;
}

.before-after .label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
    backdrop-filter: blur(8px);
}

.before .label {
    background: rgba(30, 41, 59, 0.9);
}

.after .label {
    background: rgba(99, 102, 241, 0.9);
    left: auto;
    right: 1rem;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 1rem;
}

.carousel-btn-next {
    right: 1rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dots .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

/* Conteúdo Textual */
.resultados-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resultados-title {
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-light);
    margin: 0;
}

.resultados-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.resultados-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 0;
    padding: 0;
}

.resultados-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.resultados-benefits li svg {
    flex-shrink: 0;
    color: var(--primary-color);
    stroke-width: 2.5;
}

.resultados-cta {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 0.25rem;
}

.btn-large {
    padding: 1.25rem 2rem;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-large .cta-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
}

.btn-large .cta-text {
    font-weight: 600;
}

/* Serviços Section */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: var(--dark-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.servico-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.servico-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.servico-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Planos Section */
.planos {
    background: var(--dark-secondary);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.plano-card {
    background: var(--dark-bg);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.plano-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.plano-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    transform: scale(1.05);
}

.plano-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.plano-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.plano-preco {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.preco-valor {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preco-periodo {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.plano-features {
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plano-features li {
    padding: 1rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
}

.plano-features li:last-child {
    border-bottom: none;
}

.plano-card .btn {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

/* Depoimentos Section */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.depoimento-card {
    background: var(--dark-secondary);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.depoimento-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.depoimento-text {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-author strong {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.3rem;
}

.depoimento-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonial (Depoimentos) Section - versão com prints/imagens */
.testimonial-section {
    background: var(--dark-secondary);
    padding: 4rem 0;
}

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

.testimonial-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--text-light);
    background-clip: initial;
}

.testimonial-header .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.testimonial-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.testimonial-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    background: var(--dark-bg);
    position: relative;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    display: block;
}
/* Contato Section */
.contato {
    background: var(--dark-secondary);
}

.contato-content {
    max-width: 800px;
    margin: 0 auto;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contato-icon {
    font-size: 2.5rem;
}

.contato-item h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contato-item p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contato-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contato-link:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--text-gray);
}

/* Style for the footer copyright text when using a specific class */
.footer-text {
    color: var(--text-gray);
}

/* Footer customization */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo-img {
    height: 128px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* Use a neutral background and subtle border for social buttons */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark-secondary);
    color: var(--text-gray);
    transition: background 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon:hover {
    background: var(--gradient-primary);
    color: #fff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
.hero-content {
        top: 72%;
    }

    .hero-text {
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.2rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        font-size: 0.95rem;
        padding: 0.9rem 2rem;
    }

    .plano-card.featured {
        transform: scale(1);
    }

    .sobre {
        padding: 2.5rem 0 3.5rem 0;
    }

    .sobre .section-header {
        margin-bottom: 2rem;
    }

    .sobre-text p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .planos-grid {
        grid-template-columns: 1fr;
    }

    /* Resultados Responsive */
    .resultados {
        padding: 2rem 0;
    }

    .resultados-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .resultados-carousel {
        order: 2;
    }

    .resultados-content {
        order: 1;
        text-align: center;
        gap: 1.5rem;
    }

    .resultados-title {
        font-size: 1.75rem;
    }

    .resultados-description {
        font-size: 0.9rem;
    }

    .resultados-carousel {
        max-width: 100%;
    }
    
    .carousel-container {
        max-height: 450px;
    }
    
    .slide-content img {
        max-height: 450px;
    }
    
    .before-after img {
        min-height: 420px;
        aspect-ratio: 2 / 3;
    }

    .resultados-benefits {
        align-items: flex-start;
        text-align: left;
    }

    .resultados-cta {
        flex-direction: column;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn-prev {
        left: 0.5rem;
    }

    .carousel-btn-next {
        right: 0.5rem;
    }

    .before-after {
        grid-template-columns: 1fr;
    }

    .before-after .after .label {
        right: auto;
        left: 1rem;
    }
}

/* ========================
   New Plan Section Styles
   ======================== */

/* Main wrapper for the plans section */
.plans-section {
    background: var(--dark-secondary);
    padding: 6rem 0;
}

/* Section heading */
.plans-section .plans-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.plans-section .plans-title span {
    color: var(--secondary-color);
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: var(--secondary-color);
    background-clip: initial;
}
.plans-section .plans-tagline {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Group styling */
.plans-group {
    margin-top: 4rem;
}
.plans-group .group-name {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}
.plans-group .group-tagline {
    text-align: center;
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Grid for plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    justify-content: center;
}

/* Individual plan card */
.plan-card {
    position: relative;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

/* Recommended plan with gradient border */
.plan-card.recommended {
    border: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

/* Badge for recommendations or highlights */
.plan-card .plan-badge {
    position: absolute;
    top: -12px;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 
        0 4px 15px rgba(236, 72, 153, 0.4),
        0 2px 8px rgba(99, 102, 241, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 15px rgba(236, 72, 153, 0.4),
            0 2px 8px rgba(99, 102, 241, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 
            0 6px 20px rgba(236, 72, 153, 0.6),
            0 4px 12px rgba(99, 102, 241, 0.5);
    }
}

/* Plan name/title */
.plan-card .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

/* Highlight text for savings or special offers */
.plan-card .plan-highlight {
    background: rgba(99, 102, 241, 0.15);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Pricing block */
.plan-price {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.plan-price .price-installments {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.plan-price .price-total {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.plan-price .price-savings {
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-top: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: rgba(236, 72, 153, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(236, 72, 153, 0.3);
}

/* Destaque especial para economia */
.economy-highlight {
    margin: 1rem 0 1.5rem 0;
    text-align: center;
    position: relative;
}

.economy-highlight .economy-text {
    display: inline-block;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.2) 0%, 
        rgba(99, 102, 241, 0.2) 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 12px;
    padding: 0.8rem 1.2rem;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 
        0 4px 15px rgba(236, 72, 153, 0.3),
        0 2px 8px rgba(99, 102, 241, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: glow-economy 3s ease-in-out infinite;
}

.economy-highlight .economy-text::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: shine-economy 3s ease-in-out infinite;
}

@keyframes glow-economy {
    0%, 100% {
        box-shadow: 
            0 4px 15px rgba(236, 72, 153, 0.3),
            0 2px 8px rgba(99, 102, 241, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        border-color: var(--secondary-color);
    }
    50% {
        box-shadow: 
            0 6px 25px rgba(236, 72, 153, 0.5),
            0 4px 15px rgba(99, 102, 241, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(236, 72, 153, 0.8);
    }
}

@keyframes shine-economy {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.plan-card.recommended .economy-highlight .economy-text {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.25) 0%, 
        rgba(99, 102, 241, 0.25) 100%);
    border-color: var(--secondary-color);
}

/* Features list */
.plan-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
}

/* Automatically insert check or cross icons before each list item in plan features */
.plan-features li::before {
    content: '✅';
    margin-right: 0.5rem;
    font-size: 1rem;
    line-height: 1;
}
.plan-features li.negative::before {
    content: '❌';
}
.plan-features li.negative {
    color: var(--secondary-color);
}

/* CTA buttons */
.btn-plan {
    display: inline-block;
    width: 100%;
    text-align: center;
    border-radius: 9999px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.btn-plan.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    border: none;
}
.btn-plan.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--text-light);
}
.btn-plan.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}
.btn-plan.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.servico-card,
.plano-card,
.depoimento-card {
    animation: fadeInUp 0.6s ease-out;
}



/* ================================
   PERFIL CONSULTORIA
================================ */

.perfil-consultoria {
    padding: 3rem 0;
    background: radial-gradient(circle at top, rgba(255,255,255,0.04), transparent 60%);
}

.perfil-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.perfil-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.perfil-title span {
    /* Utiliza a cor rosa principal em vez de vermelho */
    color: var(--secondary-color);
}

.perfil-subtitle {
    /* Ajuste de tamanho e espaçamento para a nova estética */
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.perfil-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.perfil-card {
    position: relative;
    /* Glassmorphism effect com gradiente sofisticado */
    background: linear-gradient(145deg, 
        rgba(15, 23, 42, 0.8) 0%, 
        rgba(30, 41, 59, 0.6) 50%,
        rgba(15, 23, 42, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 24px;
    padding: 2rem 2.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    /* Sombra suave inicial */
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Efeito de brilho animado no fundo */
.perfil-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(236, 72, 153, 0.15) 0%,
        rgba(99, 102, 241, 0.1) 30%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.perfil-card:hover::before {
    opacity: 1;
}

.perfil-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(236, 72, 153, 0.8);
    /* Sombra mais dramática no hover */
    box-shadow: 
        0 20px 60px rgba(236, 72, 153, 0.3),
        0 10px 30px rgba(99, 102, 241, 0.2),
        0 0 0 1px rgba(236, 72, 153, 0.5) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.perfil-badge {
    display: inline-block;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.15) 0%, 
        rgba(236, 72, 153, 0.05) 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.perfil-card:hover .perfil-badge {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.25) 0%, 
        rgba(236, 72, 153, 0.15) 100%);
    border-color: rgba(236, 72, 153, 0.5);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.perfil-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.perfil-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.perfil-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.perfil-card ul li {
    /*
     * Display each benefit item as a flex row so the icon and text align
     * neatly. Reduce spacing to tighten the list and adjust font size
     * slightly for a refined look. The text colour uses a light grey
     * pulled from the theme variables.
     */
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

/*
 * Style the inline SVG icons within the perfil-card benefit list. These icons
 * replace the old emoji checkmarks with vector graphics. The stroke
 * inherits the secondary colour so they stand out against the dark card.
 */
.perfil-card ul li svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--secondary-color);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.perfil-card.destaque {
    /* Card destacado com visual premium */
    border: 2px solid rgba(236, 72, 153, 0.6);
    background: linear-gradient(145deg, 
        rgba(236, 72, 153, 0.2) 0%, 
        rgba(99, 102, 241, 0.15) 50%,
        rgba(15, 23, 42, 0.9) 100%);
    box-shadow: 
        0 8px 30px rgba(236, 72, 153, 0.2),
        0 0 0 1px rgba(236, 72, 153, 0.4) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
}

/* Efeito de brilho especial para o card destacado */
.perfil-card.destaque::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(236, 72, 153, 0.4),
        rgba(99, 102, 241, 0.4),
        rgba(236, 72, 153, 0.4));
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    filter: blur(8px);
}

.perfil-card.destaque:hover::after {
    opacity: 0.6;
}

.perfil-card.destaque:hover {
    border-color: rgba(236, 72, 153, 1);
    box-shadow: 
        0 25px 70px rgba(236, 72, 153, 0.4),
        0 15px 40px rgba(99, 102, 241, 0.3),
        0 0 0 1px rgba(236, 72, 153, 0.8) inset,
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.perfil-card.destaque .perfil-badge {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.3) 0%, 
        rgba(236, 72, 153, 0.2) 100%);
    border-color: rgba(236, 72, 153, 0.5);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.25);
}

.perfil-card.destaque:hover .perfil-badge {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.4) 0%, 
        rgba(236, 72, 153, 0.3) 100%);
    border-color: rgba(236, 72, 153, 0.7);
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

.perfil-footer {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: #e5e7eb;
}

.perfil-cta {
    margin-top: 2.5rem;
    text-align: center;
}

/* -------------------------------------------------------------------
   Como sua transformação funciona Section (Serviços)
   Compact card styling for service steps. Adjusts grid layout, card 
   padding, and typography for a smaller footprint while maintaining 
   readability and consistency with the overall dark theme.
--------------------------------------------------------------------*/
/* Wrapper para imagem + cards */
.funciona-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

/* Imagem à esquerda */
.funciona-image {
    position: sticky;
    top: 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
}

.funciona-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    max-height: 800px;
}

.funciona-grid {
    display: grid;
    /* Grid para 4 cards: 2 lado a lado */
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.funciona-card {
    position: relative;
    background: var(--dark-secondary);
    /* Padding mais compacto para cards menores */
    padding: 1.2rem 1.2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.funciona-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.funciona-card .badge {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 32px;
    height: 32px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.funciona-card .icon {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
}

.funciona-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: -0.3px;
}

.funciona-card h3 .highlight {
    color: var(--secondary-color);
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funciona-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Destaque sutil e elegante para call estratégica */
.funciona-card .call-destaque {
    margin-top: 0.8rem !important;
    padding-top: 0.8rem !important;
    border-top: 1px solid rgba(236, 72, 153, 0.15) !important;
    position: relative !important;
}

.funciona-card .call-destaque span {
    color: var(--text-light) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    display: block !important;
}

.funciona-card .call-destaque span::before {
    content: '✨ ';
    color: var(--secondary-color);
    margin-right: 0.25rem;
}

@media (max-width: 768px) {
    .perfil-consultoria {
        padding: 4rem 0;
    }

    .perfil-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .perfil-card {
        padding: 1.8rem 2rem;
    }
    
    .perfil-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .perfil-card h3 {
        font-size: 1.05rem;
    }
    
    .perfil-badge {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        padding: 0.35rem 0.9rem;
    }
}

/* ================== NOVAS SEÇÕES ================== */
/* Estatísticas Section */
.stats-section {
    background-color: #ec4899;
    color: #0f172a;
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0 100%);
    padding: 4rem 0;
    text-align: center;
}

.stats-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    margin: 1rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
}

/* Fale Diretamente Section */
.expert-section {
    background-color: #020617;
    padding: 4rem 0;
    color: #f1f5f9;
}

.expert-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.expert-image img {
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
}

.expert-content {
    flex: 1;
    min-width: 300px;
}

.expert-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.expert-content h2 span {
    color: #ec4899;
}

.expert-content p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.expert-features {
    margin: 1rem 0 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.feature-item h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.feature-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Botão WhatsApp Fixo */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 10px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 2px 10px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 4px 15px rgba(37, 211, 102, 0.5);
    }
}

/* Botão Voltar ao Topo */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4), 0 2px 10px rgba(236, 72, 153, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6), 0 4px 15px rgba(236, 72, 153, 0.5);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    
    .scroll-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
    }
    
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .expert-container {
        flex-direction: column;
    }
    .expert-image img {
        max-width: 100%;
    }
    
    /* Layout responsivo para funciona-wrapper */
    .funciona-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .funciona-image {
        position: relative;
        top: 0;
        order: 1;
    }
    
    .funciona-grid {
        order: 2;
        /* No mobile: 1 coluna */
        grid-template-columns: 1fr;
    }
}
