/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== NAVIGATION BAR ===== */
.nav-bar {
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu-btn, .nav-search-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #0b3c5d;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-menu-btn:hover, .nav-search-btn:hover {
    background: #f8f9fa;
}

.nav-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 18px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: urgency-pulse 3s infinite;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.urgency-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 4px;
    font-size: 16px;
}

.urgency-banner-subtitle {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.urgency-banner-icon {
    font-size: 18px;
    animation: urgency-bounce 1.5s infinite;
}

/* ===== ROUNDED BACKGROUND ===== */
.rounded-background {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 18px;
    padding: 16px 24px;
    margin: 16px 24px;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: pulse-urgency 2s infinite;
}

.rounded-background::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

.urgency-text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.urgency-icon {
    font-size: 20px;
    animation: bounce 1s infinite;
}

/* ===== QUIZ CONTAINER ===== */
.quiz-wizard-container {
    max-width: 430px;
    margin: 24px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
    padding: 24px 0;
}

.quiz-wizard-header {
    text-align: center;
    padding: 32px 24px 12px 24px;
}

.quiz-wizard-header img {
    width: 110px;
    margin-bottom: 10px;
}

.quiz-wizard-title {
    font-size: 22px;
    font-weight: 600;
    color: #0b3c5d;
    margin-bottom: 6px;
}

.quiz-wizard-desc {
    color: #1e6fa7;
    font-size: 15px;
    margin-bottom: 10px;
}

.quiz-progress-bar {
    width: 100%;
    background: #e0eaf6;
    height: 8px;
    border-radius: 6px;
    margin: 0 auto 18px auto;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #6ec1e4, #1e6fa7);
    width: 0%;
    transition: width 0.4s;
}

.quiz-step {
    display: none;
    padding: 0 24px;
}

.quiz-step.active {
    display: block;
}

.quiz-question {
    font-size: 19px;
    font-weight: 600;
    color: #0b3c5d;
    margin-bottom: 22px;
    text-align: center;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.quiz-option {
    background: #f8f9fa;
    border: 2px solid #e0eaf6;
    border-radius: 12px;
    padding: 18px 12px;
    font-size: 16px;
    color: #0b3c5d;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.quiz-option.selected, .quiz-option:hover {
    border-color: #1e6fa7;
    background: #e3f2fd;
}

.quiz-wizard-nav {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

.quiz-wizard-btn, .quiz-wizard-prev-btn {
    border: none;
    border-radius: 12px;
    padding: 15px 32px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.quiz-wizard-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: #fff;
    box-shadow: 0 2px 10px rgba(39,174,96,0.10);
}

.quiz-wizard-prev-btn {
    background: #f8f9fa;
    color: #0b3c5d;
}

.quiz-wizard-btn:disabled, .quiz-wizard-prev-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.quiz-wizard-footer {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 18px;
}

/* ===== OFFER CONTAINER ===== */
.offer-container {
    max-width: 430px;
    margin: 32px auto 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(30,111,167,0.10);
    padding: 32px 24px 24px 24px;
    position: relative;
}

/* ===== SLIDER CONTAINER ===== */
.slider-container {
    width: 100%;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 18px;
    position: relative;
    background: #f8f9fa;
    padding: 20px 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slider-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.slider-item img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.slider-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Botões de Navegação */
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #0b3c5d;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slider-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav-btn.prev {
    left: 10px;
}

.slider-nav-btn.next {
    right: 10px;
}

.slider-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%) scale(1);
}

/* Indicadores */
.slider-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 0 20px;
}

.slider-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(11, 60, 93, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.slider-indicator.active {
    background: #0b3c5d;
    transform: scale(1.2);
}

.slider-indicator:hover {
    background: rgba(11, 60, 93, 0.6);
    transform: scale(1.1);
}

/* Responsive adjustments for carousel */
@media (max-width: 768px) {
    .slider-container {
        padding: 15px 0;
    }
    
    .slider-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .slider-nav-btn.prev {
        left: 5px;
    }
    
    .slider-nav-btn.next {
        right: 5px;
    }
    
    .slider-indicators {
        margin-top: 12px;
        gap: 6px;
    }
    
    .slider-indicator {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        padding: 10px 0;
    }
    
    .slider-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .slider-indicators {
        margin-top: 10px;
        gap: 5px;
    }
    
    .slider-indicator {
        width: 5px;
        height: 5px;
    }
}

/* ===== E-COMMERCE ENHANCEMENTS ===== */

/* Shimmer Animation */
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Quantity Selector */
.quantity-controls {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.quantity-btn:hover {
    background: #e9ecef !important;
    color: #333 !important;
}

.quantity-btn:active {
    transform: scale(0.95);
}

#quantityInput:focus {
    outline: none;
    border: 2px solid #27ae60;
}

/* Trust Badges */
.trust-badges {
    transition: all 0.3s ease;
}

.trust-badges:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.trust-badge {
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: scale(1.05);
}

/* Social Proof */
.social-proof {
    animation: fadeInUp 0.6s ease-out;
}

/* Order Bump Minimal */
.order-bump-minimal {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.order-bump-minimal:hover {
    border-color: #27ae60;
    box-shadow: 0 4px 16px rgba(39,174,96,0.1);
}

.order-bump-minimal input[type="checkbox"]:checked + label {
    color: #27ae60 !important;
}

.order-bump-minimal input[type="checkbox"]:checked + label span {
    color: #27ae60 !important;
}

/* Product Rating */
.product-rating {
    animation: fadeInUp 0.6s ease-out;
}

.stars {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .quantity-selector {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .trust-badges {
        gap: 12px !important;
    }
    
    .trust-badge {
        min-width: 60px;
    }
    
    .social-proof {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .order-bump-minimal > div:first-child {
        flex-direction: column !important;
        gap: 8px !important;
    }
    
    .order-bump-minimal > div:first-child > div:last-child {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .quantity-controls {
        width: 100% !important;
        max-width: 200px;
    }
    
    .trust-badges {
        gap: 8px !important;
    }
    
    .trust-badge span {
        font-size: 9px !important;
    }
}

/* ===== DELIVERY CALCULATOR ===== */
.delivery-calculator {
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.delivery-calculator:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

#cepInput:focus {
    outline: none;
    border-color: #27ae60 !important;
    box-shadow: 0 0 0 3px rgba(39,174,96,0.1);
}

#calculateDeliveryBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255,107,53,0.4) !important;
}

#calculateDeliveryBtn:active {
    transform: translateY(0);
}

#calculateDeliveryBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

#deliveryResult {
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 4px 16px rgba(39,174,96,0.1);
}

#deliveryLoading {
    animation: fadeInUp 0.3s ease-out;
}

/* Responsive Delivery Calculator */
@media (max-width: 768px) {
    .delivery-calculator {
        padding: 16px !important;
    }
    
    .delivery-calculator > div:nth-child(2) {
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    #cepInput {
        min-width: 100% !important;
    }
    
    #calculateDeliveryBtn {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .delivery-calculator h3 {
        font-size: 16px !important;
    }
    
    .delivery-calculator p {
        font-size: 13px !important;
    }
    
    #deliveryResult {
        padding: 12px !important;
    }
    
    #deliveryResult > div {
        font-size: 13px !important;
    }
}

.offer-badge {
    background: #f39c12;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
    animation: pulse 2s infinite;
    text-align: center;
}

.kit-image {
    width: 100%;
    max-width: 320px;
    border-radius: 14px;
    margin: 0 auto 18px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.offer-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 10px;
    text-align: center;
}

.offer-description {
    font-size: 1.1rem;
    color: #1e6fa7;
    margin-bottom: 18px;
    text-align: center;
}

.kit-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 18px 14px;
    margin-bottom: 18px;
    color: #0b3c5d;
    font-size: 1rem;
}

.kit-details ul {
    margin: 0 0 0 18px;
    padding: 0;
}

.kit-details li {
    margin-bottom: 7px;
}

.price-container {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 18px;
    margin: 18px 0 10px 0;
    text-align: center;
}

.original-price {
    text-decoration: line-through;
    font-size: 18px;
    opacity: 0.7;
}

.final-price {
    font-size: 2rem;
    font-weight: 700;
    color: #f39c12;
    margin-left: 10px;
}

.shipping-info {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 10px;
}

.countdown {
    background: #2c3e50;
    color: white;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    margin-bottom: 18px;
    border-radius: 8px;
}

.countdown-timer {
    font-size: 22px;
    color: #e74c3c;
    font-weight: 700;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    /* mercado livre style */
    /* blue style */
    background: #2782fa;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    background: #276ceb;
    transform: translateY(-3px);
    color: #fff;
}

/* ===== ORDER BUMP ===== */
.order-bump {
    background: linear-gradient(135deg, #fff5e6, #ffe8cc);
    border: 3px solid #ff6b35;
    border-radius: 16px;
    padding: 24px 18px;
    margin: 24px 0 0 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    animation: pulse-glow 2s infinite;
}

.order-bump-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #d63031;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.order-bump-description {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 600;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.8);
    padding: 12px 16px;
    border-radius: 10px;
    border: 2px solid #27ae60;
}

.checkbox-container input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: #27ae60;
    transform: scale(1.2);
}

.checkbox-container label {
    font-weight: 600;
    color: #2d3436;
    font-size: 1rem;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loading-content {
    text-align: center;
    color: #0b3c5d;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #e0eaf6;
    border-top: 4px solid #1e6fa7;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loading-text {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.loading-subtext {
    font-size: 14px;
    color: #666;
}

/* ===== FOOTER ===== */
.footer-institucional {
    background: #0b3c5d;
    color: #fff;
    padding: 36px 0 0 0;
    font-size: 15px;
}

.footer-institucional .footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    padding: 0 16px;
}

.footer-institucional h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #6ec1e4;
}

.footer-institucional ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-institucional li {
    margin-bottom: 7px;
}

.footer-institucional .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-institucional .footer-social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e6fa7;
    font-size: 18px;
}

.footer-institucional .footer-bottom {
    text-align: center;
    color: #e0eaf6;
    font-size: 13px;
    margin-top: 32px;
    padding-bottom: 18px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
    background: #f8f9fa;
    padding: 20px 20px;
    text-align: center;
    border: 1px solid #e0eaf6;
    border-radius: 18px;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b3c5d;
    margin-bottom: 10px;
}

.newsletter-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e0eaf6;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s;
}

.newsletter-input:focus {
    border-color: #1e6fa7;
}

.newsletter-btn {
    background: linear-gradient(135deg, #1e6fa7, #0b3c5d);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.newsletter-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30,111,167,0.3);
}

/* ===== ANIMAÇÕES ===== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes urgency-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    }
    50% { 
        transform: scale(1.01);
        box-shadow: 0 6px 25px rgba(231, 76, 60, 0.6);
    }
}

@keyframes urgency-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) scale(1); }
    40% { transform: translateY(-2px) scale(1.1); }
    60% { transform: translateY(-1px) scale(1.05); }
}

@keyframes pulse-urgency {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

@keyframes slideInUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15); }
    50% { box-shadow: 0 12px 35px rgba(255, 107, 53, 0.25); }
}

@keyframes pulse-queue {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInDown {
    from { transform: translateX(-50%) translateY(-100%); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
    .offer-container {
        margin: 0 0 24px 0;
        border-radius: 0;
    }
    
    .footer-institucional .footer-content {
        flex-direction: column;
        gap: 18px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .nav-logo {
        width: 100px;
    }
    
    .quiz-wizard-container {
        margin: 0 0 24px 0;
        border-radius: 0;
    }
    
    .slider-container {
        margin-bottom: 20px;
    }
    
    .slider-item img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .quiz-question {
        font-size: 18px;
    }
    
    .quiz-option {
        padding: 15px;
    }
    
    .quiz-wizard-btn, .quiz-wizard-prev-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .hero-section h1 {
        font-size: 20px !important;
    }
    
    .hero-section p {
        font-size: 14px !important;
    }
    
    .benefits-section {
        padding: 20px 15px !important;
    }
    
    .benefits-section h2 {
        font-size: 20px !important;
    }
    
    .faq-section {
        padding: 20px 15px !important;
    }
    
    .faq-section h2 {
        font-size: 20px !important;
    }
    
    .slider-container {
        margin-bottom: 16px;
    }
    
    .slider-item img {
        max-width: 280px;
    }
} 