/* CSS Variables & Design System */
:root {
    --primary: #0C2955;
    --primary-light: #1e40af;
    --accent: #DC2626;
    --accent-hover: #b91c1c;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --gradient-hero: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

    --container-width: 1200px;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --radius-sm: 0.5rem;
    --radius-md: 1rem;

    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spin-animation {
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.125rem;
    padding: 1rem 3rem;
    border-radius: 50px;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 0.5rem 0;
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: center;
}

/* Hero */
.hero {
    padding: var(--spacing-lg) 0;
    background: var(--gradient-hero);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.highlight {
    color: var(--primary);
    border-bottom: 3px solid rgba(220, 38, 38, 0.2);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-video-card {
    border-radius: var(--radius-md);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg);
    transition: 0.3s;
    background: black;
    aspect-ratio: 9/16;
    max-width: 300px;
    margin: auto;
}

.hero-video-card:hover {
    transform: rotate(0deg) scale(1.02);
}

/* Client Videos */
.client-videos-section {
    padding: var(--spacing-lg) 0;
    background: white;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-muted);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.video-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 9/16;
}

/* Builder */
.builder-section {
    padding: var(--spacing-lg) 0;
    background: var(--primary);
    color: white;
}

.builder-section .section-title {
    color: white;
    text-align: center;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.builder-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-top: 2rem;
}

.builder-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.step-card {
    background: white;
    color: var(--text-main);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.step-num {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Form Fields */
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.input-field {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 16px;
    /* Prevents zoom on iOS */
    transition: all 0.3s ease;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(12, 41, 85, 0.1);
}

.size-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.size-option {
    flex: 1;
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-card {
    border: 2px solid #e2e8f0;
    padding: 1.5rem;
    text-align: center;
    border-radius: var(--radius-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.size-option input:checked+.size-card {
    border-color: var(--primary);
    background: #eff6ff;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(12, 41, 85, 0.15);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent);
    color: white;
    font-size: 0.6rem;
    padding: 2px 6px;
    animation: pulse 2s infinite;
}

.btn-outline {
    border: 2px dashed #cbd5e1;
    background: #f8fafc;
    color: var(--text-muted);
    width: 100%;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    transition: 0.2s;
    border-radius: var(--radius-sm);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #eff6ff;
}

.summary-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    color: var(--text-main);
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.summary-total {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 1rem 0;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
}

.divider {
    height: 1px;
    background: #e2e8f0;
    margin: 1rem 0;
}

/* Box Section */
.box-section {
    padding: var(--spacing-lg) 0;
}

.box-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.box-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 10px;
}

.dot.blue {
    background: #2563EB;
}

.dot.yellow {
    background: #EAB308;
}

.dot.green {
    background: #22c55e;
}

.free-shipping-badge {
    display: inline-block;
    background: #22c55e;
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-top: 1rem;
    font-size: 0.8rem;
}

/* Features, How it Works, Testimonials, FAQ */
.features-section,
.how-it-works-section,
.testimonials-section,
.faq-section {
    padding: var(--spacing-lg) 0;
}

.how-it-works-section {
    background: #f8fafc;
}

.features-grid,
.steps-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card,
.step-item,
.testimonial-card {
    text-align: center;
}

.feature-icon,
.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
}

.bg-yellow-light {
    background: #FEF3C7;
    color: #D97706;
}

.bg-blue-light {
    background: #DBEAFE;
    color: #2563EB;
}

.bg-red-light {
    background: #FEE2E2;
    color: #DC2626;
}

.step-circle {
    background: var(--accent);
    color: white;
}

.step-circle.blue {
    background: #2563EB;
}

.step-circle.yellow {
    background: #EAB308;
}

.testimonial-card,
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: #f8fafc;
}

.stars {
    color: #EAB308;
    margin-bottom: 1rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 1.1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #f1f5f9;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-payment {
    text-align: center;
    margin: 2rem 0;
    border-top: 1px solid #cbd5e1;
    padding-top: 2rem;
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Header Actions */
.header-content {
    justify-content: space-between;
    align-items: center;
}

.cart-trigger {
    position: relative;
    cursor: pointer;
    color: var(--primary);
    margin-right: 1rem;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* (After some lines...) */

/* Modal Backdrop */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    padding: 2rem 0;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1rem;
}

.item-details h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.item-details p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.item-price {
    font-weight: bold;
    color: var(--primary);
}

/* Checkout Premium Styles */

/* Progress Bar */
.checkout-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 0 1rem;
}

.checkout-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: 1;
}

.progress-step {
    z-index: 2;
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    color: #cbd5e1;
    font-weight: bold;
    margin: 0 4rem;
    transition: all 0.3s ease;
    position: relative;
}

.progress-step.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    box-shadow: 0 0 0 4px rgba(12, 41, 85, 0.1);
}

.progress-step::after {
    content: attr(data-label);
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    white-space: nowrap;
    color: #94a3b8;
    font-weight: 500;
}

.progress-step.active::after {
    color: var(--primary);
    font-weight: 700;
}

/* Inputs com Ícones */
.input-group-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 18px;
    pointer-events: none;
}

.input-field-icon {
    padding-left: 2.8rem !important;
}

/* Payment Cards */
.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.payment-card-label {
    cursor: pointer;
    position: relative;
}

.payment-card-label input {
    display: none;
}

.payment-card {
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.payment-card:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.payment-card-label input:checked+.payment-card {
    border-color: var(--primary);
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(12, 41, 85, 0.1);
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.payment-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

.payment-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.badge-pix {
    background: #dcfce7;
    color: #166534;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
    font-weight: 700;
}

/* Check circle animation */
.check-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    margin-left: auto;
    position: relative;
}

.check-circle::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.2s;
}

.payment-card-label input:checked+.payment-card .check-circle {
    border-color: var(--primary);
}

.payment-card-label input:checked+.payment-card .check-circle::after {
    transform: translate(-50%, -50%) scale(1);
}

.remove-item {
    color: var(--accent);
    cursor: pointer;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary);
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 2rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: flex-start;
    /* Changed from center to allow top alignment for scrolling */
    overflow-y: auto;
    /* Enable vertical scrolling */
    padding: 2rem 0;
    /* Add vertical padding */
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    max-width: 400px;
    width: 90%;
    margin: auto;
    /* Center horizontally */
    animation: slideDown 0.3s;
    position: relative;
    /* Context for children */
}

.modal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #22c55e;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal.active {
    display: flex;
}

/* Responsive */
@media(max-width: 992px) {

    .hero-content,
    .builder-grid,
    .box-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-video-card {
        margin: 2rem auto;
    }

    .videos-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid,
    .steps-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media(max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .size-options {
        flex-direction: column;
    }

    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Social Trust Section */
.trust-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 500px;
    width: 100%;
}

/* --- MOBILE OPTIMIZATIONS --- */
@media (max-width: 768px) {

    /* Stack Builder Layout */
    .builder-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Stack Hero Content */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    /* Better File Upload Feedback */
    #upload-file-names {
        word-break: break-all;
        font-size: 0.85rem;
        line-height: 1.4;
    }

    /* Adjust Modal Padding */
    .modal-content {
        padding: 1.5rem 1rem;
        width: 95%;
        margin: 1rem auto;
    }
}

/* --- PREMIUM PIX UI --- */
.close-modal-x {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    transition: 0.2s;
    line-height: 1;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal-x:hover {
    background: #f1f5f9;
    color: #ef4444;
}

.btn-text {
    background: none;
    border: none;
    color: #64748b;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1.5rem;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: 0.2s;
    width: 100%;
}

.btn-text:hover {
    color: #0f172a;
}

/* Size Selection Styling (Premium) */
.size-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.size-option {
    flex: 1;
    cursor: pointer;
}

.size-option input {
    display: none;
}

.size-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2.2rem 1rem 1.5rem 1rem;
    /* Increased top padding for badge space */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.size-option input:checked+.size-card {
    border-color: var(--primary);
    background-color: #f0f9ff;
    box-shadow: 0 4px 12px rgba(12, 41, 85, 0.15);
    transform: translateY(-4px);
}

.scale-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #64748b;
    font-weight: 600;
}

.size-main {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.size-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    background: #e2e8f0;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin-top: 0.5rem;
}

.size-option input:checked+.size-card .size-main {
    color: #000080;
    /* Deep Blue */
}

.size-option input:checked+.size-card .size-price {
    background: #000080;
    color: white;
}

.size-card .badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #EAB308;
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

.trust-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #1a237e;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.trust-logo-circle img {
    max-width: 100%;
    object-fit: contain;
}

.trust-handle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.trust-stats {
    margin-bottom: 2rem;
}

.trust-stats h3 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.trust-stats p {
    color: #6b7280;
    font-size: 0.9rem;
}

.btn-instagram {
    background: #1a237e;
    /* Matches Screenshot Navy Blue */
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    transition: transform 0.2s;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    background: #151b60;
}

.trust-badge-green {
    background: #dcfce7;
    color: #166534;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.trust-cnpj-box {
    background: #eff6ff;
    border: 1px solid #dbeafe;
    border-radius: 12px;
    padding: 1.5rem;
}

.trust-cnpj-box h4 {
    color: #1e40af;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.cnpj-text {
    color: #374151;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.trust-verified {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    color: #16a34a;
    /* Green check color */
    font-size: 0.9rem;
    font-weight: 600;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Green Info Banner */
.green-msg-banner {
    background-color: #16a34a;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem auto 2rem;
    max-width: 800px;
    font-weight: 500;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* New Order Bump Design */
.bump-card {
    border: 2px dashed #000080;
    /* Dark blue dashed border */
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    font-family: 'Inter', sans-serif;
}

.bump-header {
    background-color: #000060;
    /* Deep Blue */
    color: white;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.bump-body {
    padding: 1.5rem;
    background: white;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bump-checkbox-wrapper {
    padding-top: 0.5rem;
}

.bump-content {
    flex: 1;
}

.bump-row-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.bump-image {
    width: 60px;
    height: auto;
}

.bump-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.bump-price-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bump-price-new {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
}

.bump-price-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.9rem;
}

.bump-off {
    color: #16a34a;
    font-weight: 700;
    font-size: 0.9rem;
}

.bump-desc {
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.bump-btn {
    background-color: #F97316;
    /* Orange */
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s;
    font-size: 1rem;
}

.bump-btn:hover {
    background-color: #ea580c;
}

/* Custom Big Radio Circle for Bump */
.custom-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #000080;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    /* Fixed missing position for pseudo-element */
}

/* Hidden real input */
#order-bump-check {
    display: none;
}

/* Checked state logic handled via JS toggling class or just strict label sibling stuff */
input:checked+.custom-radio::after {
    content: '';
    width: 14px;
    height: 14px;
    background: #000080;
    border-radius: 50%;
    display: block;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    /* Hidden by default */
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    z-index: 999;
    transition: bottom 0.3s ease-in-out;
    display: none;
    /* Only show on mobile */
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }

    /* Top Trust Bar - Mobile Optimized */
    header>div:first-child {
        font-size: 0.65rem !important;
        padding: 0.4rem 0.5rem !important;
        line-height: 1.2;
    }

    header>div:first-child i {
        width: 8px !important;
        height: 8px !important;
    }
}

.sticky-cta.visible {
    bottom: 0;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.sticky-info {
    display: flex;
    flex-direction: column;
}

.sticky-price {
    font-weight: 800;
    color: #0C2955;
    font-size: 1.2rem;
}

.sticky-old {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.8rem;
}

.sticky-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    flex-grow: 1;
    text-align: center;
    border-radius: 50px;
    background: var(--accent);
    border: none;
    color: white;
    font-weight: 700;
}

/* Urgency Bar */
.urgency-bar {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 1000;
    position: relative;
    width: 100%;
}

/* --- Premium Lead Magnet Modal --- */
.lead-modal-header {
    background: #0C2955;
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    text-align: center;
    position: relative;
    margin: -2rem -2rem 1.5rem -2rem;
}

.lead-badge {
    background: #DC2626;
    color: white;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4);
    animation: pulse 2s infinite;
}

.lead-modal-title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: white;
}

.lead-value-prop {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.lead-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
    text-align: left;
}

.lead-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
    color: #1e293b;
    background: #f8fafc;
}

.lead-input:focus {
    border-color: #0C2955;
    background: white;
    box-shadow: 0 0 0 4px rgba(12, 41, 85, 0.1);
    outline: none;
}

.lead-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 20px;
    height: 20px;
}

.lead-btn {
    width: 100%;
    padding: 1rem;
    background: #DC2626;
    color: white;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.lead-btn:hover {
    transform: translateY(-2px);
    background: #b91c1c;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
}

.lead-footer-link {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
}

.lead-footer-link:hover {
    color: #64748b;
}

.coupon-box {
    background: #eff6ff;
    border: 2px dashed #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.coupon-code {
    font-size: 2rem;
    font-weight: 800;
    color: #0C2955;
    letter-spacing: 2px;
    margin: 0.5rem 0;
    font-family: monospace;
}

/* --- Premium Order Bump (Multi-Option) --- */
.bump-container {
    border: 2px dashed #0C2955;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
}

.bump-header {
    background: #0C2955;
    color: white;
    padding: 0.8rem 1rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bump-options {
    padding: 1rem;
}

.bump-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.bump-option:hover {
    border-color: #0C2955;
}

.bump-option.selected {
    border-color: #0C2955;
    background: #eff6ff;
    box-shadow: 0 4px 12px rgba(12, 41, 85, 0.1);
}

.bump-radio {
    accent-color: #0C2955;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.bump-info {
    flex: 1;
    text-align: left;
}

.bump-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    display: block;
}

.bump-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}

.bump-price-block {
    text-align: right;
}

.bump-price {
    font-weight: 800;
    color: #DC2626;
    display: block;
    font-size: 1.1rem;
}

.bump-old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.8rem;
}

.bump-tag {
    background: #22c55e;
    color: white;
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
    margin-left: 0.5rem;
}

/* ================================================
   BUILDER SECTION - OPTIMIZED FOR OLDER USERS
   ================================================ */

/* Larger Step Numbers */
.step-card .step-num {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0C2955, #1e40af);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    box-shadow: 0 4px 10px rgba(12, 41, 85, 0.3);
    flex-shrink: 0;
}

/* Larger Step Titles */
.step-card .step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0C2955;
    display: flex;
    align-items: center;
    margin-bottom: 1.3rem;
}

/* Larger Labels */
.builder-config label {
    font-size: 1.05rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.6rem;
    display: block;
}

/* Larger Input Fields */
.builder-config .input-field {
    font-size: 1.05rem;
    padding: 15px 18px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.builder-config .input-field:focus {
    border-color: #0C2955;
    box-shadow: 0 0 0 4px rgba(12, 41, 85, 0.12);
    outline: none;
}

.builder-config .input-field::placeholder {
    color: #9ca3af;
    font-size: 1rem;
}

/* Size Cards - Larger and Clearer */
.size-card {
    padding: 1.3rem;
    border: 3px solid #e5e7eb;
    border-radius: 14px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    background: white;
}

.size-option input:checked+.size-card {
    border-color: #0C2955;
    background: linear-gradient(135deg, #f0f4ff, #e0e7ff);
    box-shadow: 0 6px 16px rgba(12, 41, 85, 0.18);
}

.size-card .size-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0C2955;
    display: block;
    margin: 0.6rem 0;
}

.size-card .size-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #16a34a;
}

.size-card .scale-label {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

/* Larger Upload Button */
.file-upload-btn {
    font-size: 1.05rem;
    padding: 16px 24px;
    border: 2px dashed #0C2955;
    background: #f8fafc;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #0C2955;
    font-weight: 600;
    width: 100%;
}

.file-upload-btn:hover {
    background: #eff6ff;
    border-style: solid;
}

/* Summary Card - Clearer */
.summary-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0C2955;
    margin-bottom: 1.2rem;
}

.summary-row {
    font-size: 1.05rem;
    padding: 0.9rem 0;
}

.summary-total {
    font-size: 1.4rem;
    font-weight: 700;
}

/* Larger Add to Cart Button */
#add-to-cart-btn {
    font-size: 1.15rem;
    padding: 18px 28px;
    border-radius: 12px;
    font-weight: 700;
    margin-top: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Green Banner - More Visible */
.green-msg-banner {
    font-size: 1.05rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.2rem;
    line-height: 1.5;
}

/* Urgency Bar - Compact */
.urgency-bar {
    background: linear-gradient(90deg, #0C2955, #1e3a8a);
    color: white;
    text-align: center;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .urgency-bar {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }
}