/* ============================================
   VARIÁVEIS CSS E CONFIGURAÇÕES GLOBAIS
   ============================================ */
:root {
    /* Altura real da navbar */
    --navbar-height: 90px;

    /* Paleta de Cores - Tecnológica e Profissional */
    --color-dark-blue: #0a1929;
    --color-dark-blue-2: #132f4c;
    --color-blue-tech: #1e3a5f;
    --color-cyan: #00d4ff;
    --color-cyan-dark: #00a8cc;
    --color-green-security: #00ff88;
    --color-white: #ffffff;
    --color-gray-light: #f5f7fa;
    --color-gray: #6c757d;
    --color-gray-dark: #343a40;
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
}

/* ============================================
   RESET E ESTILOS BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* section {
    scroll-margin-top: 90px;
} */

/* ============================================
   CLASSES UTILITÁRIAS
   ============================================ */
.bg-dark-blue {
    background-color: var(--color-dark-blue) !important;
}

.bg-dark-blue-2 {
    background-color: var(--color-dark-blue-2) !important;
}

.bg-white {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-cyan {
    color: var(--color-cyan) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.text-dark-blue {
    background-color: var(--color-dark-blue) !important;
}

.border-white-50 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.bg-cyan {
    background-color: var(--color-cyan) !important;
    color: var(--color-dark-blue) !important;
}

.btn-cyan {
    background-color: var(--color-cyan);
    color: var(--color-dark-blue);
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-normal);
}

.btn-cyan:hover {
    background-color: var(--color-cyan-dark);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-cyan {
    color: var(--color-cyan);
    border: 2px solid var(--color-cyan);
    background-color: transparent;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: var(--transition-normal);
}

.btn-outline-cyan:hover {
    background-color: var(--color-cyan);
    color: var(--color-dark-blue);
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-cyan), var(--color-green-security));
    border-radius: 2px;
}

.mt-100 {
    margin-top: 100px;
}

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

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
.header-navbar {
    position: relative;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.navbar-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white) !important;
    padding: 0.5rem 0;
}

.logo-header {
    height: 50px;
    width: auto;
    max-width: 250px;
    transition: var(--transition-normal);
    filter: brightness(1);
}

.logo-header:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.logo-footer {
    height: 50px;
    width: auto;
    max-width: 280px;
    filter: brightness(1);
    transition: var(--transition-normal);
}

.logo-footer:hover {
    filter: brightness(1.1);
}

.logo-fallback {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.25rem;
    border-radius: 0.375rem;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background-color: var(--color-cyan);
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--color-cyan) !important;
}

.navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    content-visibility: auto; /* Melhora muito o score na Lighthouse sem quebrar nada */
    position: relative;
    min-height: calc(100vh - var(--navbar-height));
    /* padding-top: var(--navbar-height); */
    padding-top: 120px;
    padding-bottom: 120px;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-blue-tech) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    /* position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color-dark-blue) 0%, var(--color-blue-tech) 100%);
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 120px;
    overflow: hidden;
    margin-bottom: 0; */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row.min-vh-100 {
    /* min-height: calc(100vh - 80px); */
    padding-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content h1 {
    color: var(--color-white);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.tech-illustration {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-illustration > i {
    font-size: 12rem;
    color: var(--color-cyan);
    opacity: 0.3;
    animation: pulse 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--color-cyan);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.floating-element.element-1 {
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-element.element-2 {
    top: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite 1s;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 15%;
    animation: float 7s ease-in-out infinite 2s;
}

.floating-element.element-4 {
    bottom: 10%;
    right: 10%;
    animation: float 9s ease-in-out infinite 1.5s;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

/* Garantir que a seção hero termine antes da próxima seção */
.hero-section + section {
    position: relative;
    z-index: 1;
}

.scroll-down {
    display: inline-block;
    color: var(--color-cyan);
    font-size: 2rem;
    animation: bounce 2s infinite;
    transition: var(--transition-fast);
}

.scroll-down:hover {
    color: var(--color-white);
    transform: translateY(5px);
}

/* ============================================
   SEÇÃO INSTITUCIONAL
   ============================================ */
/* Ajuste de scroll para compensar navbar fixa */
/* section[id] {
    scroll-margin-top: 80px;
} */

/* Compensação exata da navbar fixa */
section[id] {
    scroll-margin-top: var(--navbar-height);
}


/* Hero NÃO deve sofrer compensação */
/* #inicio {
    scroll-margin-top: 0;
} */


/* Garantir que a seção institucional não sobreponha a hero */
#institucional {
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-cyan), var(--color-green-security));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--color-dark-blue);
    box-shadow: var(--shadow-md);
}

/* ============================================
   SERVIÇOS
   ============================================ */
.service-card {
    transition: var(--transition-normal);
    border-radius: 0.75rem;
    overflow: hidden;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 255, 136, 0.1));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-cyan), var(--color-green-security));
    transform: scale(1.1) rotate(5deg);
    cursor: pointer;
}

.service-card:hover .service-icon i {
    /* color: var(--color-dark-blue); */
    color: var(--color-white) !important;
}

/* ============================================
   SEGURANÇA DA INFORMAÇÃO
   ============================================ */
.security-feature {
    padding: 1.5rem;
    border-radius: 0.75rem;
    transition: var(--transition-normal);
}

.security-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-cyan);
    border: 2px solid rgba(0, 212, 255, 0.3);
    transition: var(--transition-normal);
}

.security-feature:hover .security-icon {
    background: var(--color-cyan);
    color: var(--color-dark-blue);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.security-info-box {
    border-left: 4px solid var(--color-cyan);
}

/* ============================================
   POLÍTICAS DE PRIVACIDADE
   ============================================ */
.polices h1 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
}

/* ============================================
   DICAS DE SEGURANÇA
   ============================================ */
.tip-card {
    transition: var(--transition-normal);
    border-radius: 0.75rem;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* ============================================
   BLOG / NOTÍCIAS
   ============================================ */
.blog-card {
    transition: var(--transition-normal);
    border-radius: 0.75rem;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ============================================
   CONTATO
   ============================================ */
.contact-info .card {
    border-radius: 0.75rem;
}

.contact-info ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info ul li:last-child {
    border-bottom: none;
}

.contact-info a {
    transition: var(--transition-fast);
}

.contact-info a:hover {
    color: var(--color-cyan) !important;
}

.social-links .btn {
    transition: var(--transition-normal);
}

.social-links .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

/* Validação de Formulário */
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #198754;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: var(--color-dark-blue);
    color: var(--color-white);
}

.footer a {
    transition: var(--transition-fast);
}

.footer a:hover {
    color: var(--color-cyan) !important;
}

/* ============================================
   BOTÃO VOLTAR AO TOPO
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-cyan);
    color: var(--color-dark-blue);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.back-to-top:hover {
    background: var(--color-cyan-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.show {
    display: flex;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
    }
    75% {
        transform: translateY(-15px) rotate(3deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-in {
    animation: slideIn 1s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tech-illustration > i {
        font-size: 8rem;
    }
    
    .floating-element {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .tech-illustration {
        min-height: 300px;
    }
    
    .tech-illustration > i {
        font-size: 6rem;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .logo-header {
        height: 40px;
        max-width: 200px;
    }
    
    .logo-footer {
        height: 50px;
        max-width: 240px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .icon-box,
    .service-icon,
    .security-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tip-icon {
        font-size: 2rem;
    }
    
    .logo-header {
        height: 35px;
        max-width: 180px;
    }
    
    .logo-footer {
        height: 45px;
        max-width: 200px;
    }
}

/* ============================================
   UTILITÁRIOS ADICIONAIS
   ============================================ */
.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

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

/* Smooth scroll para navegação suave */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}


/* ==============================
   BLOG - MEGABYTTE TECNOLOGIA
   RESPONSIVO
   ============================== */

   :root {
    --primary: #223C60;
    --secondary: #0f1f33;
    --accent: #1e88e5;
    --light: #f5f7fa;
    --text: #333;
}

/* RESET LOCAL */
.blog * {
    box-sizing: border-box;
}

/* HERO */
.blog-hero {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin-bottom: 10px;
}

.blog-hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* CONTAINER */
.blog-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* GRID */
.blog-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

/* CARD */
.blog-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.blog-card img {
    width: 240px;
    object-fit: cover;
}

/* CONTEÚDO DO CARD */
.blog-card-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-content h2 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.blog-card-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-content a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
    align-self: flex-start;
}

/* SIDEBAR */
.blog-sidebar {
    background: var(--light);
    padding: 25px;
    border-radius: 12px;
    height: fit-content;
}

.blog-sidebar h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar li {
    margin-bottom: 12px;
}

.blog-sidebar a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
}

.blog-sidebar a:hover {
    color: var(--accent);
}

/* ==============================
   RESPONSIVIDADE
   ============================== */

/* TABLET */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        order: -1;
        margin-bottom: 30px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .blog-hero {
        padding: 60px 15px;
    }

    .blog-container {
        margin: 40px auto;
        padding: 0 15px;
    }

    .blog-card {
        flex-direction: column;
    }

    .blog-card img {
        width: 100%;
        height: 180px;
    }

    .blog-card-content h2 {
        font-size: 1.2rem;
    }

    .blog-card-content p {
        font-size: 0.9rem;
    }

    .blog-sidebar {
        padding: 20px;
    }
}

/* ============================================
   ESTILOS PARA MODAL DE POLÍTICA DE PRIVACIDADE
   ============================================ */
.modal-content {
    border: none;
    border-radius: 0.5rem;
    background-color: #fff;
}

.modal-header {
    border-bottom: 2px solid rgba(0, 212, 255, 0.1);
    padding: 1.5rem;
}

.modal-header .btn-close-white {
    filter: brightness(0) invert(1);
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.modal-body {
    padding: 2rem 1.5rem;
    color: #495057;
}

.modal-body h2 {
    color: #0a1929;
    margin-bottom: 1rem;
}

.modal-body h3 {
    color: #132f4c;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-link {
    cursor: pointer;
    transition: color 0.3s ease;
}

.policy-link:hover {
    color: #00d4ff !important;
}

/* ============================================
   ESTILOS PARA BANNER DE COOKIES
   ============================================ */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #0a1929 0%, #132f4c 100%);
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border-top: 2px solid #00d4ff;
    display: none;
    animation: slideUpCookies 0.4s ease-out;
}

.cookies-banner.show {
    display: block;
}

@keyframes slideUpCookies {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cookies-text {
    flex: 1;
    min-width: 250px;
}

.cookies-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookies-text a {
    color: #00d4ff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookies-text a:hover {
    color: #00ff88;
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    min-width: fit-content;
}

.btn-accept-cookies {
    background-color: #00d4ff;
    color: #0a1929;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-accept-cookies:hover {
    background-color: #00a8cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.btn-reject-cookies {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.62rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-reject-cookies:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookies-buttons {
        width: 100%;
    }

    .btn-accept-cookies,
    .btn-reject-cookies {
        flex: 1;
    }

    .cookies-text {
        font-size: 0.85rem;
    }
}
