/* ==========================================================================
   Z+ ACADEMIA - PREMIUM STYLE SHEET
   Identidade: Dark Premium, Acentos em Amarelo Fitness Vibrante
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Variables */
:root {
    --bg-primary: #050505;
    --bg-secondary: #0f0f12;
    --bg-card: #141418;
    --bg-card-hover: #1c1c22;
    --accent: #ffe600;
    --accent-hover: #e6ce00;
    --accent-glow: rgba(255, 230, 0, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #a3a3a3;
    --text-muted: #6b7280;
    --border-color: rgba(255, 255, 255, 0.07);
    --border-accent: rgba(255, 230, 0, 0.2);
    --font-family: 'Inter', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 90px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

span.highlight {
    color: var(--accent);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Common Layout Components */
.section {
    padding: 100px 20px;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--accent);
    color: #000;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 230, 0, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* 1. Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    height: 70px;
    background-color: rgba(5, 5, 5, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    color: #fff;
}

.logo span {
    color: var(--accent);
}

.logo img {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover, .nav-link.active {
    color: #fff;
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-buttons .btn {
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mobile Menu Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* 2. Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-height) + 40px) 20px 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero overlay gradient */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.65) 0%, rgba(5, 5, 5, 0.85) 60%, var(--bg-primary) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    background-color: rgba(255, 230, 0, 0.08);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 230, 0, 0.25);
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.03);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-whatsapp {
    position: relative;
    overflow: hidden;
    animation: pulseWhatsapp 2s infinite;
}

.btn-hero-structure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: var(--transition-smooth);
}

.btn-hero-structure:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 230, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 230, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 230, 0, 0);
    }
}

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.badge-item {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* 3. Sobre a Empresa */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-content .section-tag {
    margin-bottom: 15px;
}

.sobre-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.sobre-text {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 30px;
}

.sobre-text p {
    margin-bottom: 15px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.sobre-stat-card {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stat-icon {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 10px;
}

.stat-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.sobre-img-container {
    position: relative;
}

.sobre-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.sobre-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.sobre-img-container:hover .sobre-image img {
    transform: scale(1.03);
}

.sobre-img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--accent);
    color: #000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 24px var(--accent-glow);
    text-align: center;
    z-index: 10;
}

.sobre-img-badge .badge-large {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.sobre-img-badge .badge-small {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* 4. Sessão de Diferenciais */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dif-card {
    background-color: rgba(20, 20, 25, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dif-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dif-icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 230, 0, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--accent);
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dif-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: #fff;
}

.dif-card-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Hover Diferenciais */
.dif-card:hover {
    transform: translateY(-8px);
    background-color: rgba(30, 30, 35, 0.85);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 230, 0, 0.04);
}

.dif-card:hover::before {
    transform: scaleX(1);
}

.dif-card:hover .dif-icon-box {
    background-color: var(--accent);
    color: #000;
    border-color: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 20px var(--accent-glow);
}

/* 5. Sessão Persuasiva ("Sua rotina...") */
.persuasao {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.persuasao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.98) 50%, rgba(5, 5, 5, 0.7) 100%);
    z-index: 1;
}

.persuasao-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 65px;
    align-items: center;
}

.persuasao-content .section-title {
    text-align: left;
    font-size: 42px;
}

.persuasao-text {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.persuasao-list {
    margin-bottom: 40px;
}

.persuasao-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.persuasao-check {
    color: var(--accent);
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
}

.persuasao-item-text {
    font-size: 15px;
}

.persuasao-item-text strong {
    color: #fff;
}

/* 6. Sessão de Planos */
.planos-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.plano-card {
    flex: 1;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 45px 35px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
}

.plano-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px var(--accent-glow);
    text-transform: uppercase;
}

.plano-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.plano-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.plano-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.plano-preco-box {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.plano-cifr {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-right: 4px;
}

.plano-preco {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.plano-periodo {
    font-size: 14px;
    color: var(--text-secondary);
    margin-left: 5px;
}

.plano-beneficios {
    margin-bottom: 35px;
    flex-grow: 1;
}

.plano-beneficio-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.plano-beneficio-item svg {
    color: var(--accent);
    flex-shrink: 0;
}

.plano-card .btn {
    width: 100%;
}

/* Destaque Plano Promocional com Glow Animado */
@keyframes borderGlow {
    0% {
        border-color: rgba(255, 230, 0, 0.4);
        box-shadow: 0 15px 40px rgba(255, 230, 0, 0.1), inset 0 0 20px rgba(255, 230, 0, 0.01);
    }
    50% {
        border-color: rgba(255, 230, 0, 1);
        box-shadow: 0 15px 40px rgba(255, 230, 0, 0.25), 0 0 15px rgba(255, 230, 0, 0.1), inset 0 0 20px rgba(255, 230, 0, 0.03);
    }
    100% {
        border-color: rgba(255, 230, 0, 0.4);
        box-shadow: 0 15px 40px rgba(255, 230, 0, 0.1), inset 0 0 20px rgba(255, 230, 0, 0.01);
    }
}

.plano-card.destacado {
    border-color: var(--accent);
    animation: borderGlow 3s infinite ease-in-out;
    transform: scale(1.03);
}

.plano-card.destacado::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1.5px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.plano-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.plano-card.destacado:hover {
    transform: scale(1.05) translateY(-8px);
}

.planos-disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 35px;
}

/* 7. Sessão de Estrutura */
.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.est-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    aspect-ratio: 4 / 3;
    cursor: pointer;
    background-color: #16161a;
}

.est-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.est-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.2) 70%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.est-info {
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.est-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.est-zoom-icon {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Skeleton Loading para Imagens */
.skeleton-loader {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #101014 25%, #1c1c24 50%, #101014 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hover Estrutura */
.est-item:hover .est-img {
    transform: scale(1.06) rotate(0.5deg);
}

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

.est-item:hover .est-info {
    transform: translateY(0);
}

/* Lightbox Modal Premium */
.lightbox {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.96);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    max-width: 900px;
    max-height: 80vh;
    position: relative;
    z-index: 2002;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    transition: var(--transition-smooth);
    z-index: 2005;
}

.lightbox-close:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 2005;
    font-size: 18px;
}

.lightbox-nav:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

.lightbox-caption {
    color: var(--text-secondary);
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
    .lightbox-prev {
        left: 15px;
    }
    .lightbox-next {
        right: 15px;
    }
}

/* 8. Depoimentos */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 70px 20px; /* Deixa 70px nas laterais para as setas flutuantes */
}

.depoimentos-carousel {
    display: flex;
    gap: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.depoimentos-carousel .dep-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    background-color: rgba(20, 20, 25, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.dep-stars {
    color: var(--accent);
    font-size: 16px;
    margin-bottom: 15px;
}

.dep-text {
    font-size: 15px;
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 600px;
}

.dep-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dep-avatar {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
}

.dep-name {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
}

.dep-tag {
    font-size: 12px;
    color: var(--text-muted);
}

/* Hover Depoimentos */
.depoimentos-carousel .dep-card:hover {
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.02);
}

/* Controles do Carrossel com Posicionamento Flutuante Lateral */
.carousel-nav {
    position: static;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 16px;
    z-index: 10;
}

.carousel-btn.prev-btn {
    left: 10px;
}

.carousel-btn.next-btn {
    right: 10px;
}

.carousel-btn:hover:not(:disabled) {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.carousel-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    align-items: center;
    margin-top: 25px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-glow);
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 10px 15px 20px;
    }
    
    .carousel-btn {
        display: none !important; /* Esconde setas no mobile, priorizando swipe */
    }
    
    .depoimentos-carousel {
        gap: 0;
    }
    
    .depoimentos-carousel .dep-card {
        flex: 0 0 100%;
        padding: 25px 20px;
    }
    
    .dep-text {
        font-size: 14px;
    }
}

/* 9. CTA Final */
.cta-final {
    background: radial-gradient(circle at center, #111115 0%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 230, 0, 0.03);
    filter: blur(80px);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.cta-box * {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 15px;
}

.cta-sub {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-box .btn-primary {
    font-size: 18px;
    padding: 18px 48px;
    box-shadow: 0 5px 30px var(--accent-glow);
}

/* 10. Footer */
.footer {
    background-color: #050505;
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo span {
    color: var(--accent);
}

.footer-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-icon:hover {
    color: #000;
    background-color: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-secondary);
}

.footer-contact svg {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-developer {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-developer a {
    color: var(--text-secondary);
}

.footer-developer a:hover {
    color: var(--accent);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */

@media (max-width: 1024px) {
    .section {
        padding: 80px 20px;
    }
    
    .hero-title {
        font-size: 52px;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sobre-image img {
        height: 400px;
    }

    .sobre-img-badge {
        left: 20px;
    }

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

    .persuasao-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

@media (max-width: 1080px) {
    :root {
        --header-height: 70px;
    }

    .header-buttons {
        display: none; /* Esconde botões do header no mobile */
    }

    .hamburger {
        display: block; /* Ativa hambúrguer */
    }

    /* Menu de navegação mobile slide-in */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background-color: var(--bg-secondary);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        z-index: 1050;
        transition: var(--transition-smooth);
        padding: 40px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        font-weight: 700;
    }

    /* Hambúrguer animado quando ativo */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (max-width: 768px) {
    /* Hero */
    .hero {
        text-align: center;
        padding-top: 100px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-badges {
        justify-content: center;
        gap: 20px;
    }

    /* Seções */
    .section-title {
        font-size: 30px;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .planos-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .plano-card {
        width: 100%;
        max-width: 400px;
    }

    .plano-card.destacado {
        transform: none;
    }
    
    .plano-card.destacado:hover {
        transform: translateY(-5px);
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 36px;
    }

    .cta-sub {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 34px;
    }
    
    .sobre-image img {
        height: 300px;
    }

    .estrutura-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   ESTILOS PREMIUM CMS ADICIONAIS
   ========================================================================== */

/* Botões de Filtro da Galeria */
.btn-filter {
    background-color: rgba(255, 255, 255, 0.03);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.btn-filter:hover, .btn-filter.active {
    background-color: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.faq-item {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-icon {
    font-size: 20px;
    color: var(--accent);
    font-weight: bold;
    transition: var(--transition-smooth);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer p {
    padding: 0 20px 20px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Seção de Contato e Captação de Leads */
.contact-section {
    padding: 100px 20px;
    background-color: var(--bg-primary);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}
.lead-form-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.lead-form-container h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}
.form-group-public {
    margin-bottom: 20px;
}
.form-group-public label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}
.form-control-public {
    width: 100%;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 14px 18px;
    color: #fff;
    font-size: 15px;
    transition: var(--transition-smooth);
}
.form-control-public:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
    background-color: rgba(255,255,255,0.05);
}
.form-feedback-message {
    display: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeIn 0.3s ease;
}
.form-feedback-message.success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}
.form-feedback-message.error {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Seção de Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.blog-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.blog-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}
.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent);
    color: #000;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}
.blog-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.blog-card-date {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.blog-card-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--text-primary);
}
.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}
.blog-card-link {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Modal Leitor de Blog */
.blog-reader-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5,5,5,0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.blog-reader-modal.active {
    display: flex;
}
.blog-reader-content {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}
.blog-reader-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}
.blog-reader-close:hover {
    background-color: var(--accent);
    color: #000;
}
.blog-reader-header-img {
    height: 350px;
    position: relative;
}
.blog-reader-header-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-reader-body {
    padding: 40px;
}
.blog-reader-meta {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}
.blog-reader-body h2 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}
.blog-reader-text {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
}
.blog-reader-text h1, .blog-reader-text h2, .blog-reader-text h3 {
    color: var(--text-primary);
    margin: 25px 0 15px 0;
}
.blog-reader-text p {
    margin-bottom: 15px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes zoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .blog-reader-header-img {
        height: 200px;
    }
    .blog-reader-body {
        padding: 20px;
    }
    .blog-reader-body h2 {
        font-size: 24px;
    }
}

/* Custom Overrides & Enhancements Z+ Premium */
.footer-map-container {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}
.footer-map-container:hover {
    border-color: rgba(255, 230, 0, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 230, 0, 0.03);
}

/* Mobile responsive padding tuning */
@media (max-width: 768px) {
    .section {
        padding: 60px 15px !important;
    }
    .hero-title {
        font-size: 40px !important;
        letter-spacing: -1.5px !important;
    }
    .hero-subtitle {
        font-size: 18px !important;
    }
    .hero-desc {
        font-size: 14px !important;
        margin-bottom: 25px !important;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px !important;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .testimonials-carousel-wrapper {
        padding: 0 5px;
    }
    .depoimentos-carousel {
        gap: 15px !important;
    }
}

/* ==========================================================================
   REESTRUTURAÇÃO DO CONTATO (SEM FORMULÁRIO)
   ========================================================================== */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: stretch;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
}

.contact-desc {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    border-color: rgba(255, 230, 0, 0.2);
    background-color: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-info-card.full-width {
    grid-column: span 2;
}

.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: rgba(255, 230, 0, 0.05);
    border: 1px solid rgba(255, 230, 0, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-info-card:hover .contact-icon-wrapper {
    background-color: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.contact-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.contact-card-content p, .contact-card-content .contact-link {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.contact-card-content .contact-link {
    display: block;
    transition: var(--transition-smooth);
}

.contact-card-content .contact-link:hover {
    color: var(--accent);
}

.contact-map-wrapper {
    height: 100%;
    min-height: 400px;
}

.footer-map-container-modern {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.footer-map-container-modern iframe {
    display: block;
}

.footer-map-container-modern:hover {
    border-color: rgba(255, 230, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 230, 0, 0.05);
}

@media (max-width: 991px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-map-wrapper {
        min-height: 350px;
    }
    .footer-map-container-modern {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-card.full-width {
        grid-column: span 1;
    }
}
