/* ===== VARIABLES ===== */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --white-color: #ffffff;
    --gradient-primary: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    --gradient-hero: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 50%, #0a58ca 100%);
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --transition: all 0.3s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-weight: 800;
    line-height: 1.2;
}

/* ===== HERO ANIMATION ===== */
.hero-animation {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-hero-container {
    position: relative;
    width: 300px;
    height: 300px;
}

/* Floating Cube */
.floating-cube {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    animation: float 6s ease-in-out infinite;
}

.cube-face {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cube-face.front { transform: translateZ(40px); }
.cube-face.back { transform: translateZ(-40px) rotateY(180deg); }
.cube-face.right { transform: translateX(40px) rotateY(90deg); }
.cube-face.left { transform: translateX(-40px) rotateY(-90deg); }
.cube-face.top { transform: translateY(-40px) rotateX(90deg); }
.cube-face.bottom { transform: translateY(40px) rotateX(-90deg); }

.floating-cube {
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite, rotate 20s linear infinite;
}

/* Data Stream */
.data-stream {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.data-line {
    position: absolute;
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, #0d6efd, transparent);
    animation: dataFlow 3s linear infinite;
}

.data-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.data-line:nth-child(2) {
    left: 40%;
    animation-delay: 0.5s;
}

.data-line:nth-child(3) {
    left: 60%;
    animation-delay: 1s;
}

.data-line:nth-child(4) {
    left: 80%;
    animation-delay: 1.5s;
}

.data-line:nth-child(5) {
    left: 50%;
    animation-delay: 2s;
}

/* Pulse Circles */
.pulse-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.pulse-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.pulse-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    animation-delay: 0.5s;
}

.pulse-circle:nth-child(3) {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

/* Tech Particles */
.tech-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffc107;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.tech-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.tech-particles .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: #0dcaf0;
}

.tech-particles .particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 2s;
    background: #198754;
}

.tech-particles .particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 0.5s;
    background: #dc3545;
}

.tech-particles .particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 1.5s;
    background: #6f42c1;
}

.tech-particles .particle:nth-child(6) {
    top: 40%;
    left: 20%;
    animation-delay: 2.5s;
    background: #fd7e14;
}

/* Hero Animation Keyframes */
@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-20px); }
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotateY(0deg); }
    to { transform: translate(-50%, -50%) rotateY(360deg); }
}

@keyframes dataFlow {
    0% { transform: translateY(-100px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(100px); opacity: 0; }
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) scale(1); opacity: 0.7; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}

/* ===== SECTIONS ===== */
section {
    padding: 5rem 0;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== SERVICE CARDS ===== */
.service-card {
    transition: var(--transition);
    border: none !important;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.service-icon i {
    color: white;
    font-size: 2rem;
    z-index: 2;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    opacity: 0.8;
    z-index: 1;
}

/* Cores específicas para cada serviço */
.service-icon.web::before {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.service-icon.ads::before {
    background: linear-gradient(135deg, #4ecdc4, #44a08d);
}

.service-icon.marketing::before {
    background: linear-gradient(135deg, #45b7d1, #96ceb4);
}

/* Efeito de animação para os ícones */
.service-icon:hover::before {
    transform: translate(-50%, -50%) scale(1.1);
    transition: transform 0.3s ease;
}

.service-icon:hover i {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* ===== PORTFOLIO ===== */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
    transform-origin: center center;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 110, 253, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay-content {
    text-align: center;
    color: white;
    padding: 1rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay-content {
    transform: translateY(0);
}

.portfolio-overlay-content .btn {
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.portfolio-item:hover .portfolio-overlay-content .btn {
    transform: scale(1);
}

/* ===== CASE CARDS ===== */
.case-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.case-icon {
    margin-bottom: 1.5rem;
}

.case-icon i {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.case-card:hover .case-icon i {
    transform: scale(1.1);
}

.case-content {
    padding: 1.5rem;
}

.case-content h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.case-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.case-content ul {
    margin-bottom: 0;
}

.case-content li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.case-content .fa-check {
    color: #28a745;
    margin-right: 0.5rem;
}

/* ===== TECH CARDS ===== */
.tech-card {
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tech-highlight {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0b5ed7 50%, #0a58ca 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.tech-highlight .badge {
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.tech-highlight .badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== TECH ANIMATIONS ===== */
@keyframes techGlow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
    }
}

.tech-card:hover .tech-icon {
    animation: techGlow 2s ease-in-out infinite;
}

/* ===== DIGITAL IMPORTANCE SECTION ===== */
.bg-gradient-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle cx="500" cy="500" r="400" fill="none" stroke="rgba(255,193,7,0.1)" stroke-width="2"/><circle cx="500" cy="500" r="300" fill="none" stroke="rgba(255,193,7,0.05)" stroke-width="1"/></svg>');
    background-size: cover;
    opacity: 0.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== DIGITAL WORLD VISUALIZATION ===== */
.tech-visualization {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-world {
    position: relative;
    width: 300px;
    height: 300px;
}

.world-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4ecdc4, #45b7d1, #96ceb4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate 20s linear infinite;
    box-shadow: 0 0 50px rgba(78, 205, 196, 0.5);
}

.world-sphere i {
    font-size: 4rem;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.data-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.5s;
    background: #4ecdc4;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
    background: #45b7d1;
}

.particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1.5s;
    background: #96ceb4;
}

.particle:nth-child(5) {
    top: 70%;
    left: 60%;
    animation-delay: 2s;
    background: #feca57;
}

/* ===== TRAFFIC CARDS ===== */
.traffic-card {
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.traffic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.traffic-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.traffic-icon i {
    font-size: 1.5rem;
}

.traffic-highlight {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 50%, #ffa000 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.traffic-highlight .badge {
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.traffic-highlight .badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ===== RESPONSIVE TECH SECTION ===== */
@media (max-width: 768px) {
    .tech-card {
        margin-bottom: 1rem;
    }
    
    .tech-highlight .badge {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tech-visualization {
        height: 300px;
    }
    
    .world-sphere {
        width: 150px;
        height: 150px;
    }
    
    .world-sphere i {
        font-size: 3rem;
    }
    
    .traffic-card {
        margin-bottom: 1rem;
    }
    
    .traffic-highlight .badge {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

/* ===== CLIENT LOGOS ===== */
.client-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.client-logo:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

.client-logo img {
    max-height: 100%;
    max-width: 100%;
    filter: grayscale(100%);
    transition: var(--transition);
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* ===== CONTACT FORM ===== */
.contact-form .form-control {
    border: none;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    color: white;
}

.contact-info .feature-card {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-button .btn {
    width: 60px;
    height: 60px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button .btn i {
    font-size: 1.75rem;
    color: white;
}

.whatsapp-button .btn:hover {
    transform: scale(1.1);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-button .btn {
        width: 50px;
        height: 50px;
    }
    
    .case-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .stat-number {
        font-size: 0.9rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-animation {
        height: 300px;
    }
    
    .tech-hero-container {
        width: 250px;
        height: 250px;
    }
    
    .floating-cube {
        width: 60px;
        height: 60px;
    }
    
    .cube-face {
        width: 60px;
        height: 60px;
    }
    
    .cube-face.front { transform: translateZ(30px); }
    .cube-face.back { transform: translateZ(-30px) rotateY(180deg); }
    .cube-face.right { transform: translateX(30px) rotateY(90deg); }
    .cube-face.left { transform: translateX(-30px) rotateY(-90deg); }
    .cube-face.top { transform: translateY(-30px) rotateX(90deg); }
    .cube-face.bottom { transform: translateY(30px) rotateX(-90deg); }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.shadow-custom-lg {
    box-shadow: var(--shadow-lg);
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0b5ed7;
}

/* ===== LOGO STYLES ===== */
.navbar-brand img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
} 

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 1rem 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner a {
    text-decoration: underline;
}

.cookie-banner .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
}

/* Responsive adjustments for cookie banner */
@media (max-width: 768px) {
    .cookie-banner .col-lg-8 {
        margin-bottom: 1rem;
    }
    
    .cookie-banner .text-lg-end {
        text-align: center !important;
    }
}

/* ===== POLICY PAGE STYLES ===== */
.policy-content .card {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius-lg);
}

.policy-content .card-header {
    border-bottom: none;
    font-weight: 600;
}

.policy-content h5 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-content ul {
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content .card-body {
    padding: 2rem;
}