/* styles.css */
:root {
    --primary: 220 60% 33%;
    --primary-foreground: 0 0% 100%;
    --secondary: 210 25% 96%;
    --secondary-foreground: 220 40% 20%;
    --accent: 210 100% 50%;
    --accent-foreground: 0 0% 100%;
    --background: 0 0% 100%;
    --foreground: 220 40% 15%;
    --card: 0 0% 100%;
    --card-foreground: 220 40% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 220 40% 15%;
    --muted: 210 20% 96%;
    --muted-foreground: 220 15% 45%;
    --border: 210 20% 90%;
    --input: 210 20% 90%;
    --ring: 220 60% 33%;
    --destructive: 0 72% 51%;
    --destructive-foreground: 0 0% 100%;
    --success: 160 60% 40%;
    --success-foreground: 0 0% 100%;
    --warning: 40 90% 50%;
    --warning-foreground: 40 90% 10%;
    --radius: .5rem;
    --gradient-primary: linear-gradient(135deg, hsl(220 60% 33%) 0%, hsl(220 70% 45%) 100%);
    --gradient-hero: linear-gradient(180deg, hsl(210 25% 97%) 0%, hsl(0 0% 100%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(0 0% 100%) 0%, hsl(210 20% 98%) 100%);
    --gradient-glass: linear-gradient(135deg, hsla(0, 0%, 100%, .95) 0%, hsla(210, 25%, 98%, .9) 100%);
    --shadow-sm: 0 1px 2px 0 hsla(220, 40%, 15%, .05);
    --shadow-md: 0 4px 6px -1px hsla(220, 40%, 15%, .08), 0 2px 4px -2px hsla(220, 40%, 15%, .06);
    --shadow-lg: 0 10px 15px -3px hsla(220, 40%, 15%, .08), 0 4px 6px -4px hsla(220, 40%, 15%, .06);
    --shadow-xl: 0 20px 25px -5px hsla(220, 40%, 15%, .08), 0 8px 10px -6px hsla(220, 40%, 15%, .06);
    --shadow-glow: 0 0 30px hsla(220, 60%, 33%, .15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout */
.container {
    max-width: 1400px;
    margin:  auto;
    padding: 0 1.5rem;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    background: rgb(35, 40, 43);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
   
    border-radius: 2px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.gradient-glass {
    background: var(--gradient-glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(var(--border), 0.1);
    box-shadow: var(--shadow-sm);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: hsla(0, 0%, 100%, 0.95);
    box-shadow: var(--shadow-md);
}

/* Navegação */
nav a {
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}
/*
nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: hsl(var(--primary));
}

nav a.active::after {
    width: 100%;
}
*/
/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: hsl(var(--primary-foreground));
    padding: 0.75rem 2rem;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: hsl(var(--foreground));
    border: 1px solid hsl(var(--border));
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: hsl(var(--muted));
    border-color: hsl(var(--primary));
}

/* Hero Section */
.gradient-hero {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.gradient-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, hsla(var(--primary), 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, hsla(var(--accent), 0.1) 0%, transparent 50%);
}

/* Cards */
.bg-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid hsla(var(--border), 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}

.bg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.bg-card:hover::before {
    opacity: 0.02;
}

.bg-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: hsla(var(--primary), 0.2);
}

.bg-card > * {
    position: relative;
    z-index: 1;
}

/* Grid */
.grid {
    display: grid;
    gap: 1.5rem;
   
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-cols-3 {
        grid-template-columns: 1fr;
    }
}

/* Flex */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

/* Gap */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Padding/Margin */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem;   background: var(--gradient-primary); }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.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-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

/* Text */
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 3.75rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }

.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary { color: hsl(var(--primary)); }

/* Background */
.bg-background { background: hsl(var(--background)); }
.bg-card { background: hsl(var(--card)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-secondary\/50 { background: hsla(var(--secondary), 0.5); }

/* Border */
.border { border: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }

.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) * 1.5); }
.rounded-full { border-radius: 9999px; }

/* Shadow */
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-md { box-shadow: var(--shadow-md); }

/* Width/Height */
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem;  }
.www{background-color: #2159b3be; width: 3.5rem ; }
.w-20 { width: 5rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[85vh\] { min-height: 85vh; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-1\/3 { top: 33.333%; }
.bottom-1\/4 { bottom: 25%; }
.-left-32 { left: -8rem; }
.-right-32 { right: -8rem; }
.top-full { top: 100%; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.hidden { display: none; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-1000 { z-index: 1000; }

/* Effects */
.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.pointer-events-none { pointer-events: none; }
.aspect-square { aspect-ratio: 1/1; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Custom Components */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background: hsla(var(--primary), 0.1);
    color: hsl(var(--primary));
    font-size: 0.875rem;
    font-weight: 500;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: hsl(var(--primary));
    margin-bottom: 0.5rem;
}

.stat-card .label {
    font-size: 0.875rem;
    color: hsl(var(--muted-foreground));
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; margin-top: 30%;}
.max-w-5xl { max-width: 64rem; }
.max-w-md { max-width: 28rem; }

.leading-tight { line-height: 1.25; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.025em; }

.bg-primary\/5 { background-color: hsla(var(--primary), 0.05); }
.bg-accent\/5 { background-color: hsla(var(--accent), 0.05); }
.bg-primary\/10 { background-color: hsla(var(--primary), 0.1); }
.bg-primary\/20 { background-color: hsla(var(--primary), 0.2); }
.bg-primary-foreground\/10 { background-color: hsla(var(--primary-foreground), 0.1); }

.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-primary-foreground\/80 { color: hsla(var(--primary-foreground), 0.8); }
.border-primary\/20 { border-color: hsla(var(--primary), 0.2); }
.border-white\/30 { border-color: hsla(0, 0%, 100%, 0.3); }

.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:bg-white\/50:hover { background-color: hsla(0, 0%, 100%, 0.5); }
.hover\:bg-white\/30:hover { background-color: hsla(0, 0%, 100%, 0.3); }
.hover\:border-primary\/20:hover { border-color: hsla(var(--primary), 0.2); }

.transition-colors { transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
.transition-all { transition: all 0.3s ease; }

.flex-shrink-0 { flex-shrink: 0; }

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: hsl(var(--secondary));
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: hsl(var(--primary));
}

/* Focus */
:focus-visible {
    outline: 2px solid hsl(var(--ring));
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid-cols-3 > div {
        text-align: center;
    }
    
    .hidden {
        display: none;
    }
    
    .md\:hidden {
        display: none;
    }
}

@media (min-width: 768px) {
    .md\:flex {
        display: flex;
    }
    
    .md\:grid {
        display: grid;
    }
    
    .md\:hidden {
        display: none;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .md\:text-5xl {
        font-size: 3.75rem;
    }
    
    .md\:text-6xl {
        font-size: 3.75rem;
    }
    
    .md\:h-20 {
        height: 5rem;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile menu */
@media (max-width: 767px) {
    nav.flex {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        gap: 1rem;
        display: none;
    }
    
    nav.flex.flex-col {
        display: flex;
    }
}
.w-10{

    background: var(--gradient-primary);
}
.flex{
 text-decoration: none;   /* remove sublinhado */
  color: inherit;

}
.badge {

    background-color: hsl(var(--primary) / .1);

}
.tt{
color: rgb(58, 71, 71);
    font-size: 12.99px;
    
}
.tt :hover{

    color: rgb(23, 27, 27);
}
.ttt{

    padding-right: 30px;

}