/* ========================================
   VARIÁVEIS CSS - Cores e Configurações
   ======================================== */
:root {
    /* Cores do Cruzeiro - Azul tema principal */
    --primary-blue: #003da5;
    --secondary-blue: #4fc3f7;
    --light-blue: #81d4fa;
    --dark-blue: #0d3d56;
    --navy-blue: #001e3c;
    
    /* Cores complementares */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #9e9e9e;
    --dark-gray: #424242;
    --black: #000000;
    
    /* Gradientes */
    --gradient-blue: linear-gradient(135deg, #003da5 0%, #0d3d56 100%);
    --gradient-light: linear-gradient(135deg, #4fc3f7 0%, #81d4fa 100%);
    --gradient-dark: linear-gradient(180deg, #001e3c 0%, #003da5 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 10px rgba(0, 61, 165, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 61, 165, 0.2);
    --shadow-lg: 0 10px 40px rgba(0, 61, 165, 0.3);
    --shadow-glow: 0 0 30px rgba(79, 195, 247, 0.4);
    
    /* Transições */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

/* ========================================
   RESET E CONFIGURAÇÕES GLOBAIS
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-gray);
    background-color: var(--light-gray);
    line-height: 1.6;
    width: 100%;
    position: relative;
}

/* ========================================
   NAVBAR - Navegação Superior
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 61, 165, 0.95);
    backdrop-filter: blur(10px); /* Efeito glassmorphism */
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}

.navbar,
.nav-container,
body {
    max-width: 100vw;
    overflow-x: hidden;
}

.navbar.scrolled {
    background: rgba(0, 30, 60, 0.98);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-logo i {
    color: var(--secondary-blue);
    animation: rotate 4s linear infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition-fast);
}

/* Efeito underline animado */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-blue);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--secondary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

/* Menu Hamburguer para Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* ========================================
   HERO SECTION - Seção Principal
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

/* Fundo animado com ondas */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat-x;
    opacity: 0.3;
}

/* Animação de ondas utilizando gradientes */
.wave1 {
    background: radial-gradient(ellipse at center, var(--secondary-blue) 0%, transparent 70%);
    animation: wave-animation 15s linear infinite;
}

.wave2 {
    background: radial-gradient(ellipse at center, var(--light-blue) 0%, transparent 70%);
    animation: wave-animation 20s linear infinite;
    animation-delay: -5s;
}

.wave3 {
    background: radial-gradient(ellipse at center, var(--primary-blue) 0%, transparent 70%);
    animation: wave-animation 25s linear infinite;
    animation-delay: -10s;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0) translateY(0);
    }
    100% {
        transform: translateX(-50%) translateY(-10%);
    }
}

/* Ícones flutuantes do Cruzeiro */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.25;
    animation: floatUpDown 6s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(79, 195, 247, 0.3));
    transform-origin: center;
    transition: all 0.3s ease;
}

.floating-icon:hover {
    opacity: 0.4;
    transform: scale(1.1);
}

.star-icon {
    font-size: 1.8rem;
    animation: floatUpDown 5s ease-in-out infinite, rotate 8s linear infinite;
    opacity: 0.7;
}

.fox-icon {
    font-size: 2.5rem;
    animation: floatUpDown 7s ease-in-out infinite, wiggle 3s ease-in-out infinite;
    opacity: 0.65;
}

.ball-icon {
    font-size: 2rem;
    animation: floatUpDown 6s ease-in-out infinite, spin 4s linear infinite;
    opacity: 0.6;
}

.trophy-icon {
    font-size: 1.8rem;
    animation: floatUpDown 5.5s ease-in-out infinite, pulse 2s ease-in-out infinite;
    opacity: 0.65;
}

.shield-icon {
    font-size: 2.8rem;
    animation: floatUpDown 6.5s ease-in-out infinite, heartbeat 1.5s ease-in-out infinite;
    opacity: 0.7;
}

/* Animação de flutuação vertical */
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Animação de rotação para estrelas */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animação de giro para bola */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Animação de balanço para raposa */
@keyframes wiggle {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

/* Animação de batida de coração para escudo */
@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Container da foto de perfil com borda animada */
.profile-image-container {
    margin-bottom: 2rem;
    animation: float 6s ease-in-out infinite;
}

.profile-image-border {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    border-radius: 50%;
    padding: 8px;
    background: var(--gradient-light);
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho girando */
.profile-image-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        var(--secondary-blue),
        transparent 30%
    );
    animation: rotate 4s linear infinite;
}

.profile-image-border::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: var(--dark-blue);
    border-radius: 50%;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Título e subtítulo */
.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    background: var(--gradient-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--secondary-blue);
}

/* ========================================
   BIO SECTION - Quem Sou Eu
   ======================================== */
.bio-section {
    padding: 6rem 0;
    background: var(--light-gray);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.bio-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Desktop: 2 colunas apenas em telas grandes */
@media (min-width: 901px) {
    .bio-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    position: relative;
    display: block;
    text-align: center;
}

/* Linha decorativa sob o título */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-light);
    border-radius: 2px;
}

.bio-avatar {
    width: 150px;
    height: 150px;
    margin: 2rem 0;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--secondary-blue);
    box-shadow: var(--shadow-md);
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bio-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

/* Botão principal */
.btn-primary {
    background: var(--gradient-blue);
    color: var(--white) !important;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active {
    color: var(--white) !important;
    text-decoration: none;
}

/* Efeito de brilho ao passar o mouse */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: var(--transition-fast);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.bio-text,
.metrics-column {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.bio-text {
    padding: 0;
}

/* Grid de fotos 3x2 - REMOVIDO E SUBSTITUÍDO POR CARROSSEL */

/* ========================================
   PHOTO CAROUSEL - Carrossel Moderno de Fotos (Swiper Cards)
   ======================================== */
.photo-carousel-container {
    margin: 3rem 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    overflow: visible;
    max-width: 100%;
    width: 100%;
}

.carousel-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

/* Swiper Gallery Cards */
.gallery-swiper {
    width: 100%;
    max-width: 350px;
    height: 450px;
    margin: 2rem auto;
    padding: 0;
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
}

.gallery-swiper .swiper-slide {
    background: transparent;
    border-radius: 18px;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.gallery-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 18px;
}

/* Navegação personalizada */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    background: var(--gradient-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 61, 165, 0.3);
    top: 50%;
    transform: translateY(-50%);
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 900;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--gradient-light);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(79, 195, 247, 0.5);
}

/* Paginação personalizada */
.gallery-swiper .swiper-pagination {
    bottom: 20px;
}

.gallery-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--medium-gray);
    opacity: 1;
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
    border: 2px solid var(--secondary-blue);
}

.gallery-swiper .swiper-pagination-bullet:hover {
    background: var(--secondary-blue);
    transform: scale(1.2);
}

/* Responsivo - Hero */
@media (max-width: 768px) {
    .floating-icon {
        font-size: 1.8rem;
        opacity: 0.3;
    }
    
    .star-icon {
        font-size: 1.5rem;
    }
    
    .fox-icon {
        font-size: 2rem;
    }
    
    .ball-icon {
        font-size: 1.8rem;
    }
    
    .trophy-icon {
        font-size: 1.6rem;
    }
    
    .shield-icon {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .gallery-swiper {
        max-width: 320px;
        height: 480px;
        padding: 0;
        margin: 2rem auto;
    }
    
    .photo-carousel-container {
        padding: 0;
        margin: 2rem 0;
        background: transparent;
        border: none;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .carousel-title {
        font-size: 1.2rem;
    }
    
    .photo-carousel-container {
        padding: 1.5rem 1rem 3rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .gallery-swiper {
        height: 420px;
        max-width: 300px;
        padding: 0;
        margin: 1.5rem auto;
    }
    
    .photo-carousel-container {
        padding: 0;
        margin: 1.5rem 0;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
    
    .gallery-swiper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
    
    .gallery-swiper .swiper-pagination-bullet-active {
        width: 24px;
    }
}

/* MOBILE EXTREMO - Garantia de single column */
@media (max-width: 480px) {
    .bio-grid,
    .metrics-grid {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .metrics-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }
    
    .metric-card,
    .bio-text,
    .metrics-column {
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Grid de fotos 3x2 */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 3rem 0;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 3px solid var(--primary-blue);
    box-shadow: var(--shadow-md);
}

.photo-item {
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-fast);
    cursor: pointer;
}

.photo-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Seção "Quem já confiou" */
.trust-section {
    margin-top: 3rem;
    text-align: center;
}

.trust-section h3 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.trust-logo {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.trust-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.trust-logo i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* ========================================
   METRICS COLUMN - Coluna de Métricas
   ======================================== */
.metrics-column {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.metrics-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--secondary-blue);
}

.metrics-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(2);
}

/* Grid de cards de métricas 3x2 */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 100%;
}

/* Desktop: forçar 3 colunas apenas em telas grandes */
@media (min-width: 769px) {
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

.metric-card {
    background: var(--gradient-blue);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    min-width: 0;
    overflow: hidden;
}

.metric-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-blue);
    box-shadow: var(--shadow-glow);
}

/* Card em destaque (taxa de engajamento) */
.metric-card.highlight {
    background: var(--gradient-light);
    position: relative;
    overflow: hidden;
}

.metric-card.highlight::before {
    content: '⭐';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.metric-icon {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.metric-info {
    color: var(--white);
}

.metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.metric-platform {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Gráfico de crescimento 3D */
.growth-chart-3d {
    background: linear-gradient(145deg, #ffffff 0%, #f0f8ff 100%);
    padding: 3rem 2rem;
    border-radius: 25px;
    margin-top: 2.5rem;
    border: 1px solid rgba(79, 195, 247, 0.15);
    box-shadow: 
        0 10px 40px rgba(0, 61, 165, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: visible;
}

.growth-chart-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(79, 195, 247, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.growth-chart-title {
    text-align: center;
    color: var(--primary-blue);
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.growth-chart-subtitle {
    text-align: center;
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.chart-3d-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 2rem;
    perspective: 1000px;
    overflow: visible;
}

#growthChart3D {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(79, 195, 247, 0.15));
    overflow: visible;
}

.chart-labels {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.chart-label {
    position: absolute;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.chart-label.active {
    opacity: 1;
    animation: labelPop 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes labelPop {
    0% {
        transform: translateX(-50%) scale(0) translateY(20px);
        opacity: 0;
    }
    50% {
        transform: translateX(-50%) scale(1.2) translateY(-5px);
    }
    100% {
        transform: translateX(-50%) scale(1) translateY(0);
        opacity: 1;
    }
}

.label-value {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 61, 165, 0.3);
    position: relative;
}

.chart-label-final .label-value {
    background: linear-gradient(135deg, var(--secondary-blue), #00e5ff);
    font-size: 1.1rem;
    padding: 0.5rem 1.1rem;
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.5);
}

.label-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: var(--secondary-blue);
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.growth-badge-3d {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #4fc3f7 0%, #03a9f4 100%);
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    box-shadow: 
        0 8px 24px rgba(79, 195, 247, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.growth-badge-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(0deg) translate(-100%, -100%);
    }
    100% {
        transform: rotate(0deg) translate(100%, 100%);
    }
}

.growth-percentage-3d {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.growth-text-3d {
    font-size: 1.05rem;
    font-weight: 600;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* Responsivo - Gráfico 3D */
@media (max-width: 900px) {
    .growth-chart-3d {
        padding: 2rem 1.5rem;
    }
    
    .growth-chart-title {
        font-size: 1.4rem;
    }
    
    .growth-chart-subtitle {
        font-size: 0.85rem;
    }
    
    .chart-3d-wrapper {
        height: 280px;
    }
    
    .label-value {
        font-size: 0.8rem;
        padding: 0.35rem 0.7rem;
    }
    
    .chart-label-final .label-value {
        font-size: 0.95rem;
        padding: 0.4rem 0.9rem;
    }
    
    .growth-badge-3d {
        flex-direction: column;
        gap: 0.4rem;
        padding: 1rem 2rem;
    }
    
    .growth-percentage-3d {
        font-size: 1.6rem;
    }
    
    .growth-text-3d {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .growth-chart-3d {
        padding: 1.5rem 0.75rem;
        margin-top: 1.5rem;
        overflow: visible;
    }
    
    .growth-chart-title {
        font-size: 1.1rem;
        line-height: 1.4;
        padding: 0 0.5rem;
    }
    
    .growth-chart-subtitle {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .chart-3d-wrapper {
        height: 200px;
        margin-bottom: 1.5rem;
    }
    
    .label-value {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
    
    .chart-label-final .label-value {
        font-size: 0.8rem;
        padding: 0.3rem 0.7rem;
    }
    
    .growth-badge-3d {
        padding: 0.85rem 1.25rem;
        border-radius: 50px;
    }
    
    .growth-percentage-3d {
        font-size: 1.3rem;
    }
    
    .growth-text-3d {
        font-size: 0.8rem;
    }
}

/* Responsivo - Gráfico Antigo (remover depois) */
@media (max-width: 768px) {
    .growth-chart {
        padding: 1.5rem;
    }
    
    .growth-chart h4 {
        font-size: 1.2rem;
    }
    
    .chart-container {
        height: 160px;
    }
    
    .growth-badge {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.8rem 1.5rem;
    }
    
    .growth-percentage {
        font-size: 1.5rem;
    }
    
    .growth-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   PARTNERS SECTION - Quem Já Confiou (Swiper)
   ======================================== */
.partners-section {
    padding: 6rem 0 2rem 0;
    background: var(--white);
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(245, 249, 252, 0.5), #f5f9fc);
    pointer-events: none;
}

.partners-full-width {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.partners-section .section-title {
    text-align: center !important;
    margin-bottom: 4rem;
    color: var(--primary-blue);
    padding: 0 2rem;
    display: block;
    width: 100%;
}

/* Panorama Slider 3D */
.panorama-slider {
    width: 100%;
    height: 300px;
    overflow: visible;
    padding: 0;
    position: relative;
    perspective: 1000px;
    display: flex;
    align-items: center;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.panorama-track {
    display: flex;
    gap: 2rem;
    animation: panorama-scroll-3d 20s linear infinite;
    width: fit-content;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: grab;
}

.panorama-track:active {
    cursor: grabbing;
}

.panorama-track:hover {
    animation-play-state: paused;
}

@keyframes panorama-scroll-3d {
    0% {
        transform: translateX(0) rotateY(0deg);
    }
    100% {
        transform: translateX(-50%) rotateY(0deg);
    }
}

/* Logo Container 3D */
.partner-logo {
    flex-shrink: 0;
    width: 320px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 30px rgba(0, 61, 165, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    transform: translateZ(0) rotateY(0deg);
    border: 1px solid rgba(0, 61, 165, 0.08);
    cursor: pointer;
    user-select: none;
}

.partner-logo:hover {
    transform: translateZ(20px) translateY(-10px) rotateY(5deg);
    box-shadow: 
        0 20px 50px rgba(0, 61, 165, 0.15),
        0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%) brightness(1) contrast(1.05);
    transition: all 0.5s ease;
    transform: translateZ(10px);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1.05) contrast(1.1);
    transform: translateZ(30px) scale(1.05);
}

/* Responsivo - Panorama Slider 3D */
@media (max-width: 768px) {
    .partners-section {
        padding: 4rem 0;
    }
    
    .partners-section .section-title {
        margin-bottom: 3rem;
        font-size: 1.8rem;
    }
    
    .panorama-slider {
        height: 250px;
    }
    
    .panorama-track {
        gap: 1.5rem;
        animation: panorama-scroll-3d 10s linear infinite;
    }
    
    .partner-logo {
        width: 200px;
        height: 130px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .panorama-slider {
        height: 200px;
    }
    
    .panorama-track {
        gap: 1.2rem;
        animation: panorama-scroll-3d 6s linear infinite;
    }
    
    .partner-logo {
        width: 200px;
        height: 130px;
        padding: 1.5rem;
    }
}

/* ========================================
   FORMATS SECTION - Nossos Formatos (REMOVIDO)
   ======================================== */
.formats-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
}

.formats-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 4rem;
}

.formats-section .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Grid de formatos 5x3 */
.formats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.format-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Glassmorphism */
    border: 2px solid rgba(79, 195, 247, 0.3);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
}

.format-card:hover {
    background: rgba(79, 195, 247, 0.2);
    border-color: var(--secondary-blue);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-glow);
}

.format-icon {
    font-size: 3rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.format-card:hover .format-icon {
    transform: scale(1.2) rotate(360deg);
}

.format-name {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

/* ========================================
   PUBLIS SECTION - Campanhas
   ======================================== */
.publis-section {
    padding: 6rem 0;
    background: var(--light-gray);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.publis-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.publis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.publi-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    cursor: pointer;
}

.publi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.publi-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.publi-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.publi-card:hover .publi-image img {
    transform: scale(1.1);
}

/* Overlay com ícone de zoom */
.publi-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 165, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.publi-card:hover .publi-overlay {
    opacity: 1;
}

.publi-overlay i {
    font-size: 3rem;
    color: var(--white);
}

.publi-info {
    padding: 2rem;
}

.publi-info h3 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.publi-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   PRICING SECTION - Tabela de Preços
   ======================================== */
.pricing-section {
    padding: 2rem 0 6rem 0;
    background: linear-gradient(135deg, #f5f9fc 0%, #e8f4f8 100%);
    width: 100%;
    overflow: visible;
    position: relative;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 0 4rem 0;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 2rem 0 3rem 0;
    }
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, var(--white), rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
}

.pricing-section .container {
    max-width: 100%;
    padding: 0 2rem;
    overflow: visible;
}

.pricing-section .section-title {
    text-align: center !important;
    margin-bottom: 1rem;
    width: 100%;
    display: block;
}

.section-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 4rem;
}

.pricing-wrapper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.pricing-grid {
    display: flex;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0 0 0;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 61, 165, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    flex: 1 1 280px;
    max-width: 320px;
    min-width: 260px;
    overflow: visible;
    margin-top: 20px;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 61, 165, 0.25);
    border-color: var(--secondary-blue);
}

.pricing-card.featured {
    background: var(--gradient-blue);
    color: var(--white);
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(0, 61, 165, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.1) translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 61, 165, 0.35);
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-blue);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.pricing-card.featured .pricing-icon {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .pricing-title {
    color: var(--white);
}

.pricing-value {
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.3rem;
}

.pricing-value .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 0.5rem;
}

.pricing-card.featured .pricing-value .currency {
    color: var(--white);
}

.pricing-value .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1;
}

.pricing-card.featured .pricing-value .amount {
    color: var(--white);
}

.pricing-value .decimals {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 0.5rem;
}

.pricing-card.featured .pricing-value .decimals {
    color: var(--white);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--dark-gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card.featured .pricing-features li {
    color: var(--white);
}

.pricing-features i {
    color: var(--secondary-blue);
    font-size: 1rem;
}

.pricing-card.featured .pricing-features i {
    color: var(--white);
}

/* Indicadores de navegação (dots) */
.pricing-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pricing-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 61, 165, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-dots .dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 5px;
}

/* ========================================
   BLUE TOUCH SECTION - Carrossel Infinito
   ======================================== */
.blue-touch-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.blue-touch-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, var(--white) 0%, transparent 100%);
    z-index: 1;
}

.blue-touch-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 4rem;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.blue-touch-title .highlight-blue {
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.blue-touch-title .highlight-blue::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.infinite-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 3rem;
    max-width: 100vw;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

.infinite-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    animation: scroll-infinite 20s linear infinite;
    will-change: transform;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-item {
    flex: 0 0 auto;
    width: 350px;
    height: 450px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 61, 165, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}
    user-select: none;
}

.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 61, 165, 0.3) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.carousel-item:hover::before {
    opacity: 1;
}

.carousel-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 61, 165, 0.25);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.carousel-item:hover img {
    transform: scale(1.1);
}

/* Gradiente nas bordas para efeito de fade */
.infinite-carousel-wrapper::before,
.infinite-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.infinite-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
}

.infinite-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, #e3f2fd 0%, transparent 100%);
}

@media (max-width: 900px) {
    .blue-touch-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .carousel-item {
        width: 280px;
        height: 380px;
    }
    
    .carousel-track {
        gap: 1.5rem;
        animation: scroll-infinite 12s linear infinite;
    }
}

@media (max-width: 480px) {
    .blue-touch-section {
        padding: 3rem 0;
        overflow: hidden;
    }
    
    .blue-touch-title {
        font-size: 1.35rem;
        padding: 0 1rem;
        line-height: 1.4;
    }
    
    .carousel-item {
        width: 220px;
        height: 300px;
    }
    
    .carousel-track {
        gap: 0.8rem;
        animation: scroll-infinite 8s linear infinite;
    }
    
    .infinite-carousel-wrapper::before,
    .infinite-carousel-wrapper::after {
        width: 80px;
    }
}

/* ========================================
   CONTACT SECTION - Contato
   ======================================== */
/* ========================================
   CONTACT SECTION - Contato Moderno
   ======================================== */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #003da5 0%, #001a4d 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(79, 195, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Imagem de Contato */
.contact-image-container {
    position: relative;
}

.contact-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: all 0.5s ease;
}

.contact-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(79, 195, 247, 0.3);
}

.contact-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 61, 165, 0.3) 100%);
    pointer-events: none;
}

/* CTA Container */
.contact-cta-container {
    padding: 2rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.contact-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp i {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.btn-whatsapp:link,
.btn-whatsapp:visited,
.btn-whatsapp:hover,
.btn-whatsapp:active {
    color: var(--white) !important;
    text-decoration: none;
}

/* Cards de Informação */
.contact-info-cards {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.info-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary-blue);
    transform: translateY(-3px);
}

.info-card i {
    font-size: 2rem;
    color: var(--secondary-blue);
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.3rem;
}

.info-value {
    font-size: 1rem;
    color: var(--white);
    font-weight: 600;
}

/* ========================================
   FOOTER - Rodapé
   ======================================== */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(79, 195, 247, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-text {
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(79, 195, 247, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-blue);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--secondary-blue);
    color: var(--navy-blue);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   ANIMAÇÕES
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(79, 195, 247, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(79, 195, 247, 0.8));
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ========================================
   RESPONSIVIDADE - Mobile
   ======================================== */

/* Breakpoint para tablets */
@media (max-width: 1024px) {
    .bio-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    /* Grid de métricas 2x3 */
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Grid de formatos 3 colunas */
    .formats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Breakpoint principal para mobile */
@media (max-width: 768px) {
    /* Navbar mobile */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--navy-blue);
        width: 100%;
        text-align: center;
        transition: var(--transition-fast);
        padding: 2rem 0;
        gap: 1rem;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero-section {
        min-height: 70vh;
        padding: 6rem 1rem 4rem;
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .profile-image-border {
        width: 200px;
        height: 200px;
    }
    
    /* Bio Section */
    .bio-section {
        padding: 4rem 0;
        width: 100%;
    }
    
    /* Container com padding menor */
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Bio grid uma coluna */
    .bio-grid {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .bio-text,
    .metrics-column {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .bio-avatar {
        width: 120px;
        height: 120px;
        margin: 1.5rem 0;
    }
    
    .bio-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    /* Foto grid 2 colunas */
    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Métricas responsivo */
    .metrics-column {
        padding: 2rem 1.5rem;
        margin: 0;
        width: 100%;
    }
    
    .metrics-avatar {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    /* Métricas 1 coluna em mobile */
    .metrics-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .metric-card {
        padding: 1.2rem 0.8rem;
        width: 100% !important;
        max-width: 100% !important;
        background: var(--gradient-blue) !important;
        color: white !important;
    }
    
    .metric-info {
        color: var(--white) !important;
    }
    
    .metric-icon {
        color: white !important;
        font-size: 1.8rem !important;
    }
    
    .metric-label,
    .metric-value,
    .metric-platform {
        color: var(--white) !important;
        display: block !important;
        visibility: visible !important;
    }
    
    .metric-value {
        font-size: 1.6rem !important;
        font-weight: 900 !important;
    }
    
    .metric-label {
        font-size: 0.7rem !important;
        font-weight: 600 !important;
    }
    
    .metric-platform {
        font-size: 0.75rem !important;
    }
    
    .metric-icon {
        font-size: 1.5rem;
    }
    
    .metric-value {
        font-size: 1.4rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
    
    .metric-period {
        font-size: 0.65rem;
    }
    
    /* Gráfico de crescimento */
    .growth-chart {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    /* Formatos 2 colunas */
    .formats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .format-card {
        padding: 1.5rem 1rem;
    }
    
    /* Pricing responsivo - Scroll horizontal suave */
    .pricing-section {
        padding: 4rem 0;
    }
    
    .pricing-wrapper {
        perspective: 1200px;
        overflow: visible;
    }
    
    .pricing-grid {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        justify-content: flex-start;
        padding: 2rem 1.5rem 3rem 1.5rem;
        gap: 1.5rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: none;
        transform-style: preserve-3d;
    }
    
    .pricing-grid::-webkit-scrollbar {
        display: none;
    }
    
    .pricing-card {
        flex: 0 0 85vw;
        max-width: 320px;
        scroll-snap-align: center;
        transform-style: preserve-3d;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    
    .pricing-card:not(:first-child) {
        transform: translateX(-10px) translateZ(-50px) scale(0.95);
        opacity: 0.7;
    }
    
    .pricing-card.featured {
        transform: scale(1) translateZ(0);
        opacity: 1;
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateZ(10px);
    }
    
    .pricing-dots {
        display: flex;
    }
        transform: scale(1.04) translateY(-5px);
    }
    
    /* Contato responsivo */
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-image-wrapper {
        transform: rotate(0deg);
    }
    
    .contact-photo {
        height: 400px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-description {
        font-size: 1rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .contact-info-cards {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Force mobile layout */
    * {
        max-width: 100vw;
    }
    
    body, html {
        overflow-x: hidden;
    }
    
    /* Títulos menores */
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Hero ainda menor */
    .hero-section {
        min-height: 60vh;
        padding: 5rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .profile-image-border {
        width: 160px;
        height: 160px;
    }
    
    /* Bio Section */
    .bio-section {
        padding: 3rem 0;
    }
    
    .bio-avatar {
        width: 100px;
        height: 100px;
    }
    
    .bio-description {
        font-size: 0.9rem;
    }
    
    .btn-primary {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Métricas em 1 coluna no mobile pequeno */
    .metrics-column {
        padding: 1.5rem 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-icon {
        font-size: 1.3rem;
    }
    
    .metric-value {
        font-size: 1.3rem;
    }
    
    /* Gráfico */
    .growth-chart {
        padding: 1rem;
    }
    
    .growth-chart h4 {
        font-size: 1rem;
    }
    
    .chart-container {
        height: 140px;
    }
    
    /* Formatos 1 coluna em telas muito pequenas */
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .format-card {
        padding: 1.2rem;
    }
    
    /* Publis */
    .publi-card {
        padding: 1rem;
    }
    
    /* Contato */
    .contact-form input,
    .contact-form textarea {
        font-size: 0.9rem;
        padding: 0.9rem;
    }
    
    /* Container padding menor */
    .container {
        padding: 0 1rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 1rem;
    }
    
    .nav-logo {
        font-size: 1.2rem;
    }
    
    /* Partners Section */
    .partners-section {
        padding: 3rem 0;
    }
    
    .partners-section .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
}

/* ========================================
   AOS (Animate On Scroll) Override
   ======================================== */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}
