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

:root {
    --primary: #f9b717;
    --secondary: #231f20;
    --white: #fff4e4;
    --accent-1: #faa21b;
    --accent-2: #a06305;
    --dark-1: #323232;
    --dark-2: #1d1d1d;
    --dark-3: #212121;
    --dark-4: #303030;
    --text-light: #ffffff;
    --text-muted: #b0b0b0;
    --transition: all 0.3s ease;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-2);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(35, 31, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-link.cta {
    background: var(--primary);
    color: var(--secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link.cta:hover {
    background: var(--accent-1);
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 50%, var(--secondary) 100%);
    z-index: -2;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f9b717" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    touch-action: pan-y;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(35, 31, 32, 0.9) 0%, rgba(35, 31, 32, 0.7) 50%, rgba(35, 31, 32, 0.9) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 244, 228, 0.3);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.2);
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 244, 228, 0.2);
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 5s linear;
}

.hero-slide.active .progress-bar {
    width: 100%;
}

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(249, 183, 23, 0.4);
}

.btn-primary:hover {
    background: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 183, 23, 0.6);
}

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

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 3rem;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--dark-3);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--dark-4);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(249, 183, 23, 0.2);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.valores-list {
    list-style: none;
    color: var(--text-muted);
}

.valores-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.valores-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Planos */
.plano-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plano-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.plano-preco {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 1.5rem 0;
}

/* Vantagens */
.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.vantagem-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-3);
    border-radius: 15px;
    border: 1px solid var(--dark-4);
    transition: var(--transition);
}

.vantagem-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.vantagem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vantagem-title {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Formulário */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--dark-3);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid var(--dark-4);
}

.form_input_color {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form_input_background {
    background: var(--dark-4);
    border: 1px solid var(--dark-1);
    color: var(--text-light);
    padding: 1rem;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.form_input_background:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 183, 23, 0.2);
}

.form_input_background::placeholder {
    color: var(--text-muted);
}

.form_submit_background {
    background: var(--primary);
    border: none;
    color: var(--secondary);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
}

.form_submit_background:hover {
    background: var(--accent-1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 183, 23, 0.4);
}

.clieent-nickname {
    display: none !important;
}

textarea.form_input_background {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--dark-4);
}

.footer-title {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.footer-text a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-weight: 500;
}

.footer-text a:hover {
    color: var(--accent-1);
    text-shadow: 0 0 15px rgba(249, 183, 23, 0.6);
    transform: translateY(-1px);
}

.footer-text a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-1) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(249, 183, 23, 0.5);
    border-radius: 1px;
}

.footer-text a:hover::after {
    transform: scaleX(1);
}

.footer-text a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(249, 183, 23, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-text a:hover::before {
    width: 150%;
    height: 150%;
    opacity: 0;
    transition: all 0.6s ease;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1001;
}

/* Ícone Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    line-height: 1;
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 100px;
    right: 30px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 15px rgba(249, 183, 23, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 183, 23, 0.5);
}

.back-to-top i {
    line-height: 1;
}

/* Formulario Page Styles */
.formulario-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.formulario-main {
    flex: 1;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    position: relative;
}

.formulario-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f9b717" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.6;
}

/* Form Section */
.form-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 2rem;
}

/* Trigger Section */
.trigger-section {
    position: relative;
    z-index: 1;
}

.trigger-content {
    background: var(--dark-3);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--dark-4);
}

.trigger-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 2rem;
}

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

.trigger-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--dark-4);
    border-radius: 15px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.trigger-item:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.trigger-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trigger-item h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.trigger-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Urgency Box */
.urgency-box {
    background: linear-gradient(135deg, var(--accent-1) 0%, var(--primary) 100%);
    color: var(--secondary);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(249, 183, 23, 0.3);
}

.urgency-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.urgency-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.countdown-text {
    font-size: 1.2rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

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

/* Thank You Page Styles */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank-you-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    position: relative;
}

.thank-you-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f9b717" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--dark-3);
    border-radius: 20px;
    border: 1px solid var(--dark-4);
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.thank-you-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thank-you-info {
    background: var(--dark-4);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary);
}

.thank-you-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.thank-you-steps {
    list-style: none;
    text-align: left;
    color: var(--text-muted);
}

.thank-you-steps li {
    padding: 0.5rem 0;
    font-size: 1rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    min-width: 200px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }