/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - VITTÁ BEAUTY (PREMIUM)
   ========================================================================== */
:root {
    /* Colors - Deep Coffee & Metallic Gold */
    --bg-dark: #0f0a07;
    --bg-card: #18100b;
    --bg-glass: rgba(24, 16, 11, 0.6);
    --gold-primary: #c9a358;
    --gold-light: #eaddb6;
    --gold-dark: #917134;
    --gold-gradient: linear-gradient(135deg, #eaddb6 0%, #c9a358 50%, #917134 100%);
    --text-light: #f4eee1;
    --text-muted: #b0a79a;
    
    /* Typography */
    --font-sans: 'Outfit', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    /* Effects */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-gold: 0 4px 20px rgba(201, 163, 88, 0.15);
    --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.5);
    --border-glass: 1px solid rgba(201, 163, 88, 0.2);
}

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

html,body {
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    /* Subtle noise texture for a premium look */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.highlight-gold {
    color: var(--gold-primary);
    font-style: italic;
}

.text-center { text-align: center; }
.mt-large { margin-top: 4rem; }
.w-100 { width: 100%; text-align: center; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--gold-gradient);
    color: var(--bg-dark);
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
}

.btn-primary i {
    font-size: 1.2rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201, 163, 88, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--gold-primary);
    padding: 13px 32px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--gold-primary);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: rgba(201, 163, 88, 0.1);
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
.preloader {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.preloader-logo {
    width: 150px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.95); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(201,163,88,0.5)); }
    100% { transform: scale(0.95); opacity: 0.7; }
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 10, 7, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: var(--border-glass);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 50px;
    transition: var(--transition-smooth);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-primary);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--gold-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 2rem;
    cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%; height: 100%; /* Fixed to cover entire screen */
    background: rgba(15, 10, 7, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* For iOS support */
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.close-menu {
    position: absolute;
    top: 30px; right: 30px;
    background: none;
    border: none;
    color: var(--gold-primary);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav a.mobile-link {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--text-light);
    letter-spacing: 1px;
}

.mobile-nav a:hover {
    color: var(--gold-primary);
}

/* ==========================================================================
   HERO SECTION (Floating Badges & Ultra Premium)
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* BG Glow effect */
.hero::before {
    content: '';
    position: absolute;
    top: 20%; left: -10%;
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(201,163,88,0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.hero-badge-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(201, 163, 88, 0.1);
    border: 1px solid rgba(201, 163, 88, 0.3);
    border-radius: 30px;
    color: var(--gold-primary);
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Image & Floating Badges */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-blob {
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(201,163,88,0.2) 0%, rgba(24,16,11,0) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Glassmorphic Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(24, 16, 11, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: var(--border-glass);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    box-shadow: var(--shadow-dark);
    animation: float 6s ease-in-out infinite;
}

.badge-top-right {
    top: 15%;
    right: -5%;
    animation-delay: 0s;
}

.badge-bottom-left {
    bottom: 15%;
    left: -5%;
    animation-delay: -3s;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    color: var(--bg-dark);
    font-size: 1.2rem;
}

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

.badge-title {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
}

.badge-desc {
    font-size: 0.75rem;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* ==========================================================================
   SOBRE MIM (Viewport-fit side-by-side on Desktop)
   ========================================================================== */
.sobre {
    background-color: var(--bg-card);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 100vh; /* FITS EXACTLY IN VIEWPORT */
    gap: 60px;
    padding: 60px 24px;
}

.sobre-image-col {
    display: flex;
    justify-content: flex-end;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    /* Remover moldura solicitada pelo usuário, pois a imagem não tem fundo */
}

.sobre-image {
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
}

.sobre-text-col {
    padding-right: 40px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 24px;
}

.sobre-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.sobre-text strong {
    color: var(--text-light);
    font-weight: 500;
}

/* Cargo / Título Profissional */
.sobre-cargo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(201, 163, 88, 0.08);
    border: 1px solid rgba(201, 163, 88, 0.25);
    border-radius: 30px;
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.sobre-cargo i {
    font-size: 1.1rem;
}

.sobre-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sobre-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.05rem;
    color: var(--text-light);
}

/* Melhoria dos ícones na lista Sobre Mim */
.sobre-list .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(201, 163, 88, 0.1);
    border: 1px solid rgba(201, 163, 88, 0.3);
    border-radius: 12px;
    color: var(--gold-primary);
    font-size: 1.5rem;
}

/* ==========================================================================
   GALERIA (Swiper.js Custom Styles)
   ========================================================================== */
.galeria {
    padding: 100px 0;
    overflow: hidden; /* For coverflow */
}

.section-subtitle {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Centraliza os títulos "Mãos" e "Pés" em cima do carrossel */
.galeria-subtitle {
    font-family: var(--font-serif);
    color: var(--gold-primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
}

.swiper-slide {
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    opacity: 0.4;
    filter: grayscale(80%) blur(4px);
    box-shadow: var(--shadow-dark);
}

.swiper-slide-active {
    opacity: 1;
    filter: grayscale(0%) blur(0px);
    box-shadow: 0 15px 40px rgba(201, 163, 88, 0.2);
    border: var(--border-glass);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slide Overlay (Degradê & Títulos) */
.slide-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 55%; /* Cobrir apenas metade inferior */
    background: linear-gradient(to top, rgba(15, 10, 7, 0.95) 0%, rgba(15, 10, 7, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    box-sizing: border-box;
    z-index: 2;
    opacity: 0;
    transition: var(--transition-smooth);
    pointer-events: none;
}

/* Mostrar overlay apenas no slide central ativo */
.swiper-slide-active .slide-overlay {
    opacity: 1;
}

.slide-tag {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.slide-tag i {
    font-size: 0.85rem;
}

.slide-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.2;
}

/* Swiper Pagination Gold Customization */
.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary) !important;
    opacity: 1 !important;
}

/* ==========================================================================
   BANNERS (CORREÇÃO DE Z-INDEX)
   ========================================================================== */
.banner-divisor {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0; /* Remove white space below image */
    font-size: 0;
}

.banner-bg {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 0;
}

/* Esconder os overlays e conteúdos que foram solicitados para remoção */
.banner-overlay, .banner-content {
    display: none !important;
}


.banner-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

/* ==========================================================================
   ESPECIALIDADES (Cards Premium)
   ========================================================================== */
.especialidades {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.especialidades::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(201,163,88,0.05) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.especialidade-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Glassmorphic Top-Right Radial Glow */
.especialidade-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(201, 163, 88, 0.15), transparent 70%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
    pointer-events: none;
}

.especialidade-card:hover::before {
    opacity: 1;
}

.especialidade-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 163, 88, 0.5);
    box-shadow: var(--shadow-gold);
}

.especialidade-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background: rgba(201, 163, 88, 0.08);
    border: 1px solid rgba(201, 163, 88, 0.25);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.especialidade-card:hover .especialidade-icon {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 0 20px rgba(201, 163, 88, 0.35);
    border-color: transparent;
}

.especialidade-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-light);
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.especialidade-desc {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   STUDIO SECTION (Carousel Premium)
   ========================================================================== */
.studio-section {
    padding: 100px 0;
    background: var(--bg-card);
    border-top: var(--border-glass);
    border-bottom: var(--border-glass);
    position: relative;
    overflow: hidden;
}

.studio-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(201,163,88,0.06) 0%, rgba(0,0,0,0) 70%);
    z-index: 0;
    pointer-events: none;
}

/* Carousel Wrapper */
.studio-carousel-wrapper {
    max-width: 750px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

.swiper-studio {
    width: 100%;
    padding-bottom: 55px;
}

.swiper-studio .swiper-slide {
    width: 100%;
    height: auto;
    opacity: 1;
    filter: none;
    border-radius: 0;
    box-shadow: none;
}

.swiper-studio .swiper-slide-active {
    box-shadow: none;
    border: none;
}

/* Card do Slide */
.studio-slide-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 163, 88, 0.25);
    background: var(--bg-dark);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(201, 163, 88, 0.08);
    transition: var(--transition-smooth);
}

.studio-slide-card:hover {
    border-color: rgba(201, 163, 88, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 163, 88, 0.12);
}

/* Imagem — proporção original, sem cortes */
.studio-slide-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Caption elegante */
.studio-slide-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(24, 16, 11, 0.95) 0%, rgba(15, 10, 7, 0.98) 100%);
    border-top: 1px solid rgba(201, 163, 88, 0.15);
}

.studio-slide-caption i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.studio-slide-caption span {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Setas de Navegação Glassmorphic */
.studio-nav-prev,
.studio-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 16, 11, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201, 163, 88, 0.3);
    border-radius: 50%;
    color: var(--gold-primary);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.studio-nav-prev { left: -24px; }
.studio-nav-next { right: -24px; }

.studio-nav-prev:hover,
.studio-nav-next:hover {
    background: var(--gold-gradient);
    color: var(--bg-dark);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(201, 163, 88, 0.3);
}

/* Pagination custom */
.studio-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
}

.studio-pagination .swiper-pagination-bullet-active {
    width: 28px;
    border-radius: 5px;
}

/* ==========================================================================
   CURSOS SECTION (Redesenhado - 2 Cursos Separados)
   ========================================================================== */

/* Banner do Curso — Imagem pura, sem overlay */
.curso-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
}

.curso-banner-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
}

/* Conteúdo detalhado do curso */
.curso-detail-section {
    padding: 80px 0;
    background: var(--bg-dark);
    position: relative;
}

.curso-detail-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,163,88,0.3), transparent);
}

.curso-detail-grid {
    max-width: 800px;
    margin: 0 auto;
}

.curso-detail-content {
    text-align: center;
}

.curso-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(201, 163, 88, 0.1);
    border: 1px solid rgba(201, 163, 88, 0.3);
    border-radius: 30px;
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.curso-detail-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 12px;
}

.curso-detail-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-style: italic;
}

.curso-detail-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: left;
}

.curso-detail-desc strong {
    color: var(--text-light);
}

/* Seções do que vai aprender e bônus */
.curso-detail-features,
.curso-detail-bonus {
    text-align: left;
    margin-bottom: 35px;
    padding: 30px;
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 12px;
}

.curso-detail-features h4,
.curso-detail-bonus h4 {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.curso-detail-features h4 i,
.curso-detail-bonus h4 i {
    color: var(--gold-primary);
    font-size: 1.3rem;
}

.curso-detail-features ul,
.curso-detail-bonus ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.curso-detail-features li,
.curso-detail-bonus li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-light);
}

.curso-detail-features li i {
    color: #4ade80;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.curso-detail-bonus li i {
    color: var(--gold-primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Extras: certificado, brindes, coffee break */
.curso-detail-extras {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.extra-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 12px;
    background: rgba(201, 163, 88, 0.05);
    border: 1px solid rgba(201, 163, 88, 0.12);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.extra-item:hover {
    background: rgba(201, 163, 88, 0.1);
    border-color: rgba(201, 163, 88, 0.3);
    transform: translateY(-3px);
}

.extra-item i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.extra-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

/* Botão do curso */
.curso-detail-btn {
    font-size: 1rem;
    padding: 16px 40px;
}

/* CTA Final dos cursos */
.curso-cta-final {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: var(--border-glass);
}

.curso-cta-text {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 12px;
}

.curso-cta-text i {
    color: var(--gold-primary);
}

.curso-cta-signature {
    font-size: 1rem;
    color: var(--gold-primary);
    font-weight: 500;
}

/* ==========================================================================
   STUDIO & MAP (Localização)
   ========================================================================== */
.estudio {
    padding: 100px 0;
}

.estudio-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.estudio-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-item i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-top: 5px;
}

.info-item h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.badge-agendamento {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 163, 88, 0.1);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(201, 163, 88, 0.05);
}

.estudio-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: var(--border-glass);
}

/* ==========================================================================
   FOOTER PROFISSIONAL
   ========================================================================== */
.footer {
    background: #0a0705; /* Even darker for contrast */
    padding: 80px 0 20px;
    border-top: var(--border-glass);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 400px;
    margin-bottom: 20px;
}

.footer-social h4, .footer-links h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-links, .footer-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a, .footer-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.social-links a:hover, .footer-menu a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.social-links i {
    font-size: 1.4rem;
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.developed-by {
    margin-top: 8px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.developed-by a {
    font-weight: 500;
    transition: var(--transition-smooth);
}

.developed-by a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE FIRST & TABLET)
   ========================================================================== */

/* Tablet landscape e abaixo */
@media (max-width: 1024px) {
    /* Studio carousel */
    .studio-carousel-wrapper {
        max-width: 650px;
    }

    /* Extras do curso */
    .curso-detail-extras {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-badge-text {
        margin: 0 auto 24px;
    }
    
    .hero-subtitle {
        margin: 0 auto 40px;
    }

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

    .nav-links, .nav-btn {
        display: none !important;
    }

    .menu-toggle {
        display: block !important;
    }

    .sobre-container {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 50px 24px;
        text-align: center;
        row-gap: 10px;
    }

    .sobre-image-col {
        justify-content: center;
    }

    .sobre-image {
        max-width: 320px;
        margin-bottom: -50px;
    }

    .sobre-text-col {
        padding-right: 0;
    }
    
    .sobre-list {
        align-items: center; 
    }

    .estudio-container {
        grid-template-columns: 1fr;
    }
    
    .info-blocks {
        align-items: center;
        text-align: center;
    }
    
    .info-item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 0 auto 20px;
    }
    
    .social-links, .footer-menu {
        align-items: center;
    }

    /* Studio carousel responsivo */
    .studio-carousel-wrapper {
        max-width: 100%;
    }

    .studio-nav-prev,
    .studio-nav-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .studio-nav-prev { left: 10px; }
    .studio-nav-next { right: 10px; }

    /* Cursos */
    .curso-detail-title {
        font-size: 2.4rem;
    }

    .curso-detail-features,
    .curso-detail-bonus {
        padding: 20px;
    }
}

@media (max-width: 768px) {

    .especialidades-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .especialidade-card {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .banner-title {
        font-size: 2.5rem;
    }

    .floating-badge {
        padding: 8px 12px;
    }
    
    .badge-icon {
        width: 30px; height: 30px;
        font-size: 1rem;
    }
    
    .badge-title {
        font-size: 0.8rem;
    }
    
    .badge-desc {
        font-size: 0.65rem;
    }

    /* Cursos responsivo */
    .curso-detail-title {
        font-size: 2rem;
    }

    .curso-detail-extras {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .curso-detail-desc {
        text-align: left;
    }

    .curso-cta-text {
        font-size: 1.1rem;
    }

    /* Studio mobile */
    .studio-nav-prev { left: 6px; }
    .studio-nav-next { right: 6px; }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-secondary {
        width: 100%;
    }

    /* Cursos extras em coluna única */
    .curso-detail-extras {
        grid-template-columns: 1fr 1fr;
    }

    .curso-detail-section {
        padding: 50px 0;
    }

    .curso-detail-badge {
        font-size: 0.7rem;
    }
}
