/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - QG Team Theme */
    --primary: #207952;
    --primary-dark: #1c3127;
    --primary-light: #2a9d6f;
    --accent: #207952;
    --accent-dark: #1c3127;
    
    --background: #1c3127;
    --background-alt: #243d34;
    --foreground: #ffffff;
    --foreground-muted: #b8c5bd;
    
    --card: #2d4a3f;
    --card-border: #3a5d50;
    
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(32, 121, 82, 0.2) 0%, rgba(28, 49, 39, 0.2) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(32, 121, 82, 0.4);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(32, 121, 82, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 121, 82, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(32, 121, 82, 0.08) 0%, transparent 40%);
    animation: floatingOrbs 20s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(32, 121, 82, 0.03) 50%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(32, 121, 82, 0.03) 50%, transparent 100%);
    pointer-events: none;
    z-index: -1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ============================================
   UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(32, 121, 82, 0.2) 0%, rgba(42, 157, 111, 0.2) 100%);
    color: #a8d5ba;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--foreground-muted);
    font-size: 1.125rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md), 0 0 20px rgba(32, 121, 82, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(32, 121, 82, 0.5);
}

.btn-secondary {
    background: rgba(32, 121, 82, 0.2);
    color: #a8d5ba;
    border: 1px solid var(--card-border);
}

.btn-secondary:hover {
    background: rgba(32, 121, 82, 0.3);
    border-color: #207952;
}

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

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

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes backgroundShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatingOrbs {
    0% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 40px);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, 20px);
        opacity: 0.4;
    }
    100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
}

.animate-fadeIn {
    opacity: 0;
}

.animate-fadeIn.visible {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slideLeft {
    opacity: 0;
}

.animate-slideLeft.visible {
    animation: slideLeft 0.8s ease forwards;
}

.animate-slideRight {
    opacity: 0;
}

.animate-slideRight.visible {
    animation: slideRight 0.8s ease forwards;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(28, 49, 39, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: var(--foreground-muted);
    font-weight: 500;
    transition: var(--transition-fast);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--foreground);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 0;
    background: var(--background);
    border-radius: var(--radius);
    margin-top: 1rem;
    box-shadow: var(--shadow-lg);
}

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

.nav-mobile a {
    padding: 0.75rem 1rem;
    color: var(--foreground-muted);
    font-weight: 500;
    transition: var(--transition-fast);
    border-radius: var(--radius);
}

.nav-mobile a:hover {
    background: var(--background-alt);
    color: var(--primary);
}

.nav-mobile .btn-cta {
    margin: 1rem;
    text-align: center;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--foreground-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--foreground-muted);
}

/* ============================================
   SOBRE SECTION
   ============================================ */
.sobre {
    padding: 6rem 0;
    background: var(--background-alt);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-image {
    position: relative;
}

.image-placeholder {
    aspect-ratio: 4/5;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--foreground-muted);
    border: 2px dashed var(--card-border);
}

.image-placeholder svg {
    stroke: var(--primary);
}

.profile-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
    animation: float 4s ease-in-out infinite;
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exp-text {
    font-size: 0.75rem;
    color: var(--foreground-muted);
    font-weight: 500;
}

.sobre-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.sobre-text p {
    color: var(--foreground-muted);
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.sobre-list {
    margin-top: 2rem;
}

.sobre-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--foreground);
    font-weight: 500;
}

.sobre-list svg {
    stroke: var(--success);
    flex-shrink: 0;
}

/* ============================================
   PLANOS SECTION
   ============================================ */
.planos {
    padding: 6rem 0;
}

.planos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.plano-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.05));
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

/* ============================================
   NOVO SISTEMA DE PRE\u00c7OS COM DESTAQUE
   ============================================ */
.plano-preco-destaque {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.opcao-preco-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(32, 121, 82, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.opcao-preco-card:hover {
    background: rgba(32, 121, 82, 0.15);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(32, 121, 82, 0.2);
}

.opcao-preco-card.destaque-quadri {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(32, 121, 82, 0.15) 0%, rgba(42, 157, 111, 0.1) 100%);
}

.preco-valor {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    text-shadow: 0 2px 8px rgba(32, 121, 82, 0.3);
    line-height: 1;
}

.preco-parcela-destaque {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--foreground-muted);
    order: -1;
    margin-bottom: 0.25rem;
}

.preco-vista {
    font-size: 0.85rem;
    color: var(--foreground-muted);
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
}

/* LEGACY - manter para compatibilidade */
.pricing-row {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.pricing-row .price {
    background: rgba(255,255,255,0.03);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-weight: 800;
    color: var(--foreground);
    font-size: 1rem;
}

.pricing-row .price-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 6px 18px rgba(32,121,82,0.25);
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.plano-card.featured {
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), var(--shadow-glow);
    transform: translateY(-6px);
}

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

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.ribbon {
    position: absolute;
    right: -14px;
    top: 12px;
    background: var(--primary);
    color: white;
    padding: 0.4rem 0.9rem;
    font-weight: 700;
    border-radius: 6px;
    transform: rotate(6deg);
    box-shadow: 0 6px 20px rgba(28,49,39,0.5);
}

.price-badge {
    position: absolute;
    right: 18px;
    top: 18px;
    background: rgba(0,0,0,0.35);
    color: var(--foreground);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.1rem;
}

.plano-header h3.plano-nome {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.plano-desc {
    color: var(--foreground-muted);
    font-size: 0.95rem;
}

.plano-features {
    margin-top: 1.5rem;
    display: grid;
    gap: 0.6rem;
    color: var(--foreground);
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.98rem;
}

.feature-check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    font-weight: 700;
}

.plano-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.btn-large {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
}

.btn-ghost {
    background: transparent;
    color: var(--foreground-muted);
    border: 1px solid rgba(255,255,255,0.04);
}

.compare-wrapper {
    margin-top: 2.75rem;
    background: rgba(0,0,0,0.15);
    padding: 1.25rem;
    border-radius: 12px;
}

.compare-title {
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--foreground);
}

.compare-table thead th {
    text-align: left;
    padding: 0.65rem 0.8rem;
    color: var(--foreground-muted);
}

.compare-table tbody td {
    padding: 0.75rem 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.compare-table .tick {
    color: var(--primary);
    font-weight: 800;
}

/* Grid layout for planos */
.planos-grid.professional {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    align-items: start;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1000px) {
    .planos-grid.professional { grid-template-columns: 1fr; }
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--background-alt);
}

.plano-nome {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--foreground);
}

.plano-desc {
    font-size: 0.9375rem;
    color: var(--foreground-muted);
    margin-top: 0.5rem;
}

.plano-preco {
    text-align: center;
    margin-bottom: 2rem;
}

.preco-old {
    text-decoration: line-through;
    color: var(--foreground-muted);
    font-size: 0.875rem;
}

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

.moeda {
    font-size: 1.25rem;
    font-weight: 600;
}

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

.periodo {
    color: var(--foreground-muted);
    font-size: 0.875rem;
}

.plano-features {
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--background-alt);
}

.plano-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--foreground);
    font-size: 1rem;
}

.plano-features svg {
    stroke: var(--primary);
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.plano-card .btn {
    width: 100%;
}

.plano-opcoes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    margin-top: auto;
}

.opcao-preco {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--background-alt);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.opcao-preco:hover {
    border-color: var(--primary);
    background: rgba(0, 188, 212, 0.05);
}

.opcao-periodo {
    font-size: 0.85rem;
    color: var(--foreground-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.opcao-preco .btn {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.garantia {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    max-width: 600px;
    margin: 0 auto;
}

.garantia svg {
    stroke: var(--success);
    flex-shrink: 0;
}

.garantia h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.garantia p {
    color: var(--foreground-muted);
    font-size: 0.9375rem;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
    padding: 4rem 0;
}

.como-funciona .section-header { max-width: 900px; margin: 0 auto 2rem; }

.how-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.how-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.03));
    border: 1px solid rgba(255,255,255,0.04);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.how-number {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    background: var(--gradient-primary);
    margin-bottom: 0.75rem;
}

.how-item h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
}

.how-item p {
    color: var(--foreground-muted);
    margin: 0;
}

@media (max-width: 900px) {
    .how-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESULTADOS SECTION
   ============================================ */
.resultados {
    padding: 6rem 0;
    background: var(--background-alt);
    overflow: hidden;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 0 -1rem;
    padding: 1rem;
}

/* Swiper overrides for slides */
.swiper {
    padding: 1rem 0;
}
.swiper .swiper-wrapper { display: flex; align-items: stretch; }
.swiper-slide {
    width: auto;
    flex-shrink: 0;
}

.resultado-single {
    position: relative;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 0.75rem;
    box-shadow: var(--shadow-md);
}

.resultado-img-single {
    height: auto;
    max-width: 100%;
    border-radius: var(--radius);
    display: block;
}

.resultado-nome {
    text-align: center;
    margin-top: 0.75rem;
    font-size: 0.8125rem;
    color: var(--foreground-muted);
    font-weight: 500;
}

/* ============================================
   CONFIRMAÇÃO CTA
   ============================================ */
.confirmation-cta {
    margin-top: 3rem;
    text-align: center;
}

.confirmation-box {
    background: linear-gradient(135deg, rgba(32, 121, 82, 0.2) 0%, rgba(42, 157, 111, 0.15) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.confirmation-content {
    flex: 1;
    text-align: left;
}

.confirmation-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.confirmation-content p {
    color: var(--foreground-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .confirmation-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .confirmation-content {
        text-align: center;
    }

    .confirmation-content h3 {
        font-size: 1.25rem;
    }

    .confirmation-box .btn {
        width: 100%;
    }

    /* Pre\u00e7os em mobile */
    .plano-preco-destaque {
        grid-template-columns: 1fr;
    }

    .preco-valor {
        font-size: 1.8rem;
    }

    .preco-parcela {
        font-size: 0.9rem;
    }
}

/* ============================================
   BENEFICIOS SECTION
   ============================================ */
.beneficios {
    padding: 6rem 0;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.beneficio-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.beneficio-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-hero);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon {
    background: var(--gradient-primary);
}

.beneficio-icon svg {
    stroke: var(--primary);
    transition: var(--transition);
}

.beneficio-card:hover .beneficio-icon svg {
    stroke: white;
}

.beneficio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.beneficio-card p {
    color: var(--foreground-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================
   DEPOIMENTOS SECTION
   ============================================ */
.depoimentos {
    padding: 6rem 0;
    background: var(--background-alt);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: var(--card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

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

.depoimento-texto {
    color: var(--foreground);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.autor-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.autor-nome {
    display: block;
    font-weight: 600;
    color: var(--foreground);
}

.autor-plano {
    font-size: 0.8125rem;
    color: var(--foreground-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d1f17;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 1rem 0;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-brand .logo-text {
    color: white;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto 3rem;
    }
    
    .plano-card.featured {
        transform: none;
    }
    
    .plano-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .depoimentos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sobre-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .sobre-text {
        text-align: center;
    }
    
    .sobre-text h2 {
        font-size: 1.75rem;
    }
    
    .sobre-list {
        text-align: left;
        max-width: 400px;
        margin: 2rem auto 0;
    }
    
    .plano-opcoes {
        grid-template-columns: 1fr;
    }
    
    .beneficios-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .garantia {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .valor {
        font-size: 2.5rem;
    }
    
    .experience-badge {
        right: 0;
    }
}
