/* =========================================
   RESET E VARIÁVEIS GERAIS
   ========================================= */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #D24E04;
    color: #FAFAFA;
    overflow-x: hidden;
}

/* Utilitários de Cores da Marca */
.bg-brand-orange { background-color: #D24E04; }
.bg-brand-dark { background-color: #C26200; }
.text-brand-orange { color: #D24E04; }

/* =========================================
   ANIMAÇÕES
   ========================================= */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
    70% { box-shadow: 0 0 10px 15px rgba(255, 255, 255, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0), 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
}

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

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.fade-in-section {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

.cta-pulse {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    animation: pulse-glow 2.5s infinite ease-out;
}

/* =========================================
   COMPONENTES: CARDS GERAIS
   ========================================= */
.card {
    background-color: #be4702;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
    color: #FAFAFA;
}

.card:hover {
    background-color: #FAFAFA;
    color: #111111;
    transform: translateY(-8px) scale(1.02);
}

.feature-icon-wrapper {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-icon-wrapper:hover {
    transform: scale(1.15) rotate(-8deg);
    background-color: #FAFAFA !important;
    color: #D24E04 !important;
}

/* =========================================
   SEÇÃO DE PREÇOS (CARDS E SLIDER)
   ========================================= */
.pricing-section { position: relative; }

.pricing-card {
    background-color: #be4702;
    background-image: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 60%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px rgba(210, 78, 4, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #FAFAFA;
    border-radius: 1.25rem;
    flex: 0 0 auto;
    width: 300px;
    user-select: none;
}

.pricing-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 35px rgba(255, 255, 255, 0.35);
    background-color: #FAFAFA;
    color: #111111;
    z-index: 10;
}

.btn-subscribe {
    background-color: #FAFAFA;
    color: #D24E04;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.pricing-card:hover .btn-subscribe {
    background-color: #D24E04;
    color: #FAFAFA;
    box-shadow: 0 0 15px rgba(210, 78, 4, 0.5);
}

.pricing-card ul svg { transition: color 0.4s ease; }
.pricing-card:hover ul svg { color: #D24E04; }

/* Slider Container Logic */
.pricing-slider-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 2rem 1rem;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.pricing-slider-container.active {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.pricing-slider-container::-webkit-scrollbar { height: 8px; }
.pricing-slider-container::-webkit-scrollbar-track { background: rgba(255,255,255,0.1); border-radius: 4px; }
.pricing-slider-container::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.5); border-radius: 4px; }
.snap-align { scroll-snap-align: center; }

/* Setas do Slider */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.9);
    color: #D24E04;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.slider-arrow:hover { background-color: #FAFAFA; transform: translateY(-50%) scale(1.1); }
.arrow-left { left: 0; }
.arrow-right { right: 0; }

@media (max-width: 640px) {
    .arrow-left { left: -10px; }
    .arrow-right { right: -10px; }
}

/* =========================================
   BOTÃO WHATSAPP
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
    background-color: #20BD5A;
}

.whatsapp-pulse { animation: pulse-green 2s infinite; }

@media (max-width: 640px) {
    .whatsapp-btn { bottom: 1.5rem; right: 1.5rem; padding: 10px 20px; }
    .whatsapp-text { display: none; }
    .whatsapp-btn:hover .whatsapp-text { display: inline-block; }
}