/* ===== RESET E VARIÁVEIS ===== */
:root {
    --laranja-principal: #F06000;
    --laranja-claro: #F08010;
    --vermelho-rosa: #F03030;
    --cinza-escuro: #6A6A6A;
    --cinza-claro: #BDBDBD;
    --fundo-branco: #F7F7F7;
    --branco-puro: #FFFFFF;
    --preto-texto: #1e1e2a;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--fundo-branco);
    color: var(--preto-texto);
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TIPOGRAFIA ===== */
.highlight {
    color: var(--laranja-principal);
}

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--laranja-principal);
    background: rgba(240, 96, 0, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 48px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
}

/* ===== NAVEGAÇÃO ===== */
.navbar {
    background: var(--branco-puro);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    color: var(--preto-texto);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--preto-texto);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--laranja-principal);
}

.btn-outline {
    border: 2px solid var(--laranja-principal);
    padding: 8px 20px;
    border-radius: 50px;
    background: transparent;
    color: var(--laranja-principal) !important;
}

.btn-outline:hover {
    background: var(--laranja-principal);
    color: white !important;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, var(--fundo-branco) 0%, white 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 96, 0, 0.1);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--cinza-escuro);
    margin-bottom: 32px;
    max-width: 500px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        max-width: 100%;
    }
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: var(--laranja-principal);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--laranja-claro);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--preto-texto);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--cinza-claro);
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--laranja-principal);
    color: var(--laranja-principal);
}

.btn-primary-outline {
    display: inline-block;
    background: transparent;
    color: var(--laranja-principal);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--laranja-principal);
    transition: all 0.2s;
    text-align: center;
}

.btn-primary-outline:hover {
    background: var(--laranja-principal);
    color: white;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--cinza-escuro);
}

/* Placeholder de imagem */
.image-placeholder {
    background: linear-gradient(135deg, var(--laranja-principal), var(--vermelho-rosa));
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder.has-video {
    background: #111827;
}

.hero-card-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #111827;
}

.drink-animation {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

.drink-icon {
    font-size: 4rem;
    animation: bounce 1s ease infinite alternate;
}

.machine-card {
    background: white;
    border-radius: 24px;
    padding: 20px;
    width: 200px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.machine-screen {
    background: var(--preto-texto);
    color: #00ff88;
    padding: 12px;
    border-radius: 12px;
    font-family: monospace;
    font-weight: bold;
    margin-bottom: 12px;
}

.machine-dose {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--laranja-principal);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes bounce {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-10px); }
}

/* ===== COMO FUNCIONA ===== */
.how-it-works {
    padding: 80px 0;
    background: var(--branco-puro);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--fundo-branco);
    border-radius: 24px;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--laranja-principal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-text {
    color: var(--cinza-escuro);
}

/* ===== BANNER DE URGÊNCIA ===== */
.urgency-banner {
    background: var(--vermelho-rosa);
    padding: 24px 0;
    text-align: center;
    color: white;
}

.urgency-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.urgency-icon {
    font-size: 1.8rem;
}

.urgency-text strong {
    background: rgba(255,255,255,0.2);
    padding: 4px 12px;
    border-radius: 50px;
}

.urgency-sub {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== DIFERENCIAIS ===== */
.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--branco-puro);
    padding: 32px 24px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--cinza-claro);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--laranja-principal);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--laranja-principal);
}

.feature-text {
    color: var(--cinza-escuro);
}

/* ===== PREÇOS ===== */
.pricing {
    padding: 80px 0;
    background: var(--branco-puro);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--fundo-branco);
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--cinza-claro);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--laranja-principal);
    transform: scale(1.02);
    background: white;
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--laranja-principal);
    color: white;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.pricing-badge {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.pricing-price {
    font-size: 1rem;
    color: var(--cinza-escuro);
    margin-bottom: 8px;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--laranja-principal);
}

.pricing-installment {
    font-size: 0.9rem;
    color: var(--cinza-escuro);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 0.95rem;
}

.pricing-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--cinza-escuro);
    margin-top: 24px;
}

/* ===== DEPOIMENTOS ===== */
.testimonials {
    padding: 80px 0;
    background: var(--fundo-branco);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: var(--branco-puro);
    padding: 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--laranja-principal);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--laranja-principal);
}

/* ===== CTA FINAL ===== */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--preto-texto) 0%, #2a2a35 100%);
}

.cta-card {
    background: var(--branco-puro);
    border-radius: 48px;
    padding: 48px 32px;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--cinza-escuro);
    margin-bottom: 32px;
}

.cta-warning {
    font-size: 0.9rem;
    color: var(--vermelho-rosa);
    font-weight: 600;
    margin-top: 24px;
}

/* ===== FORMULÁRIO LADO A LADO (estilo Caramelito) ===== */
.form-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0 1.5rem;
    text-align: left;
    align-items: stretch;
}

/* Coluna do formulário */
.form-col {
    background: #f9f9ff;
    border-radius: 24px;
    padding: 2rem;
    min-width: 0;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-subtitle {
    color: #666;
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 1.2rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #1a1a2e;
    font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--laranja-principal);
    box-shadow: 0 0 0 3px rgba(240, 96, 0, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--laranja-principal), var(--laranja-claro));
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
    line-height: 1.25;
    white-space: normal;
    word-break: normal;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 96, 0, 0.3);
    background: linear-gradient(135deg, var(--laranja-claro), var(--laranja-principal));
}

/* Coluna de informações de contato */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.info-text h4 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--laranja-principal);
    margin-bottom: 0.25rem;
}

.info-text h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.25rem;
}

.info-text h6 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cinza-escuro);
    margin-bottom: 1rem;
}

.info-text p {
    color: var(--cinza-escuro);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-text strong {
    color: var(--laranja-principal);
}

.contact-details {
    background: #f9f9ff;
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-item strong {
    color: var(--laranja-principal);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.contact-item div {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ===== RODAPÉ ===== */
.footer {
    background: var(--preto-texto);
    color: var(--cinza-claro);
    padding: 48px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo p {
    margin-top: 8px;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--cinza-claro);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--laranja-principal);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-card {
        padding: 32px 20px;
    }
    
    /* Responsividade do formulário lado a lado */
    .form-contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-title {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .form-subtitle {
        text-align: center;
    }
    
    .form-col {
        padding: 1.5rem;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 0.8rem;
    }
    
    .info-text {
        text-align: center;
    }
    
    .contact-details {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
    }
}
