:root {
    --primary-color: #FF8C00; /* Laranja vibrante */
    --secondary-color: #FFD700; /* Amarelo ouro */
    --dark-color: #1a1a1a; /* Preto suave */
    --neutral-bg: #fdfdfd;
    --text-dark: #2d3436;
    --text-light: #636e72;
}

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

h1, h2, h3, .navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Navbar Custom */
.navbar {
    transition: all 0.4s ease;
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 3px solid var(--primary-color);
}

    .navbar.scrolled {
        padding: 8px 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

.navbar-brand {
    font-weight: 900;
    font-size: 1.25rem;
    letter-spacing: -1px;
    line-height: 1;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    text-transform: uppercase;
    font-size: 0.9rem;
}

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

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #fff3e0 100%);
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4rem); /* Responsividade fluida para o título */
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 25px;
}

    .hero-title span {
        color: var(--primary-color);
    }

.sub-title {
    font-size: clamp(2.5rem, 2vw, 4rem); /* Responsividade fluida para o título */
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 25px;
}

    .sub-title span {
        color: var(--primary-color);
    }

/* Buttons */
.btn-up {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-up {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border: none;
    box-shadow: 0 8px 15px rgba(255, 140, 0, 0.3);
}

    .btn-primary-up:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(255, 140, 0, 0.4);
        filter: brightness(1.1);
        color: var(--dark-color);
    }

/* Section Styling */
section {
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
    font-weight: 800;
    color: var(--dark-color);
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 5px;
        background: var(--primary-color);
        bottom: 0;
        left: 0;
        border-radius: 5px;
    }

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Cards & Gallery */
.img-hover-zoom {
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

    .img-hover-zoom img {
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .img-hover-zoom:hover img {
        transform: scale(1.1);
    }

/* Vídeos */
.video-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    background: #000;
}

/* Contato */
.contact-box {
    background: #ffffff;
    padding: clamp(20px, 5vw, 50px);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-top: 5px solid var(--primary-color);
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    background: #fafafa;
}

    .form-control:focus {
        box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.15);
        border-color: var(--primary-color);
    }

/* Redes Sociais */
.social-btn {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--dark-color);
    color: white;
    margin-right: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

    .social-btn:hover {
        background: var(--primary-color);
        transform: translateY(-5px);
        color: var(--dark-color);
    }

/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .float-whatsapp:hover {
        transform: scale(1.1) rotate(10deg);
        color: white;
    }

/* Responsividade Ajustada */
@media (max-width: 991px) {
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-title {
        margin-top: 20px;
    }

    .hero .d-flex {
        justify-content: center;
    }

    .section-title::after {
        left: 50% !important;
        transform: translateX(-50%);
    }

    .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 40px;
        text-align: center;
    }
}

/* ===== SWIPER AJUSTE ===== */
.swiper {
    width: 100%;
    padding: 20px 0;
}

.swiper-slide {
    width: 280px;
}

    .swiper-slide img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 12px;
        transition: 0.3s;
    }

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

/* ===== BOTÃO WHATS ===== */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 999;
}

/* ===== SOCIAL ===== */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 20px;
    color: white;
    transition: 0.3s;
}

/* Instagram gradient oficial */
.instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* YouTube oficial */
.youtube {
    background: #FF0000;
}
.whatsapp {
    background: #25D366;
}
.social-btn:hover {
    transform: scale(1.1);
}

