/*
Theme Name: Kuvuka WP Theme
Theme URI:  https://kuvuka-marketing.com/
Author: Automated conversion
Description: Converted static site into WordPress theme.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: kuvuka-wp
*/


/* --- Original site CSS appended below --- */

/* ===================================
   KUVUKA MARKETING - CSS PROFISSIONAL
   VersÃ£o 2.0 - DinÃ¢mico e Animado
   =================================== */

/* Reset e Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: rgb(33, 37, 41);
    overflow-x: hidden;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

/* ===================================
   PALETA DE CORES DINÃ‚MICAS RGB
   =================================== */
:root {
    /* Cores PrimÃ¡rias Kuvuka */
    --primary-blue: rgb(45, 75, 120);
    --primary-blue-light: rgb(65, 95, 140);
    --primary-blue-dark: rgb(25, 55, 100);
    
    /* Cores SecundÃ¡rias */
    --secondary-blue: rgb(70, 130, 180);
    --secondary-blue-light: rgb(90, 150, 200);
    --secondary-blue-dark: rgb(50, 110, 160);
    
    /* Cores de Destaque */
    --accent-orange: rgb(22, 204, 214);
    --accent-orange-light: rgb(22, 204, 214);
    --accent-orange-dark: rgb(22, 204, 214);
    
    --accent-yellow: rgb(22, 204, 214);
    --accent-yellow-light: rgb(22, 204, 214);
    --accent-yellow-dark: rgb(22, 204, 214);
    
    /* Cores Complementares */
    --purple-medium: rgb(147, 112, 219);
    --purple-light: rgb(186, 164, 235);
    --purple-dark: rgb(127, 92, 199);
    
    /* Tons Neutros */
    --white: rgb(255, 255, 255);
    --light-gray: rgb(248, 249, 250);
    --medium-gray: rgb(108, 117, 125);
    --dark-gray: rgb(52, 58, 64);
    --black: rgb(33, 37, 41);
    
    /* Sombras DinÃ¢micas */
    --shadow-light: rgba(45, 75, 120, 0.08);
    --shadow-medium: rgba(45, 75, 120, 0.15);
    --shadow-heavy: rgba(45, 75, 120, 0.25);
    --shadow-colored: rgba(255, 165, 0, 0.2);
    
    /* Gradientes DinÃ¢micos */
    --gradient-primary: linear-gradient(135deg, rgb(45, 75, 120) 0%, rgb(70, 130, 180) 50%, rgb(147, 112, 219) 100%);
    --gradient-secondary: linear-gradient(135deg, rgb(255, 165, 0) 0%, rgb(255, 215, 0) 100%);
    --gradient-hero: linear-gradient(135deg, rgb(45, 75, 120) 0%, rgb(70, 130, 180) 30%, rgb(147, 112, 219) 70%, rgb(186, 164, 235) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 75, 120, 0.9) 0%, rgba(147, 112, 219, 0.8) 100%);
    
    /* VariÃ¡veis de AnimaÃ§Ã£o */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* VariÃ¡veis Responsivas */
    --container-max-width: 1400px;
    --border-radius-small: 8px;
    --border-radius-medium: 16px;
    --border-radius-large: 24px;
    --border-radius-xl: 32px;
}

/* ===================================
   LOADING SCREEN ANIMADO
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}


.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
    transform: translateY(-3px); /* só move, não aumenta */
}


.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.loading-logo-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* ===================================
   HEADER DINÃ‚MICO
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(45, 75, 120, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(45, 75, 120, 0.98);
    box-shadow: 0 8px 32px var(--shadow-medium);
}


.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Logo Animado */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.logo:hover .logo-icon::before {
    left: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, var(--white), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* NavegaÃ§Ã£o Desktop */
.nav-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* CTA Header Button */
.header-cta {
    display: flex;
    align-items: center;
}

.btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-header:hover::before {
    left: 100%;
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    z-index: 1000;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-link-mobile {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-medium);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.nav-mobile.active .nav-link-mobile {
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile.active .nav-link-mobile:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile.active .nav-link-mobile:nth-child(2) { animation-delay: 0.2s; }
.nav-mobile.active .nav-link-mobile:nth-child(3) { animation-delay: 0.3s; }
.nav-mobile.active .nav-link-mobile:nth-child(4) { animation-delay: 0.4s; }
.nav-mobile.active .nav-link-mobile:nth-child(5) { animation-delay: 0.5s; }
.nav-mobile.active .nav-link-mobile:nth-child(6) { animation-delay: 0.6s; }

.nav-link-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px) scale(1.05);
}

/* ===================================
   HERO SECTION COM CARROSSEL
   =================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Carrossel de Fundo */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide[data-bg="slide1"] {
    background: linear-gradient(135deg, rgb(45, 75, 120) 0%, rgb(70, 130, 180) 100%);
}

.hero-slide[data-bg="slide2"] {
    background: linear-gradient(135deg, rgb(70, 130, 180) 0%, rgb(147, 112, 219) 100%);
}

.hero-slide[data-bg="slide3"] {
    background: linear-gradient(135deg, rgb(147, 112, 219) 0%, rgb(186, 164, 235) 100%);
}

.hero-slide[data-bg="slide4"] {
    background: linear-gradient(135deg, rgb(255, 165, 0) 0%, rgb(255, 215, 0) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 75, 120, 0.3);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Placeholder para imagens do slide */
.slide-image-placeholder {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.slide-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.slide-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Controles do Carrossel */
.hero-carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-nav-btn.active,
.carousel-nav-btn:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-control {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* ConteÃºdo do Hero */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* EstatÃ­sticas do Hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-yellow);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1s both;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* AÃ§Ãµes do Hero */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Cards Flutuantes */
.hero-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    color: var(--white);
    max-width: 200px;
    animation: float 4s ease-in-out infinite;
}

.hero-card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 60%;
    left: 8%;
    animation-delay: 1s;
}

.hero-card-3 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-card-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    opacity: 0.8;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* ===================================
   BOTÃ•ES DINÃ‚MICOS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-large);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-colored);
}


.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}



.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   SEÃ‡Ã•ES GERAIS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 75, 120, 0.1);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 75, 120, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(45,75,120,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    animation: fadeInLeft 0.8s ease-out;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* MVV Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--accent-orange);
}

.mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.mvv-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.mvv-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* About Visual */
.about-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.about-image-container {
    position: relative;
    height: 500px;
}

.about-main-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-medium);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    min-width: 300px;
}

.about-logo-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-logo-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.about-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.about-logo-sub {
    color: var(--secondary-blue);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-tagline {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* Elementos Flutuantes */
.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    background: var(--purple-medium);
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.floating-3 {
    width: 70px;
    height: 70px;
    background: var(--secondary-blue);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.service-header {
    position: relative;
    padding: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.service-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-content {
    padding: 2rem;
}

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

.service-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.service-footer {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.service-price {
    text-align: left;
}

.price-from {
    font-size: 0.8rem;
    color: var(--medium-gray);
    display: block;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.btn-service {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background: var(--light-gray);
    border-radius: var(--border-radius-xl);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.process-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-step-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
    padding: 6rem 0;
    background: var(--light-gray);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.portfolio-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 75, 120, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.portfolio-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    background: rgba(45, 75, 120, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-large);
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.portfolio-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.portfolio-cta-description {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===================================
   VIDEOS SECTION
   =================================== */
.videos {
    padding: 6rem 0;
    background: var(--white);
}

.video-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.video-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.video-category-btn:hover,
.video-category-btn.active {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.featured-video {
    margin-bottom: 4rem;
}

.featured-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-info {
    text-align: center;
    padding: 0 2rem;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-item {
    background: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-placeholder-small {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-content {
    padding: 1.5rem;
}

.video-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.video-item-description {
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.video-views,
.video-likes {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.video-services {
    background: var(--light-gray);
    padding: 4rem 0;
    border-radius: var(--border-radius-xl);
}

.video-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.video-services-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.video-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.video-service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
}

.video-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.video-service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.video-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.video-service-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quotes" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" font-size="20" fill="rgba(45,75,120,0.03)" text-anchor="middle">"</text></pattern></defs><rect width="100" height="100" fill="url(%23quotes)"/></svg>');
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-item {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 50px var(--shadow-light);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--accent-orange);
    margin-bottom: 2rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-orange);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-nav-btn.active,
.testimonial-nav-btn:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: 6rem 0;
    background: var(--light-gray);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.pricing-toggle-switch {
    position: relative;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-switch label {
    display: block;
    width: 60px;
    height: 30px;
    background: var(--medium-gray);
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-toggle-switch label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.pricing-toggle-switch input:checked + label {
    background: var(--primary-blue);
}

.pricing-toggle-switch input:checked + label::after {
    transform: translateX(30px);
}

.pricing-discount {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-small);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.pricing-popular {
    border: 3px solid var(--accent-orange);
    transform: scale(1.05);
}

.pricing-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-period {
    color: var(--medium-gray);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.pricing-faq {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.pricing-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-faq-item {
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    background: var(--light-gray);
}

.pricing-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.pricing-faq-answer {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: 0 15px 50px var(--shadow-light);
    height: fit-content;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    background: var(--light-gray);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    background: var(--gradient-primary);
}

.contact-details h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-social {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.contact-social h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    background: var(--gradient-primary);
}

.social-link:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-medium);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(45, 75, 120, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Quick Contact */
.quick-contact {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
}

.quick-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.quick-contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px var(--shadow-light);
    min-width: 120px;
}

.quick-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    color: var(--white);
}

.quick-contact-btn.whatsapp:hover {
    background: rgb(37, 211, 102);
}

.quick-contact-btn.phone:hover {
    background: var(--primary-blue);
}

.quick-contact-btn.email:hover {
    background: var(--accent-orange);
}

.quick-contact-btn i {
    font-size: 2rem;
}

.quick-contact-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-company {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-2px);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.newsletter-content {
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-medium);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-made-with p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-made-with i {
    color: var(--accent-orange);
    margin: 0 0.25rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-cert {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow-colored);
    transition: all var(--transition-normal);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px var(--shadow-colored);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-normal);
    z-index: 1000;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===================================
   ANIMAÃ‡Ã•ES KEYFRAMES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===================================
   RESPONSIVIDADE AVANÃ‡ADA
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-cards {
        display: none;
    }
}

@media (max-width: 992px) {
    /* Header Mobile */
    .nav-desktop {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 0 4rem;
        min-height: 80vh;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-control {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        height: 400px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio Mobile */
    .portfolio-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Videos Mobile */
    .video-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-popular {
        transform: none;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Typography Mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Spacing Mobile */
    .about,
    .services,
    .portfolio,
    .videos,
    .testimonials,
    .pricing,
    .contact {
        padding: 4rem 0;
    }
    
    /* Cards Mobile */
    .service-card,
    .portfolio-item,
    .video-item,
    .pricing-card,
    .contact-card {
        margin: 0 0.5rem;
    }
    
    /* Stats Mobile */
    .hero-stats {
        gap: 1.5rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .back-to-top,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ===================================
   ACESSIBILIDADE E PERFORMANCE
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles,
    .floating-element,
    .loading-spinner {
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-heavy: rgba(0, 0, 0, 0.7);
    }
    
    .btn,
    .service-card,
    .portfolio-item,
    .contact-card {
        border: 2px solid var(--primary-blue);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: rgb(18, 18, 18);
        --white: rgb(25, 25, 25);
        --dark-gray: rgb(220, 220, 220);
        --black: rgb(255, 255, 255);
    }
    
    body {
        background: rgb(15, 15, 15);
        color: rgb(220, 220, 220);
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 3px solid rgba(45, 75, 120, 0.5);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .loading-screen {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Selection */
::selection {
    background: var(--accent-orange);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-orange);
    color: var(--white);
}

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.transform-none { transform: none; }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.transition-all { transition: all var(--transition-normal); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* ===================================
   FIM DO CSS PROFISSIONAL KUVUKA
   =================================== */

/* ===================================
   KUVUKA MARKETING - CSS PROFISSIONAL
   VersÃ£o 2.0 - DinÃ¢mico e Animado
   =================================== */

/* Reset e Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: rgb(33, 37, 41);
    overflow-x: hidden;
    background: rgb(255, 255, 255);
    transition: all 0.3s ease;
}

/* ===================================
   PALETA DE CORES DINÃ‚MICAS RGB
   =================================== */
:root {
    /* Cores PrimÃ¡rias Kuvuka */
    --primary-blue: rgb(45, 75, 120);
    --primary-blue-light: rgb(65, 95, 140);
    --primary-blue-dark: rgb(25, 55, 100);
    
    /* Cores SecundÃ¡rias */
    --secondary-blue: rgb(70, 130, 180);
    --secondary-blue-light: rgb(90, 150, 200);
    --secondary-blue-dark: rgb(50, 110, 160);
    
    /* Cores de Destaque - Azul */
    --accent-blue: rgb(0, 120, 215);
    --accent-blue-light: rgb(64, 156, 255);
    --accent-blue-dark: rgb(0, 90, 180);
    
    --accent-cyan: rgb(0, 120, 215);
    --accent-cyan-light: rgb(64, 156, 255);
    --accent-cyan-dark: rgb(0, 90, 180);
    
    /* Cores Complementares */
    --light-blue: rgb(173, 216, 230);
    --medium-blue: rgb(100, 149, 237);
    --dark-blue: rgb(65, 105, 225);
    
    /* Tons Neutros */
    --white: rgb(255, 255, 255);
    --light-gray: rgb(248, 249, 250);
    --medium-gray: rgb(108, 117, 125);
    --dark-gray: rgb(52, 58, 64);
    --black: rgb(33, 37, 41);
    
    /* Sombras DinÃ¢micas */
    --shadow-light: rgba(45, 75, 120, 0.08);
    --shadow-medium: rgba(45, 75, 120, 0.15);
    --shadow-heavy: rgba(45, 75, 120, 0.25);
    --shadow-colored: rgba(22, 204, 214, 0.2);
    
    /* Gradientes DinÃ¢micos */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(45, 75, 120, 0.9) 0%, rgba(70, 130, 180, 0.8) 100%);
    
    /* VariÃ¡veis de AnimaÃ§Ã£o */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* VariÃ¡veis Responsivas */
    --container-max-width: 1400px;
    --border-radius-small: 8px;
    --border-radius-medium: 16px;
    --border-radius-large: 24px;
    --border-radius-xl: 32px;
}

/* ===================================
   LOADING SCREEN ANIMADO
   =================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--white);
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.loading-logo-icon {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    animation: pulse 2s ease-in-out infinite;
}

.loading-text {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* ===================================
   HEADER DINÃ‚MICO
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(45, 75, 120, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    transform: translateY(0);
}

.header.scrolled {
    background: rgba(45, 75, 120, 0.98);
    box-shadow: 0 8px 32px var(--shadow-medium);
}

.header.hidden {
    transform: translateY(-100%);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

/* Logo Animado */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(22, 204, 214, 0.3), transparent);
    transition: left 0.5s ease;
}

.logo:hover .logo-icon::before {
    left: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, var(--white), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

/* NavegaÃ§Ã£o Desktop */
.nav-desktop {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all var(--transition-normal);
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: all var(--transition-normal);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* CTA Header Button */
.header-cta {
    display: flex;
    align-items: center;
}

.btn-header {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-header:hover::before {
    left: 100%;
}

/* Menu Mobile */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-normal);
    border-radius: 2px;
    transform-origin: center;
}

.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
    z-index: 1000;
}

.nav-mobile.active {
    transform: translateX(0);
}

.nav-link-mobile {
    color: var(--white);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-medium);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(30px);
}

.nav-mobile.active .nav-link-mobile {
    opacity: 1;
    transform: translateY(0);
}

.nav-mobile.active .nav-link-mobile:nth-child(1) { animation-delay: 0.1s; }
.nav-mobile.active .nav-link-mobile:nth-child(2) { animation-delay: 0.2s; }
.nav-mobile.active .nav-link-mobile:nth-child(3) { animation-delay: 0.3s; }
.nav-mobile.active .nav-link-mobile:nth-child(4) { animation-delay: 0.4s; }
.nav-mobile.active .nav-link-mobile:nth-child(5) { animation-delay: 0.5s; }
.nav-mobile.active .nav-link-mobile:nth-child(6) { animation-delay: 0.6s; }

.nav-link-mobile:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px) scale(1.05);
}

/* ===================================
   HERO SECTION COM CARROSSEL
   =================================== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* Carrossel de Fundo */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide[data-bg="slide1"] {
    background: linear-gradient(135deg, rgb(45, 75, 120) 0%, rgb(70, 130, 180) 100%);
}

.hero-slide[data-bg="slide2"] {
    background: linear-gradient(135deg, rgb(70, 130, 180) 0%, rgb(147, 112, 219) 100%);
}

.hero-slide[data-bg="slide3"] {
    background: linear-gradient(135deg, rgb(147, 112, 219) 0%, rgb(186, 164, 235) 100%);
}

.hero-slide[data-bg="slide4"] {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 75, 120, 0.3);
    z-index: 2;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

/* Placeholder para imagens do slide */
.slide-image-placeholder {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    text-align: center;
    color: var(--white);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
}

.slide-image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.slide-image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Controles do Carrossel */
.hero-carousel-nav {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.carousel-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.carousel-nav-btn.active,
.carousel-nav-btn:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

.hero-carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-control {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.carousel-prev {
    left: 2rem;
}

.carousel-next {
    right: 2rem;
}

/* ConteÃºdo do Hero */
.hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 1s both;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* EstatÃ­sticas do Hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

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

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-cyan);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1s both;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* AÃ§Ãµes do Hero */
.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Cards Flutuantes */
.hero-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-medium);
    padding: 1.5rem;
    color: var(--white);
    max-width: 200px;
    animation: float 4s ease-in-out infinite;
}

.hero-card-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.hero-card-2 {
    top: 60%;
    left: 8%;
    animation-delay: 1s;
}

.hero-card-3 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

.hero-card-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.hero-card-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-card-content p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    z-index: 10;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    opacity: 0.8;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

/* ===================================
   BOTÃ•ES DINÃ‚MICOS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-large);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-colored);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   SEÃ‡Ã•ES GERAIS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 75, 120, 0.1);
    color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(45, 75, 120, 0.2);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--medium-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(45,75,120,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-content {
    animation: fadeInLeft 0.8s ease-out;
}

.about-heading {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-b.about-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mvv-description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--medium-gray);
    line-height: 1.7;
} About Visual */
.about-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.about-image-container {
    position: relative;
    height: 500px;
}

.about-main-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: 0 20px 60px var(--shadow-medium);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    min-width: 300px;
}

.about-logo-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-logo-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.about-logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.about-logo-sub {
    color: var(--secondary-blue);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-tagline {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* Elementos Flutuantes */
.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.floating-1 {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 60px;
    height: 60px;
    background: var(--purple-medium);
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.floating-3 {
    width: 70px;
    height: 70px;
    background: var(--secondary-blue);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

/* Team Stats */
.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.service-header {
    position: relative;
    padding: 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    backdrop-filter: blur(10px);
}

.service-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-size: 0.8rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.service-content {
    padding: 2rem;
}

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

.service-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--dark-gray);
}

.service-features i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.service-footer {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.service-price {
    text-align: left;
}

.price-from {
    font-size: 0.8rem;
    color: var(--medium-gray);
    display: block;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.btn-service {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Process Section */
.process-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background: var(--light-gray);
    border-radius: var(--border-radius-xl);
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.process-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.process-step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-step-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
    padding: 6rem 0;
    background: var(--light-gray);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--border-radius-large);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    background: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    animation: fadeInUp 0.8s ease-out;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.portfolio-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 75, 120, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-content {
    padding: 1.5rem;
    text-align: center;
    color: var(--white);
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-category {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.portfolio-actions {
    display: flex;
    gap: 1rem;
}

.portfolio-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.portfolio-btn:hover {
    background: var(--white);
    color: var(--primary-blue);
    transform: scale(1.1);
}

.portfolio-info {
    padding: 2rem;
}

.portfolio-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.portfolio-tag {
    background: rgba(45, 75, 120, 0.1);
    color: var(--primary-blue);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-large);
    font-size: 0.8rem;
    font-weight: 500;
}

.portfolio-description {
    color: var(--dark-gray);
    line-height: 1.6;
}

.portfolio-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.portfolio-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.portfolio-cta-description {
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===================================
   VIDEOS SECTION
   =================================== */
.videos {
    padding: 6rem 0;
    background: var(--white);
}

.video-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.video-category-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: var(--border-radius-large);
    color: var(--dark-gray);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.video-category-btn:hover,
.video-category-btn.active {
    background: var(--gradient-secondary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.featured-video {
    margin-bottom: 4rem;
}

.featured-video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.video-play-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-info {
    text-align: center;
    padding: 0 2rem;
}

.video-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-description {
    font-size: 1.1rem;
    opacity: 0.9;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.video-item {
    background: var(--white);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-placeholder-small {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
}

.video-item:hover .video-overlay {
    opacity: 1;
}

.video-play-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.video-content {
    padding: 1.5rem;
}

.video-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.video-item-description {
    color: var(--dark-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.video-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--medium-gray);
}

.video-views,
.video-likes {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.video-services {
    background: var(--light-gray);
    padding: 4rem 0;
    border-radius: var(--border-radius-xl);
}

.video-services-header {
    text-align: center;
    margin-bottom: 3rem;
}

.video-services-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    .about-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 4px 20px var(--shadow-light);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--accent-blue);
}

.mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.mvv-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.mvv-description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--medium-gray);
    line-height: 1.7;
}

.testimonials {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quotes" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="25" font-size="20" fill="rgba(45,75,120,0.03)" text-anchor="middle">"</text></pattern></defs><rect width="100" height="100" fill="url(%23quotes)"/></svg>');
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.testimonial-item {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 15px 50px var(--shadow-light);
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonial-quote {
    font-size: 4rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
}

.testimonial-info {
    text-align: left;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.testimonial-position {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    color: var(--accent-blue);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.testimonial-nav-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-blue);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.testimonial-nav-btn.active,
.testimonial-nav-btn:hover {
    background: var(--primary-blue);
    transform: scale(1.2);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing {
    padding: 6rem 0;
    background: var(--light-gray);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle-label {
    font-weight: 600;
    color: var(--dark-gray);
}

.pricing-toggle-switch {
    position: relative;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-switch label {
    display: block;
    width: 60px;
    height: 30px;
    background: var(--medium-gray);
    border-radius: 15px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition-normal);
}

.pricing-toggle-switch label::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.pricing-toggle-switch input:checked + label {
    background: var(--primary-blue);
}

.pricing-toggle-switch input:checked + label::after {
    transform: translateX(30px);
}

.pricing-discount {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-small);
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 2.5rem;
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all var(--transition-normal);
    position: relative;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.pricing-popular {
    border: 3px solid var(--accent-blue);
    transform: scale(1.05);
}

.pricing-popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-large) var(--border-radius-large) 0 0;
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-large);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px var(--shadow-colored);
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 2rem;
}

.pricing-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-period {
    color: var(--medium-gray);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--dark-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-feature:last-child {
    border-bottom: none;
}

.pricing-feature i {
    color: var(--accent-blue);
    font-size: 0.9rem;
}

.btn-pricing {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.pricing-faq {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 8px 30px var(--shadow-light);
}

.pricing-faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-faq-item {
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    background: var(--light-gray);
}

.pricing-faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}

.pricing-faq-answer {
    color: var(--dark-gray);
    line-height: 1.6;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    box-shadow: 0 15px 50px var(--shadow-light);
    height: fit-content;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: var(--border-radius-medium);
    background: var(--light-gray);
    transition: all var(--transition-normal);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    background: var(--gradient-primary);
}

.contact-details h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-social {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.contact-social h4 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    background: var(--gradient-primary);
}

.social-link:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem 1.25rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius-medium);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(45, 75, 120, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.form-checkbox label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

/* Quick Contact */
.quick-contact {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
}

.quick-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.quick-contact-options {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    color: var(--dark-gray);
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px var(--shadow-light);
    min-width: 120px;
}

.quick-contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-medium);
    color: var(--white);
}

.quick-contact-btn.whatsapp:hover {
    background: rgb(37, 211, 102);
}

.quick-contact-btn.phone:hover {
    background: var(--primary-blue);
}

.quick-contact-btn.email:hover {
    background: var(--accent-blue);
}

.quick-contact-btn i {
    font-size: 2rem;
}

.quick-contact-btn span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-company {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--border-radius-small);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-sub {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 2px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-2px);
}

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

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius-medium);
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.newsletter-content {
    margin-bottom: 1.5rem;
}

.newsletter-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.newsletter-input-group input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius-medium);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.newsletter-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-made-with p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-made-with i {
    color: var(--accent-blue);
    margin: 0 0.25rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-cert {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-large);
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* ===================================
   FLOATING ELEMENTS
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--shadow-colored);
    transition: all var(--transition-normal);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px var(--shadow-colored);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: rgb(37, 211, 102);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-normal);
    z-index: 1000;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ===================================
   ANIMAÃ‡Ã•ES KEYFRAMES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ===================================
   RESPONSIVIDADE AVANÃ‡ADA
   =================================== */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-cards {
        display: none;
    }
}

@media (max-width: 992px) {
    /* Header Mobile */
    .nav-desktop {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 0 4rem;
        min-height: 80vh;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .carousel-control {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* About Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        height: 400px;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    /* Portfolio Mobile */
    .portfolio-filter {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    /* Videos Mobile */
    .video-categories {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pricing Mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-popular {
        transform: none;
    }
    
    /* Contact Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    /* Typography Mobile */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Spacing Mobile */
    .about,
    .services,
    .portfolio,
    .videos,
    .testimonials,
    .pricing,
    .contact {
        padding: 4rem 0;
    }
    
    /* Cards Mobile */
    .service-card,
    .portfolio-item,
    .video-item,
    .pricing-card,
    .contact-card {
        margin: 0 0.5rem;
    }
    
    /* Stats Mobile */
    .hero-stats {
        gap: 1.5rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Ultra Mobile */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
    .back-to-top,
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

/* ===================================
   ACESSIBILIDADE E PERFORMANCE
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-particles,
    .floating-element,
    .loading-spinner {
        animation: none !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --shadow-light: rgba(0, 0, 0, 0.3);
        --shadow-medium: rgba(0, 0, 0, 0.5);
        --shadow-heavy: rgba(0, 0, 0, 0.7);
    }
    
    .btn,
    .service-card,
    .portfolio-item,
    .contact-card {
        border: 2px solid var(--primary-blue);
    }
}

@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: rgb(18, 18, 18);
        --white: rgb(25, 25, 25);
        --dark-gray: rgb(220, 220, 220);
        --black: rgb(255, 255, 255);
    }
    
    body {
        background: rgb(15, 15, 15);
        color: rgb(220, 220, 220);
    }
}

/* Focus States */
.btn:focus,
.nav-link:focus,
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: 3px solid rgba(45, 75, 120, 0.5);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .back-to-top,
    .whatsapp-float,
    .loading-screen {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto !important;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Selection */
::selection {
    background: var(--accent-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--accent-blue);
    color: var(--white);
}

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.transform-none { transform: none; }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.transition-all { transition: all var(--transition-normal); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

/* ===================================
   FIM DO CSS PROFISSIONAL KUVUKA
   =================================== */


/* ===================================
   ABOUT SECTION - APRIMORADA
   =================================== */

/* Ajustes para about-heading */
.about-heading {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.about-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

/* Aprimoramentos para MVV Grid */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mvv-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-medium);
    box-shadow: 0 8px 30px var(--shadow-light);
    transition: all var(--transition-normal);
    border-left: 4px solid var(--accent-blue);
    position: relative;
    overflow: hidden;
}

.mvv-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 120, 215, 0.05), transparent);
    transition: left 0.6s ease;
}

.mvv-item:hover::before {
    left: 100%;
}

.mvv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
    border-left-color: var(--accent-blue-light);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mvv-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.mvv-item:hover .mvv-icon::after {
    width: 100px;
    height: 100px;
}

.mvv-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
}

.mvv-description {
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
    color: var(--medium-gray);
    line-height: 1.8;
}

/* Aprimoramentos para About Visual */
.about-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.about-image-container {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-card {
    background: var(--white);
    border-radius: var(--border-radius-large);
    padding: 3rem 2.5rem;
    box-shadow: 0 25px 80px var(--shadow-medium);
    text-align: center;
    position: relative;
    z-index: 3;
    min-width: 320px;
    max-width: 400px;
    border: 1px solid rgba(0, 120, 215, 0.1);
}

.about-main-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius-large);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-main-card:hover::before {
    opacity: 1;
}

.about-logo-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-logo-icon {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.about-logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s ease;
}

.about-main-card:hover .about-logo-icon::before {
    left: 100%;
}

.about-logo-text {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.about-logo-sub {
    color: var(--secondary-blue);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.about-tagline {
    font-size: clamp(0.85rem, 1.8vw, 1rem);
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.6;
    padding: 0 1rem;
}

/* Elementos Flutuantes Aprimorados */
.floating-element {
    position: absolute;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 25px rgba(0, 120, 215, 0.3);
    transition: all 0.3s ease;
}

.floating-element:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 120, 215, 0.4);
}

.floating-1 {
    width: 90px;
    height: 90px;
    background: var(--gradient-secondary);
    top: 8%;
    right: 8%;
    animation-delay: 0s;
}

.floating-2 {
    width: 70px;
    height: 70px;
    background: var(--accent-blue);
    bottom: 15%;
    left: 8%;
    animation-delay: 2s;
}

.floating-3 {
    width: 80px;
    height: 80px;
    background: var(--secondary-blue);
    top: 55%;
    right: 15%;
    animation-delay: 4s;
}

/* Responsividade para About Section */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .about-image-container {
        height: 450px;
    }
    
    .about-main-card {
        min-width: 280px;
        max-width: 350px;
        padding: 2.5rem 2rem;
    }
    
    .floating-1 {
        top: 5%;
        right: 5%;
        width: 70px;
        height: 70px;
    }
    
    .floating-2 {
        bottom: 10%;
        left: 5%;
        width: 60px;
        height: 60px;
    }
    
    .floating-3 {
        top: 50%;
        right: 10%;
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 768px) {
    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mvv-item {
        padding: 2rem 1.5rem;
    }
    
    .about-image-container {
        height: 400px;
    }
    
    .about-main-card {
        min-width: 260px;
        max-width: 320px;
        padding: 2rem 1.5rem;
    }
    
    .about-logo-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-element {
        font-size: 1.2rem;
    }
    
    .floating-1 {
        width: 60px;
        height: 60px;
    }
    
    .floating-2 {
        width: 50px;
        height: 50px;
    }
    
    .floating-3 {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 4rem 0;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .about-image-container {
        height: 350px;
    }
    
    .about-main-card {
        min-width: 240px;
        max-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .about-logo-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .floating-element {
        display: none; /* Oculta elementos flutuantes em telas muito pequenas */
    }
}


.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
}
.modal-content video {
  width: 100%;
  height: auto;
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}