/* ==========================================================================
   Design System & Variáveis (Casa da Costureira de Valor™ - Inspirado em Costura & Companhia)
   ========================================================================== */
:root {
    /* Cores do Projeto de Referência */
    --primary: #e44e84;                    /* Rosa Principal */
    --primary-dark: #8d2d52;               /* Vinho Borgonha */
    --secondary: #816944;                  /* Ouro/Bronze */
    --bg-light: #fafafa;
    --bg-pink: #fff0f5;                    /* Fundo Rosa Claro */
    --text-dark: #1f1f1f;
    --text-light: #ffffff;
    --color-green: #2e7d32;                /* Verde Sucesso */
    --color-green-bg: #e8f5e9;             /* Verde Fundo */
    
    /* Fontes do Projeto de Referência */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    
    /* Efeitos de Vidro */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.6);
    
    /* Sombras */
    --shadow-soft: 0 10px 30px rgba(141, 45, 82, 0.08);
    --shadow-strong: 0 20px 40px rgba(141, 45, 82, 0.15);
    --shadow-glow: 0 15px 35px rgba(228, 78, 132, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 28px;
    
    --container-width: 1140px;
}

/* ==========================================================================
   Resets & Estilos Globais
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background: radial-gradient(circle at top right, #ffffff, var(--bg-light));
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    margin-bottom: 1.2rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ==========================================================================
   Animações e Efeitos de Movimento
   ========================================================================== */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-16px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 78, 132, 0.7); }
    70% { transform: scale(1.04); box-shadow: 0 0 0 15px rgba(228, 78, 132, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(228, 78, 132, 0); }
}

.pulse-anim {
    animation: pulse 2.5s infinite;
}

.floating-elements {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 2;
}

.floating-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    animation: float 4s ease-in-out infinite;
    text-align: center;
}

.delay-1 {
    animation-delay: 2s;
}

/* ==========================================================================
   Botões Premium
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.15rem;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.btn-accent {
    background: linear-gradient(135deg, var(--secondary) 0%, #6a5637 100%);
    color: var(--text-light);
}

.btn-accent:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 30px rgba(129, 105, 68, 0.3);
}

.btn-secondary {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
    transform: translateY(-4px);
}

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

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--text-light);
    transform: translateY(-3px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Header & Nav
   ========================================================================== */
.main-header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-dark);
}

.icon-logo {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dark);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary);
    opacity: 1;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 50px 0 40px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top right, #ffffff, var(--bg-pink) 70%, #fff0f5 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(141, 45, 82, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(141, 45, 82, 0.02) 1px, transparent 1px),
        linear-gradient(to right, rgba(141, 45, 82, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(141, 45, 82, 0.05) 1px, transparent 1px);
    background-size: 10px 10px, 10px 10px, 50px 50px, 50px 50px;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(228, 78, 132, 0.08);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 12px;
    border: 1px solid rgba(228, 78, 132, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 800;
    line-height: 1.25;
}

.hero-title strong {
    color: var(--primary);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 12px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-horizontal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 0px;
}

.feat-item-h {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(141, 45, 82, 0.08);
    box-shadow: var(--shadow-soft);
}

.bullet-h {
    color: var(--primary);
    font-weight: bold;
}

/* ==========================================================================
   2) Bloco de Identificação (WhatsApp Chat Simulator)
   ========================================================================== */
.identification-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
}

.section-title {
    font-size: 2.5rem;
    max-width: 860px;
    margin: 0 auto 16px auto;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 48px auto;
}

.interactive-pains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto 48px auto;
}

.pains-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pain-chat-btn {
    background: var(--bg-light);
    border: 1px solid rgba(141, 45, 82, 0.1);
    border-radius: var(--radius-md);
    padding: 18px 24px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    outline: none;
}

.pain-chat-btn:hover {
    border-color: var(--primary);
    transform: translateX(6px);
    background-color: var(--bg-pink);
}

.pain-chat-btn.active-pain {
    border-color: var(--primary);
    background-color: var(--bg-pink);
    color: var(--primary-dark);
    font-weight: 700;
}

/* Phone Mockup Styling */
.phone-mockup {
    border: 12px solid var(--text-dark);
    border-radius: 40px;
    height: 520px;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    box-shadow: var(--shadow-strong);
    background-color: #efeae2;
    overflow: hidden;
}

.phone-speaker {
    height: 6px;
    width: 60px;
    background-color: var(--text-dark);
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 10;
}

.phone-screen {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.chat-header {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 24px 16px 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
}

.chat-user-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.chat-name {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.chat-status {
    color: #d49d3f; /* Gold VIP status */
    font-weight: 600;
    font-size: 0.7rem;
}

.chat-actions svg {
    width: 18px;
    height: 18px;
    opacity: 0.8;
}

.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #efeae2;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1.5px);
    background-size: 12px 12px;
}

.message-bubble {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    animation: bubbleIn 0.3s ease-out forwards;
}

.message-bubble p {
    margin-bottom: 4px;
}

.message-time {
    display: block;
    font-size: 0.65rem;
    text-align: right;
    color: var(--text-muted);
}

.message-bubble.received {
    background-color: var(--bg-white);
    align-self: flex-start;
    border-top-left-radius: 0;
    color: var(--text-dark);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.message-bubble.sent {
    background-color: #fce4ec; /* Soft pink-rose for VIP chat */
    align-self: flex-end;
    border-top-right-radius: 0;
    color: var(--primary-dark);
    box-shadow: 0 1px 1px rgba(141, 45, 82, 0.1);
    border: 1px solid rgba(228, 78, 132, 0.15);
}

.message-bubble.system-message {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.7rem;
    align-self: center;
    border-radius: 12px;
    padding: 4px 8px;
    box-shadow: none;
}

.chat-input-bar {
    background-color: #f0f0f0;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.chat-input-placeholder {
    background-color: var(--bg-white);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.8rem;
    color: var(--text-dark);
    opacity: 0.6;
    flex-grow: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary-dark);
    color: var(--text-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.chat-send-btn svg {
    width: 14px;
    height: 14px;
    transform: translate(1px, -0.5px);
}

@keyframes bubbleIn {
    from { opacity: 0; transform: translateY(12px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.emotional-closing {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-top: 48px;
    border-top: 1px solid rgba(228, 78, 132, 0.15);
    padding-top: 24px;
}

/* ==========================================================================
   3) Bloco de Transformação (Antes / Depois)
   ========================================================================== */
.transformation-section {
    padding: 100px 0;
    background-color: var(--bg-pink);
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

.transform-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(228, 78, 132, 0.1);
}

.card-badge {
    position: absolute;
    top: -16px;
    left: 48px;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-red {
    background-color: var(--color-red-bg);
    color: var(--color-red);
    border: 1px solid var(--color-red);
}

.badge-green {
    background-color: var(--color-green-bg);
    color: var(--color-green);
    border: 1px solid var(--color-green);
}

.transform-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transform-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.transform-list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.transform-list li .icon-x {
    stroke: var(--color-red);
    stroke-width: 2.5;
}

.transform-list li .icon-check {
    stroke: var(--color-green);
    stroke-width: 2.5;
    fill: none;
}

.transform-list li div {
    font-size: 1rem;
}

/* ==========================================================================
   4) Bloco de Autoridade e Método
   ========================================================================== */
.authority-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    border-top: 1px solid rgba(228, 78, 132, 0.15);
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
}

.authority-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.auth-image-box {
    display: flex;
    justify-content: center;
}

.author-avatar-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.avatar-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--primary);
    margin: 0 auto 24px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-dark);
}

.icon-user {
    width: 80px;
    height: 80px;
}

.avatar-info h4 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.avatar-info p {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.auth-content {
    display: flex;
    flex-direction: column;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.auth-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.auth-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    opacity: 0.85;
    margin-bottom: 32px;
}

.evolution-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.step-details h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.step-details p {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

.auth-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--primary-dark);
    border-left: 3px solid var(--primary);
    padding-left: 20px;
    font-weight: 600;
}

/* ==========================================================================
   5) Cards dos 3 Níveis & Seletor de Abas (Mobile)
   ========================================================================== */

/* Plan Mobile Selector Hidden by Default */
.plans-tab-selector {
    display: none;
    justify-content: center;
    background-color: rgba(141, 45, 82, 0.05);
    border: 1px solid rgba(141, 45, 82, 0.1);
    padding: 6px;
    border-radius: 50px;
    margin: 20px auto 0 auto;
    max-width: 340px;
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 16px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #68203c 100%);
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(141, 45, 82, 0.2);
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: -5px;
    align-items: stretch;
    width: 100%;
}

.plan-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(228, 78, 132, 0.15);
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(228, 78, 132, 0.35);
}

.plan-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    width: fit-content;
}

.level-1-badge { background-color: var(--color-green-bg); color: var(--color-green); border: 1px solid rgba(46, 125, 50, 0.15); }
.level-2-badge { background-color: rgba(228, 78, 132, 0.1); color: var(--primary-dark); border: 1px solid rgba(141, 45, 82, 0.15); }
.level-3-badge { background-color: rgba(129, 105, 68, 0.1); color: var(--secondary); border: 1px solid rgba(129, 105, 68, 0.15); }

.plan-title {
    font-size: 1.85rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.look-subtitle {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--secondary); /* Dourado de alto valor */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -4px;
    margin-bottom: 12px;
}

.look-subtitle-sm {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: -4px;
    margin-bottom: 8px;
    text-align: center;
}

.plan-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 28px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 8px;
}

.plan-price .currency {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--primary-dark);
    margin-right: 4px;
}

.plan-price .price-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--primary-dark);
    line-height: 1;
}

.plan-price .cents {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.plan-price .period {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
    margin-left: 6px;
}

.price-anchor {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 32px;
}

.plan-body {
    flex-grow: 1;
    margin-bottom: 40px;
}

.plan-promise {
    font-size: 0.98rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

.plan-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
}

.plan-features-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 3;
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-features-list li.bold-feat {
    font-weight: 700;
    color: var(--primary-dark);
}

.plan-features-list li.bold-feat svg {
    stroke: var(--primary-dark);
}

.plan-footer {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.conversion-phrase {
    font-size: 0.85rem;
    color: var(--text-dark);
    opacity: 0.7;
    font-style: italic;
    line-height: 1.4;
}

/* Recommended plan styling */
.plan-card.recommended-plan {
    border: 2.5px solid var(--primary);
    box-shadow: var(--shadow-glow);
    background: rgba(255, 255, 255, 0.92);
}

.plan-card.recommended-plan:hover {
    box-shadow: 0 24px 50px rgba(228, 78, 132, 0.25);
    border-color: var(--primary);
}

.popular-tag {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}

/* ==========================================================================
   6) Bloco de Comparação
   ========================================================================== */
.comparison-section {
    padding: 100px 0;
    background-color: var(--bg-white);
    border-top: 1px solid rgba(228, 78, 132, 0.15);
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin: 48px 0 24px 0;
    border-radius: var(--radius-md);
    border: 1px solid rgba(228, 78, 132, 0.15);
    box-shadow: var(--shadow-soft);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
    text-align: left;
    background-color: var(--bg-white);
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(228, 78, 132, 0.1);
}

.comparison-table th {
    font-family: var(--font-main);
    font-weight: 700;
    color: var(--primary-dark);
    background-color: var(--bg-pink);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table td.feat-name {
    font-weight: 700;
    color: var(--text-dark);
}

.comparison-table td.check-cell {
    text-align: center;
}

.comparison-table td.check-cell .table-icon.check {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
    stroke-width: 3;
    fill: none;
    display: inline-block;
}

.comparison-table td.empty-cell {
    text-align: center;
    color: var(--text-dark);
    opacity: 0.3;
}

.comparison-hint {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 24px;
}

/* ==========================================================================
   Simulador de Lucro Interativo (Glass card style)
   ========================================================================== */
.calculator-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.calculator-card.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 56px;
    box-shadow: var(--shadow-soft);
    max-width: 860px;
    margin: 0 auto;
}

.calc-header {
    margin-bottom: 44px;
    text-align: center;
}

.calc-badge {
    background-color: var(--color-green-bg);
    color: var(--color-green);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: inline-block;
    border: 1px solid var(--color-green);
}

.calc-header h3 {
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.calc-header p {
    color: var(--text-dark);
    opacity: 0.8;
    font-size: 1rem;
}

.calc-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input-group {
    margin-bottom: 32px;
}

.input-group label {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 18px;
    display: block;
}

.range-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(228, 78, 132, 0.15);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.range-value {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--primary);
    min-width: 60px;
    text-align: right;
}

.cost-parameters {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1.5px dashed rgba(228, 78, 132, 0.15);
    padding-top: 24px;
}

.param-box {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.param-label {
    color: var(--text-dark);
    opacity: 0.7;
}

.param-val {
    font-weight: 700;
}

.param-val.highlight-green {
    color: var(--color-green);
}

/* Results Display */
.calc-results {
    background-color: var(--bg-pink);
    border: 1px solid rgba(228, 78, 132, 0.1);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
}

.result-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.res-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
    opacity: 0.8;
    font-weight: 700;
}

.res-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--primary-dark);
}

.highlighted-result {
    border-top: 1.5px dashed rgba(228, 78, 132, 0.2);
    padding-top: 20px;
}

.highlighted-result .res-val {
    color: var(--primary);
    font-size: 2.85rem;
}

.calc-roi-comparison {
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

.calc-disclaimer {
    font-size: 0.72rem;
    color: var(--text-dark);
    opacity: 0.65;
    text-align: center;
    margin-top: 12px;
    line-height: 1.3;
}

/* ==========================================================================
   7) Bloco de Prova Social
   ========================================================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin-top: 48px;
}

.testimonial-card.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.test-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
}

.text-avatar {
    background-color: var(--bg-pink);
    color: var(--primary-dark);
    border: 1px solid rgba(228, 78, 132, 0.2);
}

.user-name {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.user-meta {
    font-size: 0.75rem;
    color: var(--text-dark);
    opacity: 0.6;
    font-weight: 600;
}

.test-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

/* ==========================================================================
   8) Bloco de Objeções
   ========================================================================== */
.objections-section {
    padding: 100px 0;
    background-color: var(--bg-pink);
    border-top: 1px solid rgba(228, 78, 132, 0.15);
}

.objections-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0 auto;
}

.objection-item {
    background-color: var(--bg-white);
    border: 1px solid rgba(228, 78, 132, 0.1);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

.obj-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.obj-header svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    stroke-width: 2.5;
    fill: none;
    flex-shrink: 0;
}

.obj-header h4 {
    font-size: 1.25rem;
    color: var(--primary-dark);
}

.obj-body p {
    font-size: 0.98rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ==========================================================================
   9) Bloco de Garantia / Segurança
   ========================================================================== */
.security-section {
    padding: 60px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
}

.security-card.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 44px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 36px;
}

.security-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.security-icon svg {
    width: 36px;
    height: 36px;
}

.security-content h3 {
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.security-content p {
    font-size: 0.98rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* ==========================================================================
   10) Bloco de Preço & Ancoragem
   ========================================================================== */
.pricing-anchoring-section {
    padding: 100px 0;
    background-color: var(--bg-pink);
}

.pricing-headline-anchor {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    max-width: 620px;
    margin: 16px auto 48px auto;
}

.pricing-summary-boxes {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 30px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.summary-box.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.summary-box h4 {
    font-size: 1.35rem;
}

.summary-price {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.summary-price span {
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.6;
    font-weight: 500;
}

.summary-box.summary-highlighted {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    position: relative;
}

.summary-highlighted .box-badge {
    position: absolute;
    top: -16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 4px 16px;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* ==========================================================================
   11) Bloco de Urgência Ética
   ========================================================================== */
.urgency-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    border-bottom: 1px solid rgba(228, 78, 132, 0.15);
}

.urgency-section h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 1.25rem;
    max-width: 720px;
    margin: 0 auto 36px auto;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.5;
}

/* ==========================================================================
   12) FAQ — Acordeão de Dúvidas
   ========================================================================== */
.faq-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 48px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    border: 1px solid rgba(228, 78, 132, 0.15);
    border-radius: var(--radius-md);
    background-color: var(--bg-pink);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: transparent;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.faq-toggle-icon {
    font-size: 1.65rem;
    color: var(--primary-dark);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
}

.faq-answer p {
    font-size: 0.98rem;
    color: var(--text-dark);
    opacity: 0.8;
    padding-bottom: 24px;
}

.faq-item.active-faq {
    background-color: var(--bg-white);
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.faq-item.active-faq .faq-toggle-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-item.active-faq .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   13) Bloco Final & Footer
   ========================================================================== */
.main-footer {
    padding: 100px 0 100px 0;
    background-color: #1a1a1a;
    color: #888;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 1px solid rgba(228, 78, 132, 0.15);
}

.footer-title {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-subtitle {
    font-size: 1.15rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 44px auto;
}

.footer-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 22px 44px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    max-width: 820px;
    box-shadow: var(--shadow-glow);
}

.footer-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow);
}

.footer-details {
    margin-top: 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

/* ==========================================================================
   Mobile Bottom Floating Nav Bar (Mobile-Only)
   ========================================================================== */
.mobile-quick-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(228, 78, 132, 0.15);
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    box-shadow: 0 -4px 12px rgba(141, 45, 82, 0.05);
}

.quick-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--text-dark);
    opacity: 0.6;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.quick-nav-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--text-dark);
    stroke-width: 2.25;
}

.quick-nav-item.active-nav {
    opacity: 1;
    color: var(--primary-dark);
}

.quick-nav-item.active-nav svg {
    stroke: var(--primary-dark);
    fill: var(--bg-pink);
}

/* ==========================================================================
   Responsividade (Telas menores)
   ========================================================================== */
@media (max-width: 992px) {
    .container {
        width: 100%;
        padding: 0 12px;
    }

    .hero-section {
        padding: 30px 0 40px 0;
    }

    .hero-container {
        gap: 16px;
        text-align: center;
    }
    
    .hero-intro {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 16px auto;
        line-height: 1.45;
    }

    .hero-features-horizontal {
        gap: 8px;
        margin-bottom: 5px;
    }

    .feat-item-h {
        padding: 4px 10px;
        font-size: 0.8rem;
    }
    
    .interactive-pains-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .transform-grid {
        grid-template-columns: 1fr;
    }
    
    .authority-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Responsive Plans Tab Switcher with 3D tactile relief buttons */
    .plans-tab-selector {
        display: flex;
        background-color: rgba(141, 45, 82, 0.02);
        border: 1px solid rgba(141, 45, 82, 0.05);
        border-radius: 16px;
        padding: 6px;
        margin: 12px auto 0 auto;
        width: 100%;
        max-width: 100%;
        gap: 8px; /* Separar botões de forma elegante */
    }
    
    .tab-btn {
        flex: 1;
        padding: 11px 4px;
        font-size: 0.68rem;
        font-weight: 700;
        color: var(--primary-dark);
        white-space: nowrap;
        text-align: center;
        letter-spacing: -0.1px;
        border: 1px solid rgba(141, 45, 82, 0.12);
        border-radius: 12px;
        background: linear-gradient(180deg, #ffffff 0%, #f7f5f6 100%);
        box-shadow: 0 4px 8px rgba(141, 45, 82, 0.06), 
                    inset 0 1px 0 #ffffff,
                    inset 0 -2px 0 rgba(141, 45, 82, 0.08);
        cursor: pointer;
        transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
        opacity: 0.9;
    }
    
    .tab-btn:not(.active):hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(141, 45, 82, 0.1), 
                    inset 0 1px 0 #ffffff,
                    inset 0 -2px 0 rgba(141, 45, 82, 0.1);
        border-color: var(--primary);
        opacity: 1;
    }
    
    .tab-btn:active {
        transform: translateY(1px);
        box-shadow: 0 1px 2px rgba(141, 45, 82, 0.05),
                    inset 0 1px 2px rgba(0, 0, 0, 0.08);
    }
    
    .tab-btn.active {
        opacity: 1;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-dark) 0%, #68203c 100%);
        color: var(--text-light);
        box-shadow: 0 6px 15px rgba(141, 45, 82, 0.25),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3),
                    inset 0 -2px 0 rgba(0, 0, 0, 0.2),
                    0 0 12px rgba(212, 157, 63, 0.45); /* Gold outline glow */
        border: 1px solid rgba(212, 157, 63, 0.6);
        transform: translateY(-1px);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        width: 100%;
        margin: 15px auto 0 auto;
    }
    
    .plan-card {
        display: none; /* Controlado pelo script.js */
        padding: 24px 20px;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-soft);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .plan-card.recommended-plan {
        padding-top: 38px; /* Evita que o popular-tag cubra o badge de Nível 2 */
    }
    
    .plan-card.active-tab-card {
        display: flex;
        animation: bubbleIn 0.4s ease-out;
    }
    
    .plan-card .plan-header {
        margin-bottom: 12px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .plan-card .plan-badge {
        margin-bottom: 8px;
        padding: 4px 10px;
        font-size: 0.7rem;
    }
    
    .plan-card .plan-title {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }
    
    .plan-card .plan-desc {
        display: none; /* Hide description on mobile to save space */
    }
    
    .plan-card .plan-price {
        margin-bottom: 4px;
        align-items: baseline;
    }
    
    .plan-card .plan-price .price-val {
        font-size: 2.4rem;
    }
    
    .plan-card .price-anchor {
        margin-bottom: 12px;
        font-size: 0.8rem;
    }
    
    .plan-card .plan-body {
        margin-bottom: 16px;
    }
    
    .plan-card .plan-promise {
        font-size: 0.85rem;
        margin-bottom: 12px;
        text-align: center;
    }
    
    .plan-card .plan-features-list {
        gap: 8px;
    }
    
    .plan-card .plan-features-list li {
        font-size: 0.82rem;
        gap: 8px;
    }
    
    .plan-card .plan-features-list li svg {
        width: 16px;
        height: 16px;
    }
    
    .plan-card .plan-footer {
        gap: 10px;
    }
    
    .plan-card .plan-footer .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .plan-card .conversion-phrase {
        font-size: 0.78rem;
        margin-top: 4px;
    }
    
    .popular-tag {
        top: -12px;
        padding: 4px 14px;
        font-size: 0.7rem;
    }
    
    .pricing-summary-boxes {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .summary-box.summary-highlighted {
        transform: scale(1);
    }
    
    .calc-body {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 48px auto 0 auto;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 64px; /* Espaço para barra flutuante mobile */
    }
    
    .mobile-quick-nav {
        display: flex;
    }

    .hero-features-horizontal {
        display: none; /* Hide horizontal features on smaller mobile views */
    }
}

@media (max-width: 576px) {
    .main-header {
        padding: 12px 0;
    }
    
    .logo span {
        font-size: 1.15rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .main-header .btn {
        display: none;
    }
    
    .hero-section {
        padding: 15px 0 25px 0;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .tab-btn {
        padding: 8px 2px;
        font-size: 0.62rem;
        letter-spacing: -0.3px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .plan-card {
        padding: 20px 16px;
    }

    .plan-card.recommended-plan {
        padding-top: 34px;
    }
    
    .calculator-card {
        padding: 24px 16px;
    }
    
    .phone-mockup {
        height: 440px;
    }
}

/* ==========================================================================
   Layout de Plano Único (Nível 1 Exclusivo) & Ajustes de Visualização
   ========================================================================== */
.plans-grid.single-plan-layout {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 20px auto 0 auto;
}

/* Card Único (Nível 1) - Destaque com Borda Elegante e Glow */
.plans-grid.single-plan-layout .plan-card {
    border: 2.5px solid var(--primary) !important;
    box-shadow: var(--shadow-glow) !important;
    background: rgba(255, 255, 255, 0.94) !important;
}

.pricing-summary-boxes.single-plan-layout {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 30px auto 0 auto;
}

/* Ajustes no Celular para Jogar a Oferta mais para cima e visível */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 15px !important;
        padding-bottom: 25px !important;
    }
    .hero-intro .hero-title {
        margin-bottom: 8px !important;
        font-size: 1.85rem !important;
        line-height: 1.2 !important;
    }
    .hero-intro .hero-subtitle {
        margin-bottom: 12px !important;
        font-size: 0.95rem !important;
        line-height: 1.4 !important;
    }
    .plans-grid.single-plan-layout {
        margin-top: 10px !important;
        max-width: 440px !important;
    }
    .plan-card {
        padding: 20px 16px !important;
        border-radius: var(--radius-md) !important;
    }
    .plan-card .plan-header {
        margin-bottom: 8px !important;
    }
    .plan-card .plan-price .price-val {
        font-size: 2.2rem !important;
    }
    .plan-card .plan-body {
        margin-bottom: 12px !important;
    }
    .plan-card .plan-features-list {
        gap: 6px !important;
    }
    .plan-card .plan-features-list li {
        font-size: 0.8rem !important;
        line-height: 1.35 !important;
    }
    .plan-card .plan-footer {
        gap: 8px !important;
    }
    .plan-card .plan-footer .btn {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
    }
}

@media (min-width: 992px) {
    .hero-section {
        padding: 60px 0 70px 0;
    }
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }
    .hero-intro {
        text-align: left;
        max-width: 580px;
        margin: 0;
        flex: 1;
    }
    .hero-intro .hero-title {
        text-align: left;
    }
    .hero-intro .hero-subtitle {
        text-align: left;
        margin-left: 0;
    }
    .hero-features-horizontal {
        justify-content: flex-start;
    }
    .plans-grid.single-plan-layout {
        margin: 0;
        flex: 0 0 450px;
        width: 100%;
        max-width: 450px;
    }
}
