* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ffffff;
    --secondary: #ffffff;
    --accent: #ffffff;
    --accent-dark: #cccccc;
    --accent-light: #ffffff;
    --dark: #000000;
    --dark-secondary: #0a0a0a;
    --dark-tertiary: #1a1a1a;
    --text: #ffffff;
    --text-secondary: #cccccc;
    --gradient: linear-gradient(135deg, #ffffff 0%, #cccccc 50%, #ffffff 100%);
    --gradient-dark: linear-gradient(135deg, #999999 0%, #cccccc 100%);
    --glow: 0 0 20px rgba(255, 255, 255, 0.2);
    --glow-strong: 0 0 30px rgba(255, 255, 255, 0.3);
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* ========== LOADING SCREEN ========== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loader-wrapper.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.loader {
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid #ffffff;
    border-radius: 50%;
    animation: spin 0.2s linear infinite;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    animation: pulse 2s ease-in-out infinite;
}

.loader-cazza {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600; /* Alterado de 900 para 600 */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 6px;
}

.loader-decor {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    width: auto;
    transition: 0.3s;
    filter: brightness(1);
}

.logo-img:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    color: var(--text);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px; /* Reduzido de 2px para ficar mais condensado */
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: 0.3s;
}

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

.nav-link:hover {
    color: var(--accent);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    border-radius: 10px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    font-family: 'Oswald', 'Montserrat', sans-serif;
    color: var(--text);
    text-decoration: none;
    display: block;
    padding: 10px;
    transition: 0.3s;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 1px;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO SLIDER ========== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(0, 0, 0, 0.8) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 0, 0.8) 100%
    );
}

.slide-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: particleMove 20s linear infinite;
}

.slide-content {
    text-align: center;
    z-index: 2;
    padding: 20px;
    position: relative;
}

.slide-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 64px;
    font-weight: 600; /* Alterado de 900 para 600 */
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    animation: slideUp 0.8s ease;
}

.slide-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 0.2s backwards;
    font-family: 'Montserrat', sans-serif;
}

/* Botões */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: 0.3s;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gradient);
    color: #000;
    box-shadow: var(--glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-strong);
}

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

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow);
    background: rgba(255, 255, 255, 0.1);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 10;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn:hover, .next-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: var(--glow);
    transform: scale(1.1);
    color: #000;
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: #ffffff;
    box-shadow: var(--glow);
    border-color: #fff;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: particleMove 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 600; /* Adicionado weight */
    margin-bottom: 15px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
}

/* ========== FEATURES ========== */
.features {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: 0.3s;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glow);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500; /* Alterado para medium */
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 30px;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
    z-index: 1000;
    animation: float 3s ease-in-out infinite;
}

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

/* ========== FOOTER ========== */
.footer {
    background: var(--dark-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500; /* Alterado de sem definição para 500 */
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

.footer-col p i {
    margin-right: 10px;
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
    font-size: 18px;
}

.social-icon:hover {
    background: #ffffff;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: var(--glow);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
}

/* ========== ANIMAÇÕES ========== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

@keyframes particleMove {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVO ========== */
@media (max-width: 1024px) {
    .slide-title {
        font-size: 48px;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: 0.3s;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        border: none;
        padding-left: 20px;
        display: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .slide-title {
        font-size: 36px;
    }
    
    .slide-subtitle {
        font-size: 16px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* ========== GALERIA DE AMBIENTES ========== */
.gallery-section {
    padding: 40px 20px 80px;
    background: var(--dark);
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 600; /* Alterado de sem definição para 600 */
    margin-bottom: 10px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.gallery-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-slide {
    min-width: 350px;
    flex-shrink: 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: 0.3s;
    cursor: pointer;
}

.gallery-slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow);
    border-color: #ffffff;
}

.gallery-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

.gallery-slide:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-align: center;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

/* Botões da galeria */
.gallery-prev,
.gallery-next {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.gallery-prev:hover,
.gallery-next:hover {
    background: #ffffff;
    border-color: #ffffff;
    box-shadow: var(--glow);
    transform: scale(1.1);
    color: #000;
}

/* Dots da galeria */
.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.gallery-dot.active {
    background: #ffffff;
    box-shadow: var(--glow);
    width: 25px;
    border-radius: 5px;
}

/* Links do footer */
.footer-col:nth-child(2) a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
}

.footer-col:nth-child(2) a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-col:nth-child(2) a i {
    margin-right: 10px;
    color: #ffffff;
    transition: 0.3s;
}

.footer-col:nth-child(2) a:hover i {
    transform: scale(1.2);
}

.dmacher-link {
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.dmacher-link:hover {
    color: #cccccc;
    text-decoration: underline;
}

.footer-logo {
    height: auto;
    max-height: 50px;
    max-width: 180px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1);
    transition: 0.3s;
    object-fit: contain;
}

.footer-logo:hover {
    filter: brightness(1.2);
    transform: scale(1.05);
}

/* Centralizar no mobile */
@media (max-width: 768px) {
    .footer-logo {
        max-width: 150px;
        max-height: 40px;
        margin: 0 auto 20px;
        display: block;
    }
    
    .gallery-slide {
        min-width: 280px;
    }
    
    .gallery-slide img {
        height: 200px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 14px;
    }
    
    .gallery-title {
        font-size: 24px;
    }
}

/* ========== PAGE HERO (páginas internas) ========== */
.page-hero {
    padding: 160px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: particleMove 25s linear infinite;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 600; /* Alterado de sem definição para 600 */
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
}

/* Dropdown mobile */
@media (max-width: 768px) {
    .dropdown-link {
        font-family: 'Oswald', 'Montserrat', sans-serif;
    }
    
    .dropdown-menu a {
        font-family: 'Oswald', 'Montserrat', sans-serif;
        letter-spacing: 1px;
    }
}
    


/* Desktop hover */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-link i {
        transform: rotate(180deg);
    }
}