.elementor-kit-1606{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;background-color:#F8F7F4;}.elementor-kit-1606 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1330px;}.e-con{--container-max-width:1330px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Adicionar em Elementor → Configurações → CSS Personalizado */

/* Variáveis de cor Atlas */
:root {
    --azul-atlas: #1B365D;
    --laranja-energia: #FF8C42;
    --verde-sucesso: #28A745;
    --vermelho-urgencia: #DC3545;
}

/* Estilo dos formulários */
.checkout-form input {
    border: 2px solid #F8F9FA;
    border-radius: 8px;
    padding: 12px;
    transition: all 0.3s ease;
}

.checkout-form input:focus {
    border-color: var(--laranja-energia);
    box-shadow: 0 0 0 3px rgba(255, 140, 66, 0.1);
}

/* Countdown timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.time-unit {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

/* Botão de compra */
.buy-button {
    background: linear-gradient(135deg, var(--laranja-energia), #e67c3a);
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* Responsivo */
@media (max-width: 768px) {
    .checkout-container {
        flex-direction: column;
    }
    
    .checkout-column {
        order: -1;
    }
}/* End custom CSS */