/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de Cores Elegante */
    --primary-color: #f8c8dc;
    --primary-dark: #f5a4c7;
    --secondary-color: #d4af37;
    --accent-color: #ffd7e8;
    --dark-color: #2d2d2d;
    --light-color: #ffffff;
    --bg-light: #fef5f9;
    --bg-white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --text-lighter: #999999;
    --border-color: #f0e6ed;
    --shadow-sm: 0 2px 10px rgba(248, 200, 220, 0.1);
    --shadow-md: 0 4px 20px rgba(248, 200, 220, 0.15);
    --shadow-lg: 0 8px 30px rgba(248, 200, 220, 0.2);
    --gradient-primary: linear-gradient(135deg, #f8c8dc 0%, #ffd7e8 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f4e5b8 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(248, 200, 220, 0.95) 0%, rgba(255, 215, 232, 0.95) 100%);
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Transições */
    --transition-fast: all 0.3s ease;
    --transition-smooth: all 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   MODAL DE VERIFICAÇÃO DE IDADE
======================================== */
.modal {
    display: flex;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(45, 45, 45, 0.98);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.5s ease;
}

.modal-content {
    background: var(--gradient-primary);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease;
}

.modal-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.modal-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 10px;
}

.modal-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 20px !important;
    margin-bottom: 30px !important;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.modal-buttons button {
    flex: 1;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
    min-width: 180px;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--dark-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--dark-color);
    color: var(--light-color);
}

.modal-privacy {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 25px;
    font-style: italic;
}

/* ========================================
   HEADER/NAVBAR
======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-fast);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

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

.logo i {
    color: var(--secondary-color);
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-dark);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-primary);
    padding-top: 100px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--bg-white) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.2;
    color: var(--dark-color);
    margin-bottom: 25px;
    font-weight: 700;
}

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

.hero-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-cta, .btn-outline {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-cta {
    background: var(--gradient-gold);
    color: var(--dark-color);
    box-shadow: var(--shadow-md);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--secondary-color);
    font-size: 20px;
}

/* ========================================
   SECTIONS COMUNS
======================================== */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 20px auto;
    border-radius: 2px;
}

.section-description {
    font-size: 17px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   SEÇÃO SOBRE
======================================== */
.sobre {
    background: var(--bg-light);
}

.sobre-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.sobre-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

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

.sobre-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 35px;
    color: var(--dark-color);
}

.sobre-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.sobre-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

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

.sobre-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sobre-text strong {
    color: var(--dark-color);
}

/* ========================================
   SEÇÃO PLANOS
======================================== */
.planos {
    background: var(--bg-white);
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plano-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-fast);
}

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

.plano-card.featured {
    background: var(--gradient-primary);
    border-color: var(--secondary-color);
    border-width: 3px;
}

.plano-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.plano-badge.popular {
    background: linear-gradient(135deg, #ff6b9d 0%, #ffa07a 100%);
    color: var(--light-color);
}

.plano-badge.vip {
    background: linear-gradient(135deg, #9b59b6 0%, #e74c3c 100%);
    color: var(--light-color);
}

.plano-badge.best {
    background: linear-gradient(135deg, #16a085 0%, #27ae60 100%);
    color: var(--light-color);
}

.plano-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 25px;
    font-size: 45px;
    color: var(--dark-color);
}

.plano-card.featured .plano-icon {
    background: var(--gradient-gold);
}

.plano-title {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.plano-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.plano-price {
    margin: 30px 0;
}

.price-from {
    display: block;
    font-size: 13px;
    color: var(--text-lighter);
    margin-bottom: 5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
}

.plano-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.plano-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plano-features i {
    color: #27ae60;
    font-size: 18px;
}

.btn-plano {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.btn-plano:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-plano i {
    font-size: 20px;
}

/* ========================================
   SEÇÃO CADASTRO
======================================== */
.cadastro {
    background: var(--bg-light);
}

.cadastro-content {
    max-width: 900px;
    margin: 0 auto;
}

.cadastro-form {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group label i {
    color: var(--primary-dark);
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    font-family: var(--font-body);
    transition: var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(248, 200, 220, 0.1);
}

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 22px;
    width: 22px;
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition-fast);
}

.checkbox-label input:checked ~ .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
}

.checkmark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid var(--dark-color);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-text {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.link-privacidade {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
}

.link-privacidade:hover {
    text-decoration: underline;
}

.lgpd-notice {
    background: var(--gradient-primary);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.lgpd-notice i {
    font-size: 30px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.lgpd-notice strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 16px;
}

.lgpd-notice p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.7;
}

.btn-submit {
    width: 100%;
    padding: 18px 30px;
    background: var(--gradient-gold);
    color: var(--dark-color);
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
    font-family: var(--font-body);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cadastro-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.info-card i {
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   SEÇÃO PAGAMENTO
======================================== */
.pagamento {
    background: var(--bg-white);
}

.pagamento-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.pix-card {
    background: var(--gradient-primary);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-md);
}

.pix-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: var(--dark-color);
}

.pix-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.pix-card > p {
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
}

.pix-steps {
    list-style: none;
}

.pix-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--text-dark);
}

.step-number {
    width: 35px;
    height: 35px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark-color);
    flex-shrink: 0;
}

.payment-notice {
    background: var(--bg-white);
    border: 2px solid #e74c3c;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    gap: 20px;
}

.notice-icon {
    font-size: 35px;
    color: #e74c3c;
    flex-shrink: 0;
}

.notice-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.notice-content p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 10px;
}

.notice-highlight {
    margin-top: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.8;
}

.pagamento-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.payment-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.card-header i {
    font-size: 30px;
    color: #32bcad;
}

.card-header span {
    font-weight: 600;
    color: var(--dark-color);
}

.qr-placeholder {
    text-align: center;
    padding: 50px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    margin-bottom: 20px;
}

.qr-placeholder i {
    font-size: 80px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.qr-placeholder p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    color: var(--text-light);
    font-size: 14px;
}

.payment-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    background: var(--gradient-primary);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
    color: var(--dark-color);
}

.benefit-item i {
    font-size: 24px;
    color: var(--secondary-color);
}

/* ========================================
   SEÇÃO CONTATO
======================================== */
.contato {
    background: var(--bg-light);
}

.contato-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contato-card {
    background: var(--gradient-primary);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.whatsapp-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 50px;
    color: var(--light-color);
    animation: pulse 2s infinite;
}

.contato-card h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contato-card p {
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.7;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 17px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-whatsapp i {
    font-size: 24px;
}

.contato-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    box-shadow: var(--shadow-sm);
}

.info-item i {
    font-size: 30px;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.info-item h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--secondary-color);
    font-size: 32px;
}

.footer-text {
    color: var(--text-lighter);
    margin-bottom: 25px;
}

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

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

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-lighter);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

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

/* ========================================
   BOTÃO WHATSAPP FLUTUANTE
======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--light-color);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-fast);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ========================================
   BOTÃO SCROLL TO TOP
======================================== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--dark-color);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   ANIMAÇÕES
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* ========================================
   RESPONSIVIDADE
======================================== */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition-fast);
        box-shadow: var(--shadow-lg);
        padding: 30px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Hero */
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-cta, .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Planos */
    .planos-grid {
        grid-template-columns: 1fr;
    }
    
    /* Cadastro */
    .cadastro-form {
        padding: 30px 20px;
    }
    
    /* Pagamento */
    .pagamento-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .payment-notice {
        flex-direction: column;
    }
    
    /* Contato */
    .contato-content {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Botões Flutuantes */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 28px;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-top {
        bottom: 85px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .modal-content {
        padding: 35px 25px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .modal-buttons button {
        width: 100%;
    }
}