/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.6;
    font-size: 16px;
}

/* Cores Oficiais da Caixa */
:root {
    --caixa-azul-escuro: #003D7A;
    --caixa-azul-medio: #0066CC;
    --caixa-azul-claro: #0B4F8C;
    --caixa-laranja: #F7941D;
    --caixa-laranja-escuro: #E8850C;
    --caixa-branco: #FFFFFF;

    /* Cores de suporte */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ============================================
UTILITY CLASSES
============================================ */

/* Display */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

/* Flexbox */
.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Grid */
.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Sizing */
.min-h-screen {
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.w-auto {
    width: auto;
}

.h-full {
    height: 100%;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Spacing */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.p-10 {
    padding: 2.5rem;
}

.p-12 {
    padding: 3rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.px-12 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.px-14 {
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-5 {
    margin-bottom: 1.25rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-10 {
    gap: 2.5rem;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
    line-height: 1.5rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.875rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1.1;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.75;
}

.leading-normal {
    line-height: 1.5;
}

.underline {
    text-decoration: underline;
}

/* Colors */
.text-white {
    color: #ffffff;
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-700 {
    color: var(--gray-700);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-gray-900 {
    color: var(--gray-900);
}

.text-blue-300 {
    color: #93c5fd;
}

.text-blue-400 {
    color: #60a5fa;
}

.text-green-400 {
    color: #4ade80;
}

.text-green-600 {
    color: #16a34a;
}

.text-red-600 {
    color: #dc2626;
}

.text-orange-600 {
    color: #ea580c;
}

/* Backgrounds */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-gray-200 {
    background-color: var(--gray-200);
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-yellow-50 {
    background-color: #fefce8;
}

.bg-orange-50 {
    background-color: #fff7ed;
}

.bg-orange-100 {
    background-color: #ffedd5;
}

/* Borders */
.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-300 {
    border-color: var(--gray-300);
}

.border-red-200 {
    border-color: #fecaca;
}

.border-red-300 {
    border-color: #fca5a5;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-blue-300 {
    border-color: #93c5fd;
}

.border-green-200 {
    border-color: #bbf7d0;
}

.border-green-300 {
    border-color: #86efac;
}

.border-green-500 {
    border-color: #22c55e;
}

.border-yellow-400 {
    border-color: #facc15;
}

/* Border Radius */
.rounded {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-t-3xl {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
}

.rounded-b-3xl {
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
}

/* Shadows */
.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow {
    box-shadow: var(--shadow-md);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

/* Transitions */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Opacity */
.opacity-50 {
    opacity: 0.5;
}

.opacity-90 {
    opacity: 0.9;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Z-index */
.z-50 {
    z-index: 50;
}

/* ============================================
GRADIENTS
============================================ */

.bg-gradient-to-b {
    background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.from-slate-900 {
    --tw-gradient-from: #0f172a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 23, 42, 0));
}

.via-slate-800 {
    --tw-gradient-to: rgba(30, 41, 59, 0);
    --tw-gradient-stops: var(--tw-gradient-from), #1e293b, var(--tw-gradient-to, rgba(30, 41, 59, 0));
}

.to-slate-900 {
    --tw-gradient-to: #0f172a;
}

.from-orange-400 {
    --tw-gradient-from: #fb923c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(251, 146, 60, 0));
}

.to-orange-600 {
    --tw-gradient-to: #ea580c;
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0));
}

.to-gray-50 {
    --tw-gradient-to: #f9fafb;
}

.bg-clip-text {
    background-clip: text;
    -webkit-background-clip: text;
}

.text-transparent {
    color: transparent;
}

/* Gradientes Caixa */
.bg-gradient-caixa {
    background: linear-gradient(135deg, var(--caixa-azul-escuro) 0%, var(--caixa-azul-medio) 100%);
}

.bg-gradient-caixa-laranja {
    background: linear-gradient(135deg, var(--caixa-laranja) 0%, var(--caixa-laranja-escuro) 100%);
}

.bg-gradient-caixa-header {
    background: linear-gradient(135deg, var(--caixa-azul-escuro) 0%, var(--caixa-azul-claro) 100%);
}

/* Cores específicas com colchetes */
.from-green-400 {
    --tw-gradient-from: #4ade80;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(74, 222, 128, 0));
}

.to-green-600 {
    --tw-gradient-to: #16a34a;
}

.bg-\[#003D7A\] {
    background-color: var(--caixa-azul-escuro);
}

.bg-\[#0066CC\] {
    background-color: var(--caixa-azul-medio);
}

.bg-\[#0B7BC1\] {
    background-color: #0b7bc1;
}

.bg-\[#004C99\] {
    background-color: #004c99;
}

.bg-\[#F7941D\] {
    background-color: var(--caixa-laranja);
}

.bg-\[#E8850C\] {
    background-color: var(--caixa-laranja-escuro);
}

.bg-\[#FF6B00\] {
    background-color: #ff6b00;
}

.bg-\[#FF7A00\] {
    background-color: #ff7a00;
}

.bg-\[#FF8C00\] {
    background-color: #ff8c00;
}

.text-\[#003D7A\] {
    color: var(--caixa-azul-escuro);
}

/* ============================================
SPECIAL COMPONENTS
============================================ */

/* Glass Effect */
.glass {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 16px 40px -24px rgba(15, 23, 42, 0.35);
    color: #1f2937;
}

.glass h2,
.glass h3 {
    color: #0f172a !important;
}

.glass p,
.glass li {
    color: #475569 !important;
}

.glass a {
    color: #2563eb;
}

/* Cards */
.card-caixa {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Buttons */
.button-primary {
    cursor: pointer;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 0.875rem;
    border: none;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.button-primary:hover {
    transform: translateY(-2px);
}

.button-primary:active {
    transform: translateY(0);
}

.button-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Inputs */
input[type="text"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-300);
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.2s ease;
    background: white;
    color: var(--gray-900);
    font-weight: 500;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    outline: none;
    border-color: var(--caixa-azul-medio);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

input[type="text"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder {
    color: var(--gray-400);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease;
}

.animate-slide-up {
    animation: slideUp 0.5s ease;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hover Effects */
.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:bg-gray-50:hover {
    background-color: var(--gray-50);
}

.hover\:bg-gray-100:hover {
    background-color: var(--gray-100);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-blue-300:hover {
    color: #93c5fd;
}

.hover\:shadow-xl:hover {
    box-shadow: var(--shadow-xl);
}

.hover\:shadow-2xl:hover {
    box-shadow: var(--shadow-2xl);
}

.hover\:from-\[#FF7A00\]:hover {
    --tw-gradient-from: #ff7a00;
}

.hover\:to-\[#FF6B00\]:hover {
    --tw-gradient-to: #ff6b00;
}

/* Utilities */
.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-y-8>*+* {
    margin-top: 2rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.text-balance {
    text-wrap: balance;
}

/* Opacity com cores */
.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/15 {
    background-color: rgba(255, 255, 255, 0.15);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-black-80 {
    background-color: rgba(0, 0, 0, 0.8);
}

.bg-black-50 {
    background-color: rgba(0, 0, 0, 0.5);
}

.bg-black-30 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white\/50 {
    color: rgba(255, 255, 255, 0.5);
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
}

.bg-blue-500\/10 {
    background-color: rgba(59, 130, 246, 0.1);
}

.bg-blue-500\/20 {
    background-color: rgba(59, 130, 246, 0.2);
}

.bg-green-500\/20 {
    background-color: rgba(34, 197, 94, 0.2);
}

.border-blue-400\/30 {
    border-color: rgba(96, 165, 250, 0.3);
}

.border-blue-500\/20 {
    border-color: rgba(59, 130, 246, 0.2);
}

.border-green-400\/30 {
    border-color: rgba(74, 222, 128, 0.3);
}

.bg-white-90 {
    background-color: rgba(255, 255, 255, 0.9);
}

.bg-white-80 {
    background-color: rgba(255, 255, 255, 0.8);
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}

/* Backdrop */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Shadows específicas */
.shadow-caixa {
    box-shadow: 0 10px 30px rgba(0, 61, 122, 0.2);
}

.shadow-laranja {
    box-shadow: 0 8px 25px rgba(247, 148, 29, 0.3);
}

.shadow-laranja\/20 {
    box-shadow: 0 4px 15px rgba(247, 148, 29, 0.2);
}

/* Width/Height específicos */
.w-2 {
    width: 0.5rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-7 {
    width: 1.75rem;
}

.w-8 {
    width: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-18 {
    width: 4.5rem;
}

.w-20 {
    width: 5rem;
}

.h-2 {
    height: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-7 {
    height: 1.75rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-18 {
    height: 4.5rem;
}

.h-20 {
    height: 5rem;
}

/* Focus */
.focus\:outline-none:focus {
    outline: none;
}

.focus\:border-\[#003D7A\]:focus {
    border-color: var(--caixa-azul-escuro);
}

/* Disabled */
.disabled\:opacity-50:disabled {
    opacity: 0.5;
}

.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

/* Break */
.break-all {
    word-break: break-all;
}

.whitespace-nowrap {
    white-space: nowrap;
}

/* Pointer Events */
.pointer-events-none {
    pointer-events: none;
}

/* Max Height */
.max-h-\[70vh\] {
    max-height: 70vh;
}

.max-h-\[calc\(100vh-120px\)\] {
    max-height: calc(100vh - 120px);
}

/* Height específico */
.h-\[600px\] {
    height: 600px;
}

/* Aspect Ratio */
.aspect-ratio-520\/720 {
    aspect-ratio: 520 / 720;
}

/* Margin específicos */
.ml-1 {
    margin-left: 0.25rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

/* Padding específicos */
.p-2-5 {
    padding: 0.625rem;
}

/* Responsive */
@media (min-width: 768px) {
    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .md\:px-12 {
        padding-left: 3rem;
        padding-right: 3rem;
    }

    .md\:px-14 {
        padding-left: 3.5rem;
        padding-right: 3.5rem;
    }

    .md\:py-6 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .md\:py-7 {
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }

    .md\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .md\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1.1;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1.1;
    }

    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:w-auto {
        width: auto;
    }

    .md\:gap-10 {
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1.1;
    }

    .lg\:text-6xl {
        font-size: 3.75rem;
        line-height: 1.1;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ============================================
INDEX PAGE - Design Moderno e Profissional
============================================ */

/* Layout Overrides */
.min-h-screen {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
    background-image: none;
}

.min-h-screen.bg-gradient-to-b {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%);
    background-image: none;
}

main {
    color: #1f2937;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: #1f2937;
}

.hero-section h1 {
    color: #0f172a;
}

.hero-section p {
    color: #475569;
}

.hero-section .text-white\/90 {
    color: #475569;
}

.hero-section .text-white\/70 {
    color: #64748b;
}

.hero-section .text-white {
    color: #0f172a;
}

/* Cards de benefícios */
.benefits-card {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 18px 40px -20px rgba(15, 23, 42, 0.45);
    color: #1f2937;
}

.benefits-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.5);
    border-color: rgba(59, 130, 246, 0.25);
}

.benefits-card .bg-gradient-caixa {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
}

.benefits-card .bg-gradient-caixa svg {
    color: #ffffff;
}

.benefits-card .bg-gradient-caixa-laranja {
    background: linear-gradient(135deg, #f97316 0%, #f97316 100%) !important;
}

.benefits-card h3 {
    color: #0f172a !important;
}

.benefits-card p {
    color: #475569 !important;
}

.benefits-card .text-white {
    color: #0f172a !important;
}

.benefits-card .text-white\/70 {
    color: rgba(71, 85, 105, 0.8) !important;
}

/* Seção "Como funciona" */
.how-it-works-section {
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-radius: 2rem;
    padding: 3rem 2rem;
}

/* Botões principais */
.main-button {
    background: linear-gradient(135deg, #F7941D 0%, #E8850C 100%);
    color: white;
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    border-radius: 0.875rem;
    border: none;
    box-shadow: 0 8px 24px rgba(247, 148, 29, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(247, 148, 29, 0.45);
}

.main-button:active {
    transform: translateY(-1px);
}

/* FAQ Section */
.faq-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.faq-item:hover {
    padding-left: 0.5rem;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Disclaimer Box */
.disclaimer-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.disclaimer-box h3 {
    color: #1e40af !important;
    font-weight: 700 !important;
}

.disclaimer-box p {
    color: #1f2937 !important;
    font-weight: 500;
}

.disclaimer-box .w-14 {
    background: rgba(59, 130, 246, 0.2) !important;
}

.disclaimer-box svg {
    color: #2563eb !important;
}

/* Header */
.header-improved {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-improved .flex {
    align-items: center;
}

.header-improved .status-online {
    align-self: center;
}

/* Footer */
.footer-improved {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Status Online */
.status-online {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(74, 222, 128, 0.3);
    padding: 0.625rem 1.125rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.2;
    vertical-align: middle;
}

.status-online span {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
}

.status-online-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

/* Badge de informação */
.info-badge {
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.25);
    padding: 0.875rem 1.75rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.info-badge svg {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    color: #2563eb;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #F7941D 0%, #E8850C 100%);
    border-radius: 2rem;
    padding: 3rem 2rem;
    box-shadow: 0 20px 50px rgba(247, 148, 29, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem !important;
    }

    .benefits-card {
        margin-bottom: 1.5rem;
    }

    .how-it-works-section {
        padding: 2rem 1.5rem;
    }
}