*, ::before, ::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-width: 0;
    border-style: solid;
}

:root {
    --primary: #0098c7;
    --primary-dark: #0075a2;
    --background: #ffffff;
    --foreground: #0f1729;
    --card: #ffffff;
    --card-foreground: #0f1729;
    --popover: #ffffff;
    --popover-foreground: #0f1729;
    --secondary: #f3f6f9;
    --secondary-foreground: #111927;
    --muted: #f3f6f9;
    --muted-foreground: #637381;
    --accent: #f3f6f9;
    --accent-foreground: #111927;
    --destructive: #f04438;
    --destructive-foreground: #f8fafc;
    --border: #e5eaf2;
    --input: #e5eaf2;
    --ring: #0f1729;
    --radius: 0.5rem;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    line-height: inherit;
    background-color: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 80rem;
}

/* Layout */
.min-h-screen {
    min-height: 100vh;
}

.sticky {
    position: sticky;
}

.top-0 {
    top: 0;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-24 {
    height: 6rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-24 {
    width: 6rem;
}

.w-full {
    width: 100%;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.space-x-1 > * + * {
    margin-left: 0.25rem;
}

.space-x-2 > * + * {
    margin-left: 0.5rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.space-y-2 {
    row-gap: 0.5rem;
}

.space-y-3 {
    row-gap: 0.75rem;
}

.space-y-4 {
    row-gap: 1rem;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-b {
    border-bottom-width: 1px;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-200 {
    background-color: #e5e7eb;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-white {
    background-color: #ffffff;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-yellow-500 {
    background-color: #eab308;
}

.bg-white-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.p-2 {
    padding: 0.5rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.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-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.pb-3 {
    padding-bottom: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pb-6 {
    padding-bottom: 1.5rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.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;
}

.font-bold {
    font-weight: 700;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.text-blue-50 {
    color: #eff6ff;
}

.text-blue-100 {
    color: #dbeafe;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.text-green-500 {
    color: #22c55e;
}

.text-primary {
    color: var(--primary);
}

.text-white {
    color: #ffffff;
}

.text-yellow-400 {
    color: #facc15;
}

.line-through {
    text-decoration: line-through;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Gradientes e efeitos */
.bg-gradient-primary {
    background: linear-gradient(90deg, #0098c7 0%, #1a4b8c 100%);
}

.bg-gradient-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
}

/* Componentes */
.section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.card {
    border-radius: 0.75rem;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.btn-primary {
    background-image: linear-gradient(90deg, #0098c7 0%, #1a4b8c 100%);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    opacity: 0.9;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.pricing-card {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: #bfdbfe;
}

.pricing-card.popular {
    border-color: #3b82f6;
    border-width: 2px;
    transform: scale(1.05);
    z-index: 10;
}

/* Menu Mobile */
.mobile-menu {
    background-color: white;
    border-top: 1px solid var(--border);
    padding: 1rem 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
}

#mobile-menu-button {
    background: none;
    cursor: pointer;
}

/* Animações */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

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

.animate-float {
    animation: float 5s ease-in-out infinite;
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0; /* Começa invisível */
}

.delay-100 {
    animation-delay: 0.1s;
}
.delay-200 {
    animation-delay: 0.2s;
}
.delay-300 {
    animation-delay: 0.3s;
}
.delay-400 {
    animation-delay: 0.4s;
}
.delay-500 {
    animation-delay: 0.5s;
}

/* Efeitos hover */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hover-bg-blue-50:hover {
    background-color: #eff6ff;
}

.hover-bg-gray-50:hover {
    background-color: #f9fafb;
}

.hover-bg-primary:hover {
    background-color: var(--primary);
}

.hover-opacity-90:hover {
    opacity: 0.9;
}

.hover-shadow-lg:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.hover-text-white:hover {
    color: white;
}

/* Utilidades */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 0.15s;
}

.rotate-12 {
    transform: rotate(12deg);
}

.scale-105 {
    transform: scale(1.05);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.ml-4 {
    margin-left: 1rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.ml-4 {
    margin-left: 1rem;
}

.-top-4 {
    top: -1rem;
}

.-top-10 {
    top: -2.5rem;
}

.-right-10 {
    right: -2.5rem;
}

/* Tabela */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 0.75rem 1rem;
}

tbody tr:hover {
    background-color: #f9fafb;
}

.divide-y > * + * {
    border-top-width: 1px;
}

.divide-y {
    border-top-width: 0px;
}

.divide-gray-200 > * + * {
    border-color: #e5e7eb;
}

/* Grid */
.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

/* Estilo dos ícones Lucide */
[data-lucide] {
    width: 1em;
    height: 1em;
    stroke-width: 2;
    stroke: currentColor;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

[data-lucide].fill-yellow-400 {
    fill: #facc15;
}

/* Responsive Classes */
/* Mobile First - Definições padrão são para mobile */
.md-hidden {
    display: block;
}

.hidden-mobile {
    display: none;
}

.md-w-1\/2 {
    width: 100%;
}

@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-block {
        display: block;
    }

    .hidden-mobile {
        display: block;
    }

    .md-hidden {
        display: none;
    }

    .md-w-1\/2 {
        width: 50%;
    }

    .md-grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md-grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md-flex-row {
        flex-direction: row;
    }

    .md-space-x-4 > * + * {
        margin-left: 1rem;
    }

    .md-space-y-0 > * + * {
        margin-top: 0;
    }

    .md-items-center {
        align-items: center;
    }

    .md-mt-0 {
        margin-top: 0;
    }

    .md-text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md-text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md-py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .md-py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Ajustes específicos de responsividade para dispositivos móveis */
@media (max-width: 767px) {
    .pricing-card.popular {
        transform: none;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .text-4xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    h2.text-3xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    table {
        font-size: 0.875rem;
    }

    .px-6 {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .flex.flex-wrap.items-center.justify-center.space-x-2 {
        display: block;
        text-align: center;
    }

    .flex.flex-wrap.items-center.justify-center.space-x-2 > * {
        display: inline-flex;
        align-items: center;
        margin-bottom: 0.5rem;
        margin-right: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .text-4xl {
        font-size: 1.5rem;
        line-height: 1.75rem;
    }

    .text-3xl {
        font-size: 1.25rem;
        line-height: 1.5rem;
    }

    .btn-primary {
        padding: 0.625rem 1.25rem;
        width: 100%;
        margin-bottom: 1rem;
    }

    .delay-100, .delay-200, .delay-300, .delay-400, .delay-500 {
        animation-delay: 0s;
    }

    .grid-cols-2 {
        grid-template-columns: 1fr;
    }

    .px-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .py-4 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .py-3 {
        padding-top: 0.625rem;
        padding-bottom: 0.625rem;
    }
}