/* ============================================
   CONSÓRCIO ADEMICOM - LANDING PAGE CSS
   Cores: Vermelho, Cinza Escuro, Dourado, Branco
   ============================================ */

/* ---- VARIÁVEIS E RESET ---- */
:root {
    --red: #D32F2F;
    --red-dark: #B71C1C;
    --red-light: #EF5350;
    --red-bg: #FFEBEE;
    --dark: #1A1A2E;
    --dark-2: #16213E;
    --dark-3: #0F3460;
    --gold: #FFB300;
    --gold-light: #FFD54F;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-500: #9E9E9E;
    --gray-700: #616161;
    --gray-900: #212121;
    --white: #FFFFFF;
    --green-whatsapp: #25D366;
    --instagram-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-900);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- BOTÕES ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(211, 47, 47, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--red);
}

.btn-white {
    background: var(--white);
    color: var(--red);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.15);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

.btn-nav {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

/* Pulse Animation */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
    100% { box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* ---- HEADER / NAVBAR ---- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 15px 0;
}

#header.scrolled {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    color: var(--white);
    z-index: 1001;
}

.logo-icon {
    background: var(--red);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.logo-text {
    font-weight: 300;
    letter-spacing: -0.5px;
}

.logo-text strong {
    font-weight: 700;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list li a {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-list li a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.close-menu {
    display: none;
}

.menu-hamburger {
    display: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 1001;
}

/* ---- HERO SECTION ---- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    background: rgba(211, 47, 47, 0.15);
    color: var(--red-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(211, 47, 47, 0.3);
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.highlight {
    color: var(--red-light);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--gold);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--red-light);
    display: block;
}

.stat-suffix {
    font-size: 20px;
    font-weight: 700;
    color: var(--red-light);
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 4px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Card / Form */
.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-xl);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 700;
    font-size: 18px;
}

.hero-card-header i {
    color: var(--red);
    font-size: 22px;
}

.hero-form .form-group {
    margin-bottom: 16px;
}

.hero-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.hero-form input,
.hero-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-300);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: var(--gray-100);
    color: var(--gray-900);
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--red);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.hero-form .btn-block {
    margin-top: 8px;
    padding: 14px;
    font-size: 16px;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 12px;
}

.form-note i {
    margin-right: 4px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--white);
    padding: 30px 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-items {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.trust-item i {
    font-size: 20px;
    color: var(--red);
}

/* ---- SECTION COMMON ---- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--red-bg);
    color: var(--red);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-700);
    max-width: 600px;
    margin: 0 auto;
}

/* ---- SOBRE SECTION ---- */
.sobre {
    padding: 80px 0;
    background: var(--white);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sobre-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.sobre-text p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    padding: 8px 0;
    font-size: 15px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list li i {
    color: var(--red);
    font-size: 18px;
}

.sobre-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    display: flex;
    gap: 18px;
    align-items: start;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.info-card-icon.red {
    background: var(--red-bg);
    color: var(--red);
}

.info-card-icon.dark {
    background: #E8EAF6;
    color: var(--dark-3);
}

.info-card-icon.gold {
    background: #FFF8E1;
    color: var(--gold);
}

.info-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.info-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ---- COMO FUNCIONA ---- */
.como-funciona {
    padding: 80px 0;
    background: var(--gray-100);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.step-icon {
    font-size: 36px;
    color: var(--red);
    margin-bottom: 15px;
    margin-top: 10px;
}

.step h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    color: var(--red);
    font-size: 24px;
    padding-top: 50px;
}

/* ---- PLANOS ---- */
.planos {
    padding: 80px 0;
    background: var(--white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plano-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.plano-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
}

.plano-card.featured {
    border-color: var(--red);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.plano-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plano-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--red);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.plano-card.featured .plano-badge {
    background: var(--gold);
    color: var(--dark);
}

.plano-icon {
    font-size: 48px;
    color: var(--red);
    margin-bottom: 15px;
}

.plano-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.plano-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.plano-preco {
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.preco-label {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preco-valor {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
    margin: 5px 0;
}

.preco-parcela {
    font-size: 14px;
    color: var(--gray-700);
}

.preco-parcela strong {
    color: var(--dark);
}

.plano-features {
    text-align: left;
    margin-bottom: 25px;
}

.plano-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.plano-features li i {
    color: var(--red);
    font-size: 14px;
}

/* ---- VANTAGENS ---- */
.vantagens {
    padding: 80px 0;
    background: var(--gray-100);
}

/* Comparação */
.comparacao {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}

.comparacao-col {
    padding: 30px;
    border-radius: var(--radius-lg);
}

.consorcio-col {
    background: linear-gradient(135deg, var(--red-bg) 0%, #fff 100%);
    border: 2px solid var(--red);
}

.consorcio-col h3 {
    color: var(--red);
    font-size: 18px;
    margin-bottom: 15px;
}

.consorcio-col h3 i {
    margin-right: 8px;
}

.consorcio-col li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.consorcio-col li i {
    color: var(--red);
}

.financiamento-col {
    background: var(--gray-200);
    border: 2px solid var(--gray-300);
}

.financiamento-col h3 {
    color: var(--gray-700);
    font-size: 18px;
    margin-bottom: 15px;
}

.financiamento-col h3 i {
    margin-right: 8px;
    color: var(--gray-500);
}

.financiamento-col li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: line-through;
}

.financiamento-col li i {
    color: var(--gray-500);
}

.comparacao-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    align-self: center;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

/* Vantagens Grid */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.vantagem-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.vantagem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.vantagem-icon {
    font-size: 40px;
    color: var(--red);
    margin-bottom: 15px;
}

.vantagem-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.vantagem-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.cta-content p strong {
    color: var(--gold-light);
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- DEPOIMENTOS ---- */
.depoimentos {
    padding: 80px 0;
    background: var(--white);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.depoimento-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--red);
}

.depoimento-stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.depoimento-stars i {
    margin-right: 2px;
}

.depoimento-card > p {
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--gray-200);
    padding-top: 15px;
}

.depoimento-avatar {
    font-size: 42px;
    color: var(--red);
}

.depoimento-autor strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
}

.depoimento-autor span {
    font-size: 13px;
    color: var(--gray-500);
}

/* ---- FAQ ---- */
.faq {
    padding: 80px 0;
    background: var(--gray-100);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--red-bg);
    color: var(--red);
}

.faq-question i {
    transition: var(--transition);
    color: var(--red);
    font-size: 14px;
}

.faq-question.active {
    background: var(--red);
    color: var(--white);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 22px 18px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 300px;
}

/* ---- CONTATO ---- */
.contato {
    padding: 80px 0;
    background: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contato-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--gray-200);
    background: var(--white);
}

.contato-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contato-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.whatsapp-card .contato-card-icon {
    background: #E8F5E9;
    color: var(--green-whatsapp);
}

.whatsapp-card:hover {
    border-color: var(--green-whatsapp);
    background: #E8F5E9;
}

.whatsapp-card:hover .contato-card-icon {
    background: var(--green-whatsapp);
    color: var(--white);
}

.instagram-card .contato-card-icon {
    background: #FCE4EC;
    color: #E1306C;
}

.instagram-card:hover {
    border-color: #E1306C;
    background: #FCE4EC;
}

.instagram-card:hover .contato-card-icon {
    background: var(--instagram-gradient);
    color: var(--white);
}

.phone-card .contato-card-icon {
    background: var(--red-bg);
    color: var(--red);
}

.phone-card:hover {
    border-color: var(--red);
    background: var(--red-bg);
}

.phone-card:hover .contato-card-icon {
    background: var(--red);
    color: var(--white);
}

.contato-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contato-card p {
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contato-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 6px;
}

.contato-link i {
    transition: var(--transition);
}

.contato-card:hover .contato-link i {
    transform: translateX(5px);
}

/* ---- FOOTER ---- */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 18px;
}

.footer-col > p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.6);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: var(--red);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--red-light);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--red);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ---- WHATSAPP FLOATING ---- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: var(--green-whatsapp);
    color: var(--white);
    width: auto;
    height: 56px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: float-bounce 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 26px;
}

.whatsapp-float-text {
    font-size: 14px;
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   RESPONSIVO
   ============================================ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .plano-card.featured {
        transform: none;
    }

    .plano-card.featured:hover {
        transform: translateY(-8px);
    }

    .comparacao {
        grid-template-columns: 1fr;
    }

    .comparacao-vs {
        margin: 0 auto;
    }

    .vantagens-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .step-arrow {
        display: none;
    }

    .steps {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu */
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 15px;
        transition: right 0.4s ease;
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
    }

    .nav-list.open {
        right: 0;
    }

    .nav-list li a {
        font-size: 18px;
        padding: 12px 20px;
    }

    .close-menu {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        color: var(--white);
        cursor: pointer;
    }

    .menu-hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-number {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .vantagens-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col h4::after {
        margin: 8px auto 0;
    }

    .whatsapp-float-text {
        display: none;
    }

    .whatsapp-float {
        width: 56px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }

    .hero-card {
        padding: 20px;
    }

    .trust-items {
        gap: 20px;
    }

    .trust-item span {
        font-size: 12px;
    }

    .container {
        padding: 0 15px;
    }
}