/* ===== CSS ESPECÍFICO PARA PÁGINA INDEX ===== */

/* Importação das fontes Satoshi */
@import url('https://fonts.googleapis.com/css2?family=Satoshi:wght@300;400;500;700;900&display=swap');

/* ===== VARIÁVEIS CSS - PALETA OFICIAL AUTOPROTECTA ===== */
:root {
    /* Cores Principais - Paleta Oficial */
    --smoky-black: #0C0C0C;           /* Pantone Black 6 C - Autoridade, elegância, sofisticação */
    --orioles-orange: #FB4516;        /* Pantone 172 C - Energia, inovação, dinamismo */
    --platinum: #E2E2E2;              /* Pantone 663 C - Pureza, simplicidade, clareza */
    
    /* Variações das cores principais */
    --smoky-black-light: #1a1a1a;
    --smoky-black-dark: #000000;
    --orioles-orange-light: #ff6b3d;
    --orioles-orange-dark: #d73610;
    --platinum-light: #f5f5f5;
    --platinum-dark: #cccccc;
    
    /* Gradientes oficiais */
    --gradient-orange-black: linear-gradient(135deg, var(--orioles-orange) 0%, var(--smoky-black) 100%);
    --gradient-black-orange: linear-gradient(135deg, var(--smoky-black) 0%, var(--orioles-orange) 100%);
    --gradient-platinum-black: linear-gradient(135deg, var(--platinum) 0%, var(--smoky-black) 100%);
    
    /* Transparências */
    --orange-alpha-10: rgba(251, 69, 22, 0.1);
    --orange-alpha-20: rgba(251, 69, 22, 0.2);
    --black-alpha-10: rgba(12, 12, 12, 0.1);
    --black-alpha-20: rgba(12, 12, 12, 0.2);
    --black-alpha-80: rgba(12, 12, 12, 0.8);
    --black-alpha-90: rgba(12, 12, 12, 0.9);
    --platinum-alpha-20: rgba(226, 226, 226, 0.2);
    
    /* Cores de texto */
    --text-primary: var(--smoky-black);
    --text-secondary: var(--smoky-black-light);
    --text-muted: #666666;
    --text-white: #ffffff;
    --text-orange: var(--orioles-orange);
    
    /* Cores de fundo */
    --bg-primary: #ffffff;
    --bg-secondary: var(--platinum-light);
    --bg-dark: var(--smoky-black);
    --bg-dark-light: var(--smoky-black-light);
    --bg-orange: var(--orioles-orange);
    --bg-platinum: var(--platinum);
    
    /* Tipografia - Satoshi */
    --font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --font-black: 900;
    
    /* Tamanhos de fonte */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    --text-7xl: 4.5rem;    /* 72px */
    --text-8xl: 6rem;      /* 96px */
    
    /* Espaçamentos */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */
    --space-20: 5rem;     /* 80px */
    --space-24: 6rem;     /* 96px */
    --space-32: 8rem;     /* 128px */
    
    /* Raios de borda */
    --radius-sm: 0.375rem;   /* 6px */
    --radius: 0.5rem;        /* 8px */
    --radius-md: 0.75rem;    /* 12px */
    --radius-lg: 1rem;       /* 16px */
    --radius-xl: 1.5rem;     /* 24px */
    --radius-2xl: 2rem;      /* 32px */
    --radius-full: 9999px;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(12, 12, 12, 0.05);
    --shadow: 0 1px 3px 0 rgba(12, 12, 12, 0.1), 0 1px 2px -1px rgba(12, 12, 12, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(12, 12, 12, 0.1), 0 2px 4px -2px rgba(12, 12, 12, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(12, 12, 12, 0.1), 0 4px 6px -4px rgba(12, 12, 12, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(12, 12, 12, 0.1), 0 8px 10px -6px rgba(12, 12, 12, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(12, 12, 12, 0.25);
    --shadow-orange: 0 10px 25px -5px rgba(251, 69, 22, 0.3);
    
    /* Transições */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Layout */
    --container-xs: 20rem;     /* 320px */
    --container-sm: 24rem;     /* 384px */
    --container-md: 28rem;     /* 448px */
    --container-lg: 32rem;     /* 512px */
    --container-xl: 36rem;     /* 576px */
    --container-2xl: 42rem;    /* 672px */
    --container-3xl: 48rem;    /* 768px */
    --container-4xl: 56rem;    /* 896px */
    --container-5xl: 64rem;    /* 1024px */
    --container-6xl: 72rem;    /* 1152px */
    --container-7xl: 80rem;    /* 1280px */
    --container-full: 100%;
}

/* ===== RESET E CONFIGURAÇÃO BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    /* Compatibilidade Safari/iOS */
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    font-weight: var(--font-regular);
    /* Compatibilidade Safari/iOS */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* ===== TIPOGRAFIA - HIERARQUIA SATOSHI ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-black);
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    margin-bottom: var(--space-4);
}

h1 { 
    font-size: var(--text-5xl);
    font-weight: var(--font-black);
}
h2 { 
    font-size: var(--text-4xl);
    font-weight: var(--font-black);
}
h3 { 
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
}
h4 { 
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}
h5 { 
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
}
h6 { 
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: var(--font-regular);
}

/* Classes de texto */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }
.text-7xl { font-size: var(--text-7xl); }
.text-8xl { font-size: var(--text-8xl); }

/* Classes de peso */
.font-light { font-weight: var(--font-light); }
.font-regular { font-weight: var(--font-regular); }
.font-medium { font-weight: var(--font-medium); }
.font-bold { font-weight: var(--font-bold); }
.font-black { font-weight: var(--font-black); }

/* Classes de cor */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--text-white); }
.text-orange { color: var(--text-orange); }
.text-black { color: var(--smoky-black); }

/* Classes de alinhamento */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Classes de espaçamento */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }
.m-10 { margin: var(--space-10); }
.m-12 { margin: var(--space-12); }
.m-16 { margin: var(--space-16); }
.m-20 { margin: var(--space-20); }
.m-24 { margin: var(--space-24); }
.m-32 { margin: var(--space-32); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.mt-20 { margin-top: var(--space-20); }
.mt-24 { margin-top: var(--space-24); }
.mt-32 { margin-top: var(--space-32); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.mb-20 { margin-bottom: var(--space-20); }
.mb-24 { margin-bottom: var(--space-24); }
.mb-32 { margin-bottom: var(--space-32); }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: var(--space-1); }
.ml-2 { margin-left: var(--space-2); }
.ml-3 { margin-left: var(--space-3); }
.ml-4 { margin-left: var(--space-4); }
.ml-5 { margin-left: var(--space-5); }
.ml-6 { margin-left: var(--space-6); }
.ml-8 { margin-left: var(--space-8); }
.ml-10 { margin-left: var(--space-10); }
.ml-12 { margin-left: var(--space-12); }
.ml-16 { margin-left: var(--space-16); }
.ml-20 { margin-left: var(--space-20); }
.ml-24 { margin-left: var(--space-24); }
.ml-32 { margin-left: var(--space-32); }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: var(--space-1); }
.mr-2 { margin-right: var(--space-2); }
.mr-3 { margin-right: var(--space-3); }
.mr-4 { margin-right: var(--space-4); }
.mr-5 { margin-right: var(--space-5); }
.mr-6 { margin-right: var(--space-6); }
.mr-8 { margin-right: var(--space-8); }
.mr-10 { margin-right: var(--space-10); }
.mr-12 { margin-right: var(--space-12); }
.mr-16 { margin-right: var(--space-16); }
.mr-20 { margin-right: var(--space-20); }
.mr-24 { margin-right: var(--space-24); }
.mr-32 { margin-right: var(--space-32); }

.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }

/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }
.p-16 { padding: var(--space-16); }
.p-20 { padding: var(--space-20); }
.p-24 { padding: var(--space-24); }
.p-32 { padding: var(--space-32); }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-1); }
.pt-2 { padding-top: var(--space-2); }
.pt-3 { padding-top: var(--space-3); }
.pt-4 { padding-top: var(--space-4); }
.pt-5 { padding-top: var(--space-5); }
.pt-6 { padding-top: var(--space-6); }
.pt-8 { padding-top: var(--space-8); }
.pt-10 { padding-top: var(--space-10); }
.pt-12 { padding-top: var(--space-12); }
.pt-16 { padding-top: var(--space-16); }
.pt-20 { padding-top: var(--space-20); }
.pt-24 { padding-top: var(--space-24); }
.pt-32 { padding-top: var(--space-32); }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-1); }
.pb-2 { padding-bottom: var(--space-2); }
.pb-3 { padding-bottom: var(--space-3); }
.pb-4 { padding-bottom: var(--space-4); }
.pb-5 { padding-bottom: var(--space-5); }
.pb-6 { padding-bottom: var(--space-6); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-10 { padding-bottom: var(--space-10); }
.pb-12 { padding-bottom: var(--space-12); }
.pb-16 { padding-bottom: var(--space-16); }
.pb-20 { padding-bottom: var(--space-20); }
.pb-24 { padding-bottom: var(--space-24); }
.pb-32 { padding-bottom: var(--space-32); }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: var(--space-1); }
.pl-2 { padding-left: var(--space-2); }
.pl-3 { padding-left: var(--space-3); }
.pl-4 { padding-left: var(--space-4); }
.pl-5 { padding-left: var(--space-5); }
.pl-6 { padding-left: var(--space-6); }
.pl-8 { padding-left: var(--space-8); }
.pl-10 { padding-left: var(--space-10); }
.pl-12 { padding-left: var(--space-12); }
.pl-16 { padding-left: var(--space-16); }
.pl-20 { padding-left: var(--space-20); }
.pl-24 { padding-left: var(--space-24); }
.pl-32 { padding-left: var(--space-32); }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: var(--space-1); }
.pr-2 { padding-right: var(--space-2); }
.pr-3 { padding-right: var(--space-3); }
.pr-4 { padding-right: var(--space-4); }
.pr-5 { padding-right: var(--space-5); }
.pr-6 { padding-right: var(--space-6); }
.pr-8 { padding-right: var(--space-8); }
.pr-10 { padding-right: var(--space-10); }
.pr-12 { padding-right: var(--space-12); }
.pr-16 { padding-right: var(--space-16); }
.pr-20 { padding-right: var(--space-20); }
.pr-24 { padding-right: var(--space-24); }
.pr-32 { padding-right: var(--space-32); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: var(--space-1); padding-right: var(--space-1); }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-3 { padding-left: var(--space-3); padding-right: var(--space-3); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-5 { padding-left: var(--space-5); padding-right: var(--space-5); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
.px-10 { padding-left: var(--space-10); padding-right: var(--space-10); }
.px-12 { padding-left: var(--space-12); padding-right: var(--space-12); }
.px-16 { padding-left: var(--space-16); padding-right: var(--space-16); }
.px-20 { padding-left: var(--space-20); padding-right: var(--space-20); }
.px-24 { padding-left: var(--space-24); padding-right: var(--space-24); }
.px-32 { padding-left: var(--space-32); padding-right: var(--space-32); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-5 { padding-top: var(--space-5); padding-bottom: var(--space-5); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-10 { padding-top: var(--space-10); padding-bottom: var(--space-10); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-20 { padding-top: var(--space-20); padding-bottom: var(--space-20); }
.py-24 { padding-top: var(--space-24); padding-bottom: var(--space-24); }
.py-32 { padding-top: var(--space-32); padding-bottom: var(--space-32); }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox */
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

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

.gap-0 { gap: 0; }
.gap-1 { gap: var(--space-1); }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-10 { gap: var(--space-10); }
.gap-12 { gap: var(--space-12); }
.gap-16 { gap: var(--space-16); }
.gap-20 { gap: var(--space-20); }
.gap-24 { gap: var(--space-24); }
.gap-32 { gap: var(--space-32); }

/* Largura */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-screen { width: 100vw; }
.w-min { width: min-content; }
.w-max { width: max-content; }
.w-fit { width: fit-content; }

.w-0 { width: 0; }
.w-1 { width: var(--space-1); }
.w-2 { width: var(--space-2); }
.w-3 { width: var(--space-3); }
.w-4 { width: var(--space-4); }
.w-5 { width: var(--space-5); }
.w-6 { width: var(--space-6); }
.w-8 { width: var(--space-8); }
.w-10 { width: var(--space-10); }
.w-12 { width: var(--space-12); }
.w-16 { width: var(--space-16); }
.w-20 { width: var(--space-20); }
.w-24 { width: var(--space-24); }
.w-32 { width: var(--space-32); }

/* Altura */
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-min { height: min-content; }
.h-max { height: max-content; }
.h-fit { height: fit-content; }

.h-0 { height: 0; }
.h-1 { height: var(--space-1); }
.h-2 { height: var(--space-2); }
.h-3 { height: var(--space-3); }
.h-4 { height: var(--space-4); }
.h-5 { height: var(--space-5); }
.h-6 { height: var(--space-6); }
.h-8 { height: var(--space-8); }
.h-10 { height: var(--space-10); }
.h-12 { height: var(--space-12); }
.h-16 { height: var(--space-16); }
.h-20 { height: var(--space-20); }
.h-24 { height: var(--space-24); }
.h-32 { height: var(--space-32); }

/* Max width */
.max-w-xs { max-width: var(--container-xs); }
.max-w-sm { max-width: var(--container-sm); }
.max-w-md { max-width: var(--container-md); }
.max-w-lg { max-width: var(--container-lg); }
.max-w-xl { max-width: var(--container-xl); }
.max-w-2xl { max-width: var(--container-2xl); }
.max-w-3xl { max-width: var(--container-3xl); }
.max-w-4xl { max-width: var(--container-4xl); }
.max-w-5xl { max-width: var(--container-5xl); }
.max-w-6xl { max-width: var(--container-6xl); }
.max-w-7xl { max-width: var(--container-7xl); }
.max-w-full { max-width: var(--container-full); }

/* Position */
.static { position: static; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

/* Z-index */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-scroll { overflow: scroll; }
.overflow-visible { overflow: visible; }

/* Border radius */
.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded { border-radius: var(--radius); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }

/* Shadows */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow { box-shadow: var(--shadow); }
.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-none { transition: none; }
.transition-all { transition: all var(--transition); }
.transition { transition: var(--transition); }
.transition-colors { transition: color var(--transition), background-color var(--transition), border-color var(--transition); }
.transition-opacity { transition: opacity var(--transition); }
.transition-shadow { transition: box-shadow var(--transition); }
.transition-transform { transition: transform var(--transition); }

.duration-75 { transition-duration: 75ms; }
.duration-100 { transition-duration: 100ms; }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.ease-linear { transition-timing-function: linear; }
.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform */
.transform { transform: translateZ(0); }
.scale-0 { transform: scale(0); }
.scale-50 { transform: scale(0.5); }
.scale-75 { transform: scale(0.75); }
.scale-90 { transform: scale(0.9); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.scale-125 { transform: scale(1.25); }
.scale-150 { transform: scale(1.5); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-25 { opacity: 0.25; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-75 { opacity: 0.75; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-95 { opacity: 0.95; }
.opacity-100 { opacity: 1; }

/* Cursor */
.cursor-auto { cursor: auto; }
.cursor-default { cursor: default; }
.cursor-pointer { cursor: pointer; }
.cursor-wait { cursor: wait; }
.cursor-text { cursor: text; }
.cursor-move { cursor: move; }
.cursor-help { cursor: help; }
.cursor-not-allowed { cursor: not-allowed; }

/* User select */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* Pointer events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Resize */
.resize-none { resize: none; }
.resize { resize: both; }
.resize-x { resize: horizontal; }
.resize-y { resize: vertical; }

/* ===== LAYOUT E CONTAINER ===== */
.container {
    width: 100%;
    max-width: var(--container-7xl);
    margin: 0 auto;
    padding: 0 var(--space-4);
}

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-6);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 var(--space-8);
    }
}

/* ===== HEADER E NAVEGAÇÃO ===== */
.header {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--platinum);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) 0;
    min-height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    text-decoration: none;
    color: var(--text-primary);
    font-weight: var(--font-bold);
    font-size: var(--text-xl);
    transition: var(--transition);
}

.logo:hover {
    color: var(--orioles-orange);
    transform: translateY(-1px);
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    transition: var(--transition);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius);
    position: relative;
}

.nav-links a:hover {
    color: var(--orioles-orange);
    background: var(--orange-alpha-10);
}

.nav-links a.active {
    color: var(--orioles-orange);
    background: var(--orange-alpha-10);
}

.cta-section {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    flex-shrink: 0;
}

.btn-header {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    border-radius: var(--radius);
    transition: all var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-header.btn-primary {
    background: var(--orioles-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-header.btn-primary:hover {
    background: var(--orioles-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-header.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-header.btn-outline:hover {
    background: var(--text-white);
    color: var(--orioles-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    color: var(--text-primary);
    font-size: var(--text-xl);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--platinum);
    box-shadow: var(--shadow-lg);
    z-index: var(--z-dropdown);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu .nav-links {
    flex-direction: column;
    padding: var(--space-4);
    gap: var(--space-2);
}

.mobile-menu .nav-links a {
    display: block;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    width: 100%;
    text-align: center;
}

.mobile-menu .cta-section {
    flex-direction: column;
    gap: var(--space-2);
    width: 100%;
    padding: var(--space-4);
}

.mobile-menu .btn-header {
    width: 100%;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--orioles-orange) 0%, var(--orioles-orange-light) 100%);
    color: var(--text-white);
    padding: var(--space-24) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: var(--text-white);
}

.hero-subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto var(--space-8);
    line-height: 1.6;
    color: var(--text-white);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-8);
}

/* ===== SEÇÕES ===== */
.section {
    padding: var(--space-20) 0;
}

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

.section-dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

.section-orange {
    background: var(--orioles-orange);
    color: var(--text-white);
}

.section-title {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    text-align: center;
    margin-bottom: var(--space-12);
    color: inherit;
}

.section-subtitle {
    font-size: var(--text-lg);
    text-align: center;
    margin-bottom: var(--space-16);
    color: inherit;
    opacity: 0.8;
}

/* ===== CARDS ===== */
.card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow);
    border: 1px solid var(--platinum);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-modern {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--platinum);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange-black);
    opacity: 0;
    transition: var(--transition);
}

.card-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-modern:hover::before {
    opacity: 1;
}

.card-floating {
    background: var(--bg-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--platinum);
    transition: all var(--transition);
    position: relative;
}

.card-floating:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary {
    background: var(--orioles-orange);
    color: var(--text-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--orioles-orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--platinum);
}

.btn-secondary:hover {
    background: var(--platinum);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background: transparent;
    color: var(--orioles-orange);
    border: 2px solid var(--orioles-orange);
}

.btn-outline:hover {
    background: var(--orioles-orange);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
}

.btn-ghost:hover {
    background: var(--orange-alpha-10);
    color: var(--orioles-orange);
}

.btn-premium {
    background: var(--gradient-orange-black);
    color: var(--text-white);
    box-shadow: var(--shadow-orange);
    font-weight: var(--font-bold);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-lg);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== ÍCONES ===== */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-sm {
    width: 16px;
    height: 16px;
    font-size: var(--text-sm);
}

.icon-md {
    width: 20px;
    height: 20px;
    font-size: var(--text-base);
}

.icon-lg {
    width: 24px;
    height: 24px;
    font-size: var(--text-lg);
}

.icon-xl {
    width: 32px;
    height: 32px;
    font-size: var(--text-xl);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.footer-section h3 {
    color: var(--text-white);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-2);
}

.footer-section ul li a {
    color: var(--text-white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--orioles-orange);
}

.footer-bottom {
    border-top: 1px solid var(--smoky-black-light);
    padding-top: var(--space-8);
    text-align: center;
    color: var(--text-white);
    opacity: 0.7;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-lg);
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .card {
        padding: var(--space-4);
    }
    
    .btn {
        padding: var(--space-2) var(--space-4);
        font-size: var(--text-sm);
    }
    
    .cta-section {
        gap: var(--space-2);
    }
    
    .btn-header {
        padding: var(--space-2) var(--space-3);
        font-size: var(--text-xs);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-3);
    }
    
    .hero-section {
        padding: var(--space-16) 0;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .section {
        padding: var(--space-12) 0;
    }
}

/* ===== UTILITÁRIOS ESPECÍFICOS PARA INDEX ===== */
.text-center {
    text-align: center;
}

.mb-16 {
    margin-bottom: var(--space-16);
}

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

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

/* Classes específicas para hierarquia de títulos */
.h1 { font-size: var(--text-4xl); font-weight: var(--font-bold); }
.h2 { font-size: var(--text-3xl); font-weight: var(--font-bold); }
.h3 { font-size: var(--text-2xl); font-weight: var(--font-bold); }
.h4 { font-size: var(--text-xl); font-weight: var(--font-bold); }
.h5 { font-size: var(--text-lg); font-weight: var(--font-bold); }

/* Classes de contraste para seções */
.section-light .section-title,
.section-light .text-xl,
.section-light .text-lg,
.section-light .text-base,
.section-light .text-sm,
.section-light .text-xs {
    color: var(--smoky-black) !important;
}

.section-dark .section-title,
.section-dark .text-xl,
.section-dark .text-lg,
.section-dark .text-base,
.section-dark .text-sm,
.section-dark .text-xs {
    color: var(--text-white) !important;
}

/* Garantir contraste em cards brancos */
.card-floating .service-title,
.card-floating .service-description,
.card-floating .service-features li,
.card-floating .price-label,
.card-floating .price-value,
.card-floating .stat-number,
.card-floating .stat-label {
    color: var(--smoky-black) !important;
}

/* Garantir contraste em cards escuros */
.section-dark .card-floating {
    background: var(--bg-primary) !important;
}

.section-dark .card-floating .value-title,
.section-dark .card-floating .value-description,
.section-dark .card-floating .vision-title,
.section-dark .card-floating .vision-description {
    color: var(--text-white) !important;
}

/* Forçar ícones brancos em fundos laranja */
.stat-icon i,
.value-icon i,
.vision-icon i,
.service-icon i {
    color: white !important;
}

/* Forçar ícones laranja em fundos brancos */
.service-icon-small i {
    color: white !important;
}

/* Grid responsivo para index */
.md\\:grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.lg\\:grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== MODAL STYLES ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-modal-backdrop);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: all var(--transition);
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: var(--space-6) var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--platinum);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: white;
    margin: 0;
}

.modal-subtitle {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin: var(--space-1) 0 0 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: var(--text-xl);
    color: var(--text-muted);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    background: var(--platinum);
    color: var(--text-primary);
}

.modal-body {
    padding: var(--space-6);
}

.modal-footer {
    padding: var(--space-4) var(--space-6) var(--space-6);
    border-top: 1px solid var(--platinum);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-3);
}

/* Form elements in modal */
.modal .form-group {
    margin-bottom: var(--space-4);
}

.modal .form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

.modal .form-input {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--platinum);
    border-radius: var(--radius);
    font-size: var(--text-base);
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.modal .form-input:focus {
    outline: none;
    border-color: var(--orioles-orange);
    box-shadow: 0 0 0 3px var(--orange-alpha-10);
}

.modal .form-input::placeholder {
    color: var(--text-muted);
}

/* Modal buttons */
.modal .btn {
    min-width: 100px;
}

.modal .btn-primary {
    background: var(--orioles-orange);
    color: var(--text-white);
}

.modal .btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--platinum);
}

/* Modal backdrop */
.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Modal logo section */
.logo-section {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.modal-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: var(--space-2);
    border-radius: var(--radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Modal input styles */
.input-group {
    margin-bottom: var(--space-6);
}

.input-label {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: white;
    margin-bottom: var(--space-2);
}

.input-label svg {
    width: 16px;
    height: 16px;
    stroke: rgba(255, 255, 255, 0.7);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: var(--space-3);
    z-index: 1;
    color: rgba(255, 255, 255, 0.6);
}

.input-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.input-field {
    width: 100%;
    padding: var(--space-3) var(--space-3) var(--space-3) var(--space-10);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    font-size: var(--text-base);
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
}

.input-field:focus {
    outline: none;
    border-color: var(--orioles-orange);
    box-shadow: 0 0 0 3px var(--orange-alpha-10);
}

.input-field::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.toggle-password {
    position: absolute;
    right: var(--space-3);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: var(--space-1);
    border-radius: var(--radius);
    transition: var(--transition);
}

.toggle-password:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.toggle-password svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Options row */
.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-6);
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.checkbox {
    width: 16px;
    height: 16px;
    accent-color: var(--orioles-orange);
}

.checkbox-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.forgot-link {
    font-size: var(--text-sm);
    color: var(--orioles-orange);
    text-decoration: none;
    transition: var(--transition);
}

.forgot-link:hover {
    color: var(--orioles-orange-dark);
    text-decoration: underline;
}

/* Login button */
.btn-login {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, rgba(251, 69, 22, 0.8), rgba(12, 12, 12, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    box-shadow: 
        0 4px 16px rgba(251, 69, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-login:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(251, 69, 22, 0.9), rgba(12, 12, 12, 0.9));
    box-shadow: 
        0 8px 24px rgba(251, 69, 22, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-login svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

/* Responsive modal */
@media (max-width: 640px) {
    .modal-container {
        width: 95%;
        margin: var(--space-4);     
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }
}

/* ===== ESTILOS POWERCRM ===== */

/* Garantir que as etapas do formulário funcionem corretamente */
.form-step {
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out;
}

.form-step.active {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Forçar visibilidade das etapas PowerCRM */
#pwr_step_1,
#pwr_step_2,
#pwr_step_3 {
    display: none !important;
    visibility: hidden;
    opacity: 0;
}

#pwr_step_1.active,
#pwr_step_2.active,
#pwr_step_3.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Garantir que apenas a etapa ativa seja visível */
.form-step:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Forçar exibição da etapa 1 por padrão */
#pwr_step_1.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Garantir que apenas uma etapa seja visível por vez */
#pwr_step_1:not(.active),
#pwr_step_2:not(.active),
#pwr_step_3:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Forçar que apenas a etapa ativa seja visível */
.form-step:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Garantir que apenas uma etapa seja visível por vez */
#pwr_step_1:not(.active),
#pwr_step_2:not(.active),
#pwr_step_3:not(.active) {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Estilos para validação */
.required {
    border: 1px solid #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.input-true {
    border: 1px solid #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Garantir que o formulário seja responsivo e não saia para fora */
.form-container-modern {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.form-group-modern {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.form-input-modern,
.form-select-modern {
    width: 100%;    
    max-width: 100%;
    box-sizing: border-box;
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA SOBRE NÓS ===== */

/* Hero Section Moderno */
.hero-section-modern {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero-background-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-shapes-modern .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(234, 88, 12, 0.05));
}

.hero-shapes-modern .shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.hero-shapes-modern .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.hero-shapes-modern .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orioles-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stat-modern {
    text-align: center;
}

.hero-stat-modern .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orioles-orange);
    margin-bottom: 0.5rem;
}

.hero-stat-modern .stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Timeline Moderna */
.timeline-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-modern::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--orioles-orange), rgba(249, 115, 22, 0.3));
    transform: translateX(-50%);
}

.timeline-item-modern {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item-modern:nth-child(odd) {
    flex-direction: row;
}

.timeline-item-modern:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year-modern {
    background: var(--orioles-orange);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content-modern {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
    border: 1px solid rgba(249, 115, 22, 0.1);
}

.timeline-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.timeline-description-modern {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cards da Equipe */
.team-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
}

.team-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.team-avatar-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--orioles-orange), rgba(234, 88, 12, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.team-name-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.team-role-modern {
    color: var(--orioles-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-description-modern {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-features-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

/* Cards de Estatísticas */
.stat-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.stat-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orioles-orange), rgba(234, 88, 12, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.stat-number-modern {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--orioles-orange);
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    color: var(--text-muted);
    font-weight: 500;
}

/* Responsividade para Timeline */
@media (max-width: 768px) {
    .timeline-modern::before {
        left: 30px;
    }
    
    .timeline-item-modern {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year-modern {
        position: absolute;
        left: -60px;
        min-width: 60px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .timeline-content-modern {
        margin: 0;
        padding: 1.5rem;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-stats-modern {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .hero-stat-modern .stat-number {
        font-size: 2rem;
    }
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA NOSSOS SERVIÇOS ===== */

/* Cards de Passos */
.step-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.step-number-modern {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--orioles-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.step-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orioles-orange), rgba(234, 88, 12, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.step-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.step-description-modern {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Cards de Cobertura */
.coverage-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: all 0.3s ease;
}

.coverage-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
}

.coverage-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orioles-orange), rgba(234, 88, 12, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.coverage-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.coverage-description-modern {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.coverage-features-modern {
    list-style: none;
    padding: 0;
}

.coverage-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.coverage-features-modern li i {
    color: var(--orioles-orange);
    font-size: 0.9rem;
}

/* Preços dos Serviços */
.service-price-modern {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.price-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orioles-orange);
}

/* CTA dos Serviços (substituindo preços) */
.service-cta-modern {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(249, 115, 22, 0.1);
    text-align: center;
}

.cta-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cta-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--orioles-orange);
    background: var(--orange-alpha-10);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--orange-alpha-20);
}

/* Responsividade para Nossos Serviços */
@media (max-width: 768px) {
    .step-card-modern,
    .coverage-card-modern {
        padding: 1.5rem;
    }
    
    .step-icon-modern,
    .coverage-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .step-title-modern,
    .coverage-title-modern {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 1.25rem;
    }
    
    .cta-value {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Estilos para botões do PowerCRM */
.back {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--platinum);
    border-radius: var(--radius);
    padding: var(--space-3) var(--space-4);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
}

.back:hover {
    background: var(--platinum);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.back i {
    font-size: var(--text-base);
}

/* Estilos para radio buttons do PowerCRM - Mobile First */
.option-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.3s ease-out 0s;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.option-input:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: scale(1.05);
}

.option-input:checked {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: #ea580c;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.option-input:checked::before {
    height: 24px;
    width: 24px;
    position: absolute;
    content: '✓';
    display: inline-block;
    font-size: 14px;
    text-align: center;
    line-height: 20px;
    color: white;
    font-weight: bold;
}

.option-input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: var(--orioles-orange);
    content: '';
    display: block;
    position: relative;
    z-index: 100;
}

.option-input.radio {
    border-radius: 50%;
}

.option-input.radio::after {
    border-radius: 50%;
}

/* Estilos para checkbox do PowerCRM */
.option-input.checkbox {
    border-radius: 4px;
}

.option-input.checkbox::after {
    border-radius: 4px;
}

/* Estilos para containers dos radio buttons - Mobile First */
.vehicle-type-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.vehicle-type-option {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-sizing: border-box;
}

.vehicle-type-option:hover {
    border-color: #cbd5e1;
    background: #f1f5f9;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-type-option.selected {
    border-color: #f97316;
    background: linear-gradient(135deg, #fef3e7, #fed7aa);
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.2);
}

.vehicle-type-option label {
    cursor: pointer;
    font-weight: 500;
    color: #374151;
    margin: 0;
    font-size: 0.9rem;
    flex: 1;
}

.vehicle-type-option.selected label {
    color: #ea580c;
    font-weight: 600;
}

/* Estilos para ícones dos veículos - Mobile First */
.vehicle-icon {
    font-size: 1.25rem;
    color: #6b7280;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.vehicle-type-option:hover .vehicle-icon {
    color: #374151;
    transform: scale(1.05);
}

.vehicle-type-option.selected .vehicle-icon {
    color: #ea580c;
    transform: scale(1.05);
}

/* Responsividade para containers de tipo de veículo - Desktop */
@media (min-width: 769px) {
    .vehicle-type-container {
        flex-direction: row;
        gap: 1rem;
    }
    
    .vehicle-type-option {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .vehicle-type-option label {
        font-size: 0.95rem;
    }
    
    .vehicle-icon {
        font-size: 1.5rem;
    }
    
    .vehicle-type-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .vehicle-type-option.selected {
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
    }
    
    .option-input {
        height: 24px;
        width: 24px;
        margin-right: 0.75rem;
    }
}

/* Animação para radio/checkbox */
@keyframes click-wave {
    0% {
        height: 40px;
        width: 40px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

/* Estilos para selects do PowerCRM */
.pwr_form select {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--platinum);
    border-radius: var(--radius);
    font-size: var(--text-base);
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.pwr_form select:focus {
    outline: none;
    border-color: var(--orioles-orange);
    box-shadow: 0 0 0 3px var(--orange-alpha-10);
}

/* Estilos para inputs do PowerCRM */
.pwr_form input[type="text"],
.pwr_form input[type="email"],
.pwr_form input[type="tel"] {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 1px solid var(--platinum);
    border-radius: var(--radius);
    font-size: var(--text-base);
    transition: var(--transition);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.pwr_form input[type="text"]:focus,
.pwr_form input[type="email"]:focus,
.pwr_form input[type="tel"]:focus {
    outline: none;
    border-color: var(--orioles-orange);
    box-shadow: 0 0 0 3px var(--orange-alpha-10);
}

/* Estilos para labels do PowerCRM */
.pwr_form label {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
}

/* Estilos para row-flexbox */
.row-flexbox {
    display: flex;
    gap: var(--space-4);
    align-items: center;
}

.two-col {
    flex: 1;
}

/* Estilos para box-input */
.box-input {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3);
    border: 1px solid var(--platinum);
    border-radius: var(--radius);
    background: var(--bg-secondary);
}

.box-input label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: var(--text-sm);
}

.box-input small {
    color: var(--text-muted);
    font-size: var(--text-xs);
}

/* Estilos para ícones */
.icon-left {
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 19l-7-7 7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Responsividade para PowerCRM */
@media (max-width: 768px) {
    .row-flexbox {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .two-col {
        width: 100%;
    }
    
    .back {
        width: 100%;
        justify-content: center;
    }
    
    .option-input {
        height: 18px;
        width: 18px;
    }
    
    .option-input:checked::before {
        height: 36px;
        width: 36px;
        font-size: 24px;
        line-height: 36px;
    }
}