/* ==========================================================================
   Variáveis e Tipografia - Estética VAXIMO (Cyberpunk/Dark Mode)
   ========================================================================== */
:root {
    /* Cores da Identidade Visual */
    --color-primary: #1E3A8A;
    /* Azul Vibrante */
    --color-secondary: #0A192F;
    /* Azul Marinho (Base Background) */
    --color-tertiary: #2563EB;
    /* Azul Médio */
    --color-accent: #38BDF8;
    /* Ciano / Azul Claro (Neon) */
    --color-highlight: #FCB900;
    /* Amarelo Destaque (Links/Títulos) */
    --color-white: #FFFFFF;

    /* Vaximo Dark Mode Colors */
    --color-bg-dark: #030b17;
    /* Fundo Super Escuro */
    --color-bg-section: #0a1324;
    /* Fundo de Seção Secundária */
    --color-text-main: #a9b7cf;
    /* Texto Base */
    --color-title: #e2e8f0;
    /* Títulos Brancos/Claríssimos */

    --color-card-bg: rgba(14, 28, 54, 0.6);
    --color-card-border: rgba(56, 189, 248, 0.15);

    --font-main: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 35px rgba(56, 189, 248, 0.25);
    --neon-glow: 0 0 15px rgba(56, 189, 248, 0.5), 0 0 30px rgba(56, 189, 248, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    background-color: var(--color-bg-dark);
    background-image:
        radial-gradient(circle at 15% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(56, 189, 248, 0.05) 0%, transparent 50%);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--color-title);
}

.hero-title {
    font-size: 2.8em;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-white);
}

.hero-desc {
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: var(--color-accent);
    transition: var(--transition);
}

a:hover {
    color: var(--color-highlight);
    text-shadow: 0 0 8px rgba(252, 185, 0, 0.4);
}

ul {
    list-style: none;
}

/* ==========================================================================
   Layout e Estrutura Básica
   ========================================================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-3 {
    width: 25%;
    padding: 0 15px;
}

.col-4 {
    width: 33.333%;
    padding: 0 15px;
}

.col-5 {
    width: 41.666%;
    padding: 0 15px;
}

.col-6 {
    width: 50%;
    padding: 0 15px;
}

.col-7 {
    width: 58.333%;
    padding: 0 15px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.section {
    padding: 100px 0;
}

/* Backgrounds */
.bg-light {
    background-color: var(--color-bg-section);
}

.bg-blue {
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.95), rgba(30, 58, 138, 0.9));
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}

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

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

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 20px;
}

.mb-4 {
    margin-bottom: 30px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 20px;
}

.mt-4 {
    margin-top: 30px;
}

.mt-5 {
    margin-top: 50px;
}

.p-3 {
    padding: 20px;
}

.p-4 {
    padding: 30px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.d-flex {
    display: flex;
}

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

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

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

.rounded-img {
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    border: 1px solid var(--color-card-border);
}

.shadow {
    box-shadow: var(--shadow);
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(90deg, var(--color-white), var(--color-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Componentes (Botões, Cards, Badges)
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: inset 0 0 10px rgba(56, 189, 248, 0.2);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--color-accent);
    transition: var(--transition);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--color-secondary);
    box-shadow: var(--neon-glow);
    border-color: var(--color-accent);
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.2);
}

.floating-linkedin {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0a66c2;
    color: #ffffff;
    padding: 15px;
    border-radius: 8px 0 0 8px;
    z-index: 1000;
    font-size: 24px;
    box-shadow: -2px 0 10px rgba(10, 102, 194, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-linkedin:hover {
    background-color: #084c95;
    padding-right: 25px;
    color: #ffffff;
    box-shadow: -2px 0 15px rgba(10, 102, 194, 0.8);
}


.btn-login {
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--color-accent);
    border: 1px solid rgba(56, 189, 248, 0.3);
    padding: 10px 20px;
}

.btn-login:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: var(--neon-glow);
}

/* Dark Glassmorphism Cards */
.card {
    background: var(--color-card-bg);
    border-radius: 8px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-card-border);
    transition: var(--transition);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.card:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(56, 189, 248, 0.5);
    transform: translateY(-5px);
}

.glass-card {
    background: rgba(3, 11, 23, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(56, 189, 248, 0.2);
}

.border-primary {
    border-top: 4px solid var(--color-accent);
}

.badge {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-primary {
    background-color: rgba(56, 189, 248, 0.2);
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.badge-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
    border-color: #10B981;
}

.badge-warning {
    background-color: rgba(245, 158, 11, 0.2);
    color: #F59E0B;
    border-color: #F59E0B;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-tertiary), var(--color-accent));
    margin: 0 auto 20px;
    border-radius: 2px;
    box-shadow: var(--neon-glow);
}

/* ==========================================================================
   Header e Navegação
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 11, 23, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1050;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    padding: 12px 0;
    background: rgba(3, 11, 23, 0.95);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1px;
}

.site-logo {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.site-logo-footer {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.logo i {
    color: var(--color-accent);
    font-size: 2rem;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.5));
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: var(--color-title);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    box-shadow: 0 0 8px var(--color-accent);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown>a::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--color-bg-section);
    border: 1px solid var(--color-card-border);
    box-shadow: var(--shadow);
    border-radius: 4px;
    min-width: 220px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--color-text-main);
    text-transform: none;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    background-color: rgba(56, 189, 248, 0.05);
    color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-white);
    cursor: pointer;
}

/* ==========================================================================
   Hero Section (Cyberpunk Style)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--color-bg-dark);
    /* Fallback */
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

/* Video Background Mix */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.layer-1 {
    opacity: 1;
}

.layer-2 {
    opacity: 0.65;
    mix-blend-mode: screen;
    /* Mistura as cores claras dos dois vídeos */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 11, 23, 0.95) 0%, rgba(10, 25, 47, 0.8) 100%);
}

.hero::after {
    /* Hexagon/Grid Pattern Overlay */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
}

.typewriter {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.cursor {
    color: var(--color-accent);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 45px;
    color: var(--color-text-main);
    max-width: 700px;
}

/* ==========================================================================
   Destaques (Radar/Glow)
   ========================================================================== */
.highlights {
    margin-top: -80px;
    padding-top: 0;
    background: transparent !important;
    position: relative;
    z-index: 3;
}

.card-highlight {
    padding: 40px 25px;
    text-align: center;
    border-bottom: 3px solid transparent;
    background: rgba(10, 19, 38, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.card-highlight:hover {
    border-bottom: 3px solid var(--color-accent);
}

.card-highlight .card-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(56, 189, 248, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: var(--transition);
    position: relative;
}

/* Radar Animation */
.card-highlight .card-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    animation: radarPulse 2s infinite;
    opacity: 0;
}

@keyframes radarPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.card-highlight:hover .card-icon {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: var(--neon-glow);
}

.card-highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* ==========================================================================
   Contadores
   ========================================================================== */
.counters {
    background: linear-gradient(135deg, #051024, #0a1936);
    position: relative;
    overflow: hidden;
}

.counter-box h2 {
    font-size: 4rem;
    font-weight: 800;
    display: inline-block;
    color: var(--color-white);
}

.counter-box span {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-accent);
    text-shadow: var(--neon-glow);
}

.counter-box p {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-text-main);
    margin-top: 10px;
}

/* ==========================================================================
   Notícias e EAD (Cards Avançados)
   ========================================================================== */
.card-noticia,
.card-curso {
    background: var(--color-bg-section);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-noticia:hover,
.card-curso:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
}

.card-noticia img,
.curso-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    transition: var(--transition);
}

.card-noticia:hover img,
.card-curso:hover img {
    filter: brightness(1) contrast(1.1);
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-noticia .tag {
    font-size: 0.75rem;
    color: var(--color-accent);
    background: rgba(56, 189, 248, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    align-self: flex-start;
}

.card-noticia h3,
.card-curso h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.card-noticia p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex: 1;
}

.card-noticia .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.card-noticia .date {
    font-size: 0.85rem;
    color: var(--color-gray);
}

.card-noticia .read-more {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Swiper Pagination Vaximo Style */
.swiper-pagination-bullet {
    background: var(--color-text-main);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-accent) !important;
    box-shadow: var(--neon-glow);
    width: 25px;
    border-radius: 5px;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-accent);
    filter: drop-shadow(0 0 5px rgba(56, 189, 248, 0.5));
}

.search-filter-bar {
    display: flex;
    gap: 15px;
    background: var(--color-card-bg);
    border: 1px solid var(--color-card-border);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* ==========================================================================
   Quem Somos
   ========================================================================== */
.card-member {
    background: var(--color-bg-section);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--color-card-border);
    text-align: center;
    transition: var(--transition);
}

.card-member:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.card-member img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.8);
    transition: var(--transition);
}

.card-member:hover img {
    filter: grayscale(0%) brightness(1);
}

.card-member .member-info {
    padding: 25px 20px;
}

.card-member span {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Parceiros
   ========================================================================== */
.grayscale {
    filter: grayscale(100%) brightness(0.6);
    opacity: 0.6;
    transition: var(--transition);
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

.swiper-slide:hover .grayscale {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* ==========================================================================
   Formulários Vaximo (Cyber Inputs)
   ========================================================================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-title);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 19, 38, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: var(--font-main);
    color: var(--color-white);
    transition: var(--transition);
}

.form-control::placeholder {
    color: #64748b;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.15);
    background: rgba(10, 19, 38, 1);
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2338BDF8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.password-wrapper i {
    color: var(--color-text-main);
}

.password-wrapper i:hover {
    color: var(--color-accent);
}

.benefit-list li {
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-info .info-item i {
    background: transparent;
    border: 1px solid var(--color-accent);
    box-shadow: inset 0 0 10px rgba(56, 189, 248, 0.2);
    transition: var(--transition);
}

.contact-info .info-item:hover i {
    background: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: var(--neon-glow);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #020813;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer h4 {
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-accent);
    box-shadow: var(--neon-glow);
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 11, 23, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    z-index: 1500;
    padding: 15px 0;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    color: var(--color-text);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.cookie-content p a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-content .btn {
    white-space: nowrap;
    padding: 8px 20px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Modais
   ========================================================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(3, 11, 23, 0.9);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--color-bg);
    margin: 5vh auto;
    padding: 20px;
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    height: 90vh;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
}

.modal-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.5rem;
    padding-right: 40px;
    /* Space for close button */
}

.modal-content iframe {
    flex-grow: 1;
    border-radius: 8px;
    width: 100%;
}

.close-modal {
    color: var(--color-text);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover,
.close-modal:focus {
    color: var(--color-accent);
    text-decoration: none;
}

/* ==========================================================================
   Responsividade
   ========================================================================== */
@media (max-width: 1024px) {

    .grid-4,
    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7 {
        width: 100%;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.8em;
    }
}

@media (max-width: 768px) {

    /* Menu Mobile */
    .header .nav-menu {
        position: absolute;
        display: flex;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(3, 11, 23, 0.98);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px 20px;
        transition: 0.3s ease-in-out;
        overflow-y: auto;
    }

    .header .nav-menu.active {
        left: 0;
    }

    .header .nav-menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .header .nav-menu ul li {
        width: 100%;
        margin: 10px 0;
    }

    .header .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        margin-top: 10px;
        display: none;
        width: 100%;
    }

    .header .nav-menu .dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .mobile-toggle {
        display: block;
    }

    /* Layout & Tipografia */
    .hero {
        height: auto;
        min-height: 100vh;
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-desc {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 2rem;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5 {
        grid-template-columns: 1fr;
    }

    .search-filter-bar {
        flex-direction: column;
    }

    .highlights {
        margin-top: 0;
        padding-top: 50px;
    }

    /* Outros Ajustes */
    .section {
        padding: 60px 0;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .header-actions .btn-login {
        display: none;
    }

    /* Esconde só o botão login no header */
    .mobile-toggle {
        display: block;
        background: transparent;
        border: none;
        color: var(--color-white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Ajuste Botões Flutuantes no Mobile */
    .floating-linkedin {
        padding: 8px 12px;
        font-size: 18px;
    }

    .floating-linkedin:hover {
        padding-right: 12px;
    }

    .floating-translator {
        padding: 6px;
    }

    .translator-toggle {
        font-size: 0.85rem;
    }

    .translator-menu {
        top: auto;
        bottom: 100%;
        margin: 0 0 10px 0;
        border-radius: 8px 8px 0 8px;
    }
}

/* ==========================================================================
   Google Translate Custom Widget
   ========================================================================== */
.floating-translator {
    position: fixed;
    right: 0;
    top: calc(50% + 60px);
    transform: translateY(-50%);
    z-index: 999;
    background: rgba(10, 19, 38, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 0 0 8px;
    padding: 10px;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.translator-toggle {
    background: transparent;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.translator-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 19, 38, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px 0 8px 8px;
    list-style: none;
    padding: 10px 0;
    margin: 10px 0 0 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    min-width: 150px;
}

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

.translator-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    color: var(--color-text-main);
    text-decoration: none;
    transition: var(--transition);
}

.translator-menu li a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-white);
}

/* Hide Google Translate UI */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon {
    display: none !important;
}

body {
    top: 0px !important;
}

#goog-gt-tt {
    display: none !important;
}