/* css/base.css */
:root {
    /* Paleta Refinada */
    --vermelho-banda: #d32f2f;
    --vermelho-escuro: #8b0000;
    --dark-bg: #050505;
    --preto-carvão: #111111;
    --preto-cinza: #121212;
    --branco-puro: #ffffff;
    --cinza-claro: #e0e0e0;
    --cinza-medio: #b0b0b0;
    --dourado: #ffd700;

    /* Gradientes */
    --gradiente-vermelho: linear-gradient(
        135deg,
        var(--vermelho-banda),
        var(--vermelho-escuro)
    );
    --gradiente-preto: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.9) 0%,
        #000000 100%
    );
    --gradiente-card: linear-gradient(145deg, #1a1a1a, #0f0f0f);

    /* Sombras */
    --sombra-vermelha: 0 5px 25px rgba(228, 31, 37, 0.3);
    --sombra-pesada: rgba(20, 20, 20, 0.7);
    --sombra-suave: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--branco-puro);
    overflow-x: hidden;
    line-height: 1.6;
    background-image:
        radial-gradient(
            circle at 15% 50%,
            rgba(139, 0, 0, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 85% 30%,
            rgba(211, 47, 47, 0.05),
            transparent 25%
        );
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-display: swap;
}

/* ==========================================================================
   UTILITÁRIOS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    filter: blur(8px);
    transition:
        opacity 0.85s ease-out,
        transform 0.85s cubic-bezier(0.2, 0.75, 0.2, 1),
        filter 0.85s ease-out;
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.hero .reveal {
    transition:
        opacity 2.2s ease-out,
        transform 2.2s ease-out;
}

.delay-1 {
    --reveal-delay: 0.12s;
}

.delay-2 {
    --reveal-delay: 0.22s;
}

.delay-3 {
    --reveal-delay: 0.32s;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   ANIMAÇÕES
   ========================================================================== */
@keyframes typeEffect {
    to {
        width: 100%;
        border-color: transparent;
    }
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */
.botao {
    margin-top: 60px;
    text-align: center;
}

.btn-cta {
    padding: 15px 40px;
    background: var(--gradiente-vermelho);
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.3);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(211, 47, 47, 0.5);
}

/* ==========================================================================
   SEÇÕES GERAIS
   ========================================================================== */
section {
    padding: 90px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--vermelho-banda);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--cinza-medio);
    font-size: 1.1rem;
    max-width: 100%;
    margin: 0 auto;
    margin-top: 30px;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.load-error {
    background: var(--preto-carvão);
    color: var(--cinza-claro);
    text-align: center;
}

.load-error strong {
    color: var(--vermelho-banda);
}





/* layout/whatsapp.css */
/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-link:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}




/* layout/header.css */
/* ==========================================================================
   HEADER
   ========================================================================== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    backdrop-filter: blur(0px);
    border-bottom: 2px solid transparent;
    transition:
        background 0.35s ease,
        backdrop-filter 0.35s ease,
        border-color 0.35s ease,
        padding 0.35s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--sombra-suave);
}

body.menu-open {
    overflow: hidden;
}

body.menu-open header {
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(-12px);
    animation: headerItemIn 0.7s cubic-bezier(0.2, 0.75, 0.2, 1) 2.45s forwards;
}

.logo a {
    display: inline-block;
}

.logo img {
    width: 80px;
    height: auto;
    display: block;
    transition: transform 0.25s ease;
}

.logo a:hover img {
    transform: scale(1.08);
}
.logo i {
    color: var(--vermelho-banda);
}
.logo span {
    color: var(--vermelho-banda);
}

/* ==========================================================================
   NAVEGAÇÃO
   ========================================================================== */
.nav-links {
    display: flex;
    gap: 35px;
    opacity: 0;
    transform: translateY(-12px);
    animation: headerItemIn 0.7s cubic-bezier(0.2, 0.75, 0.2, 1) 2.65s forwards;
}

.nav-links a {
    text-decoration: none;
    color: var(--branco-puro);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0;
    transform: translateY(-8px);
    animation: navLinkIn 0.55s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
    transition: color 0.3s;
}

.nav-links a:nth-child(1) {
    animation-delay: 2.78s;
}

.nav-links a:nth-child(2) {
    animation-delay: 2.86s;
}

.nav-links a:nth-child(3) {
    animation-delay: 2.94s;
}

.nav-links a:nth-child(4) {
    animation-delay: 3.02s;
}

.nav-links a:nth-child(5) {
    animation-delay: 3.1s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vermelho-banda);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--vermelho-banda);
}
.nav-links a:hover::after {
    width: 100%;
}

.mobile-btn {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--branco-puro);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-12px);
    animation: headerItemIn 0.7s cubic-bezier(0.2, 0.75, 0.2, 1) 2.65s forwards;
    position: relative;
    z-index: 1003;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.mobile-btn:hover {
    background: rgba(211, 47, 47, 0.16);
    border-color: rgba(211, 47, 47, 0.45);
}

.mobile-btn span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    position: absolute;
    transition:
        transform 0.32s cubic-bezier(0.2, 0.75, 0.2, 1),
        opacity 0.2s ease;
}

.mobile-btn span:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-btn span:nth-child(3) {
    transform: translateY(6px);
}

.mobile-btn[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg);
}

.mobile-btn[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.mobile-btn[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg);
}

@keyframes headerItemIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navLinkIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes mobileMenuIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    header {
        padding: 12px 0;
    }

    .nav-links {
        position: fixed;
        inset: 0;
        z-index: 1001;
        width: 100%;
        min-height: 100dvh;
        padding: 104px 24px 32px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 14px;
        background:
            linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(17, 17, 17, 0.96));
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-16px) scale(0.985);
        animation: none;
        transition:
            opacity 0.32s ease,
            transform 0.42s cubic-bezier(0.2, 0.75, 0.2, 1),
            visibility 0s linear 0.42s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
    }

    .nav-links a {
        width: min(100%, 420px);
        padding: 16px 18px;
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
        opacity: 0;
        transform: translateY(18px);
        animation: none;
        transition:
            background 0.25s ease,
            border-color 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease;
    }

    .nav-links.active a {
        animation: mobileMenuIn 0.46s cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
    }

    .nav-links.active a:nth-child(1) {
        animation-delay: 0.08s;
    }

    .nav-links.active a:nth-child(2) {
        animation-delay: 0.14s;
    }

    .nav-links.active a:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-links.active a:nth-child(4) {
        animation-delay: 0.26s;
    }

    .nav-links.active a:nth-child(5) {
        animation-delay: 0.32s;
    }

    .nav-links a::after {
        bottom: 0;
        height: 100%;
        width: 3px;
        border-radius: 999px;
        opacity: 0;
        transition: opacity 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
        background: rgba(211, 47, 47, 0.13);
        border-color: rgba(211, 47, 47, 0.32);
        transform: translateX(4px);
    }

    .nav-links a:hover::after,
    .nav-links a:focus-visible::after {
        opacity: 1;
        width: 3px;
    }

    .mobile-btn {
        display: flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo,
    .nav-links,
    .nav-links a,
    .mobile-btn {
        opacity: 1;
        transform: none;
        animation: none;
    }

    .nav-links,
    .nav-links a,
    .mobile-btn span {
        transition: none;
    }
}




/* sections/home/home.css */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--vermelho-banda);
    position: relative;
    display: inline-block;
}

.hero h1 span::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: var(--vermelho-banda);
    overflow: hidden;
    transition: width 1s ease-in-out;
    -webkit-text-stroke: 0px;
    border-right: 2px solid var(--vermelho-banda);
    animation: typeEffect 2s 1s forwards;
}

.hero p {
    font-size: 1.2rem;
    color: var(--cinza-medio);
    margin-bottom: 40px;
    max-width: 600px;
}




/* sections/about/about.css */
/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 5px;
    transition: transform 0.25s ease;
    box-shadow: -20px 20px 0 #530000;
    filter: contrast(110%);
    cursor: pointer;
}

.about-img:hover img {
    transform: scale(1.03);
    box-shadow: -20px 20px 0 var(--vermelho-escuro);
    filter: contrast(100%);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--vermelho-banda);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #ccc;
    font-size: 1.05rem;
}




/* sections/conteudo-ig/conteudo-ig.css */
/* ==========================================================================
   INSTAGRAM CAROUSEL
   ========================================================================== */
.conteudo-ig .gallery-conteudo {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    position: relative;
}

.conteudo-ig .carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.conteudo-ig .carousel-track.is-empty {
    width: 100%;
    animation: none;
}

.conteudo-ig .instagram-loading,
.conteudo-ig .instagram-empty {
    width: 100%;
    text-align: center;
    color: var(--cinza-medio);
    padding: 2rem 1rem;
}

.conteudo-ig .carousel-slide {
    flex: 0 0 180px;
    padding: 0 6px;
    position: relative;
}

.conteudo-ig .carousel-slide img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.conteudo-ig .instagram-info {
    position: absolute;
    bottom: 0;
    left: 6px;
    right: 6px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 10px 8px 8px;
    border-radius: 0 0 12px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.conteudo-ig .views {
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.conteudo-ig .views i {
    color: #8a8a8a;
}

.conteudo-ig .stats {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.conteudo-ig .heart {
    color: #ff0000;
}

.conteudo-ig .stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}





/* sections/services/services.css */
/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
#services {
    background: var(--preto-carvão);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.services-card {
    background: var(--gradiente-card);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.services-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--vermelho-banda);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.services-card:hover::before {
    transform: scaleX(1);
}
.services-card:hover {
    transform: translateY(-10px);
    border-color: var(--vermelho-banda);
    box-shadow: var(--sombra-vermelha);
}

.services-icon {
    width: 70px;
    height: 70px;
    background: var(--vermelho-escuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--branco-puro);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.services-card:hover .services-icon {
    background: var(--vermelho-banda);
    transform: rotateY(180deg);
}

.services-card h3 {
    margin-bottom: 1rem;
    color: var(--branco-puro);
    font-size: 1.5rem;
    font-weight: 700;
}

.services-card p {
    color: var(--cinza-medio);
    line-height: 1.6;
    font-size: 0.95rem;
}




/* sections/feedback/feedback.css */
/* ==========================================================================
   FEEDBACK SECTION
   ========================================================================== */
.feedback {
    background: var(--preto-carvão);
    position: relative;
    overflow: hidden;
}

.feedback::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(
            circle at 20% 30%,
            rgba(211, 47, 47, 0.03),
            transparent 40%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(139, 0, 0, 0.03),
            transparent 40%
        );
    z-index: 0;
}

.feedback .carousel-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.feedback .carousel-container {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.feedback .carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--vermelho-escuro),
        var(--vermelho-banda)
    );
    z-index: 2;
}

.feedback .feedback-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback .carousel-item {
    flex: 0 0 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 0.6s ease-out;
}

.feedback .client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.feedback .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feedback .avatar-male {
    background: linear-gradient(
        135deg,
        var(--vermelho-escuro),
        var(--vermelho-banda)
    );
}

.feedback .avatar-female {
    background: linear-gradient(135deg, #8b0000, #d32f2f);
}

.feedback .client-details {
    text-align: left;
}

.feedback .client-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--branco-puro);
    margin-bottom: 8px;
    font-family: 'Montserrat', serif;
}

.feedback .client-event {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vermelho-banda);
    font-weight: 500;
    font-size: 0.95rem;
}

.feedback .client-event i {
    color: var(--vermelho-banda);
}

.feedback .feedback-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--cinza-claro);
    font-style: italic;
    margin-bottom: 35px;
    max-width: 700px;
    position: relative;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.feedback .quote-icon {
    font-size: 3rem;
    color: var(--vermelho-banda);
    opacity: 0.2;
    position: absolute;
}

.feedback .quote-left {
    top: -20px;
    left: 0;
}

.feedback .quote-right {
    bottom: -20px;
    right: 0;
}

.feedback .rating-container {
    margin-top: 20px;
}

.feedback .rating-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cinza-medio);
    margin-bottom: 8px;
    font-weight: 500;
}

.feedback .rating {
    display: inline-flex;
    gap: 5px;
}

.feedback .star {
    color: var(--dourado);
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.feedback .star.empty {
    color: #444;
}

.feedback .carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.feedback .nav-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(211, 47, 47, 0.1);
    color: var(--vermelho-banda);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(211, 47, 47, 0.2);
}

.feedback .nav-btn:hover {
    background: var(--vermelho-banda);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.4);
    border-color: var(--vermelho-banda);
}

.feedback .carousel-indicators {
    display: flex;
    gap: 10px;
}

.feedback .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(211, 47, 47, 0.3);
}
.feedback .indicator.active {
    background: var(--vermelho-banda);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}






/* sections/agenda/agenda.css */
/* ========================================================================== 
   AGENDA SECTION
   ========================================================================== */
.events-section {
    background: var(--dark-bg);
}

.events-section .section-events {
    width: 100%;
}

.events-section .carousel-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.events-section .carousel-track-outer {
    overflow: hidden;
    border-radius: 12px;
}

.events-section .carousel-track {
    display: flex;
    width: 100%;
    animation: none;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.events-section .slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.events-section .show-card {
    background: var(--gradiente-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    align-items: start;
    min-height: 180px;
}

.events-section .date-block {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    padding-right: 1.25rem;
    min-width: 58px;
}

.events-section .date-day {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    line-height: 1;
    color: var(--vermelho-banda);
    font-weight: 700;
}

.events-section .date-month,
.events-section .date-year {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cinza-medio);
    margin-top: 0.2rem;
}

.events-section .show-title {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--vermelho-banda);
    margin-bottom: 0.35rem;
    letter-spacing: 0.3px;
}

.events-section .show-venue {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.45rem;
}

.events-section .show-city,
.events-section .show-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--cinza-medio);
}

.events-section .show-time {
    margin-top: 0.5rem;
}

.events-section .show-city svg,
.events-section .show-time svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.events-section .map-btn {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(211, 47, 47, 0.35);
    background: rgba(211, 47, 47, 0.08);
    color: var(--vermelho-banda);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.events-section .map-btn:hover {
    background: rgba(211, 47, 47, 0.18);
    border-color: var(--vermelho-banda);
}

.events-section .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.events-section .nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(211, 47, 47, 0.25);
    background: rgba(211, 47, 47, 0.08);
    color: var(--vermelho-banda);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.events-section .nav-btn:hover {
    background: var(--vermelho-banda);
    color: var(--branco-puro);
    transform: scale(1.08);
}

.events-section .dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.events-section .dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #333;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.events-section .dot.active {
    background: var(--vermelho-banda);
    width: 22px;
}

.events-section .progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    margin-top: 1.5rem;
    overflow: hidden;
}

.events-section .progress-fill {
    height: 100%;
    width: 0;
    background: var(--vermelho-banda);
    border-radius: 999px;
    transition: width 0.1s linear;
}

.events-section .footer {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--cinza-medio);
    letter-spacing: 0.5px;
}

.events-section .live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
}

.events-section .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #68d391;
    animation: pulse 2s infinite;
}

.events-section .state-msg {
    width: 100%;
    text-align: center;
    padding: 4rem 2rem;
    background: var(--gradiente-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--cinza-medio);
    font-size: 0.95rem;
    line-height: 1.6;
}

.events-section .state-msg strong {
    color: var(--branco-puro);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.events-section .spinner {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--vermelho-banda);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 700px) {
    .events-section .slide {
        grid-template-columns: 1fr;
    }

    .events-section .show-card {
        padding: 1.5rem;
        grid-template-columns: 1fr;
    }

    .events-section .date-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-right: 0;
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        min-width: unset;
    }

    .events-section .date-day {
        font-size: 2.75rem;
    }

    .events-section .footer {
        flex-direction: column;
        gap: 0.6rem;
        text-align: center;
    }
}



/* sections/contact/contact.css */
/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact {
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card {
    background: var(--gradiente-card);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid #222;
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--vermelho-banda);
    box-shadow: var(--sombra-vermelha);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradiente-vermelho);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(255, 39, 135, 0.2);
}

.contact-card:hover .contact-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 39, 135, 0.3);
}

.contact-details h3 {
    color: var(--branco-puro);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details p {
    color: var(--cinza-medio);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    background: #1a1a1a;
    color: var(--branco-puro);
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid #333;
    text-align: center;
}

.social-link:hover {
    background: var(--vermelho-banda);
    border-color: var(--vermelho-banda);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.social-link i {
    font-size: 1.2rem;
}

/* FORMULÁRIO */
.contact-form {
    background: var(--preto-carvão);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #222;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    background: #1a1a1a;
    color: var(--branco-puro);
    width: 100%;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--vermelho-banda);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.2);
}

.submit-button {
    background: var(--gradiente-vermelho);
    color: white;
    border: none;
    padding: 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra-vermelha);
    filter: brightness(1.1);
}

/* ==========================================================================
   MENSAGENS DE ERRO
   ========================================================================== */
.error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}




/* layout/footer.css */
/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: black;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

footer span {
    color: var(--vermelho-banda);
}




/* css/responsive.css */
/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */

/* Events Track Grid */
@media (min-width: 1921px) {
    .events-track {
        grid-auto-columns: calc((100% - 90px) / 4);
    }
}

@media (max-width: 1920px) {
    .events-track {
        grid-auto-columns: calc((100% - 60px) / 3);
    }
}

@media (max-width: 1024px) {
    .section-header p {
        max-width: 80%;
        font-size: 1.2rem;
    }
    .events-track {
        grid-auto-columns: calc((100% - 30px) / 2);
    }
    .gallery-conteudo::before,
    .gallery-conteudo::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 100px;
        z-index: 10;
        pointer-events: none;
    }
    .gallery-conteudo::before {
        left: 0;
        background: linear-gradient(to right, rgb(0, 0, 0), transparent);
    }
    .gallery-conteudo::after {
        right: 0;
        background: linear-gradient(to left, rgb(0, 0, 0), transparent);
    }
    .contact-card {
        padding: 1rem;
    }
    .contact-form input,
    .contact-form select {
        font-size: 0.85rem;
    }
    .contact-details h3,
    .contact-details p {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-img {
        order: -1;
        margin-bottom: 30px;
    }
    .about-img img {
        box-shadow: none;
    }
    .section-header h2 {
        font-size: 2.5rem;
    }
    .services {
        padding: 50px 0;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .client-info {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .client-details {
        text-align: center;
    }
    .avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    .feedback-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    .quote-icon {
        font-size: 2.5rem;
    }
    .star {
        font-size: 1.4rem;
    }
    .nav-btn {
        width: 50px;
        height: 50px;
    }
    .events-track {
        grid-auto-columns: 100%;
    }
    .carousel-nav {
        margin-top: 30px;
        gap: 15px;
    }
    .contact-content {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    section {
        padding: 70px 0;
    }
}

@media (max-width: 600px) {
    .carousel-slide {
        flex: 0 0 180px;
    }
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    header {
        padding: 10px 5px;
    }
    .whatsapp-link {
        width: 50px;
        height: 50px;
        margin-right: -10px;
    }
    .fa-brands,
    .fab {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.3rem;
    }
    .avatar {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }
    .client-name {
        font-size: 1.2rem;
    }
    .feedback-text {
        font-size: 1rem;
    }
    .star {
        font-size: 1.3rem;
    }
    .social-links {
        align-items: center;
    }
    .social-link {
        width: 100%;
        justify-content: center;
    }
    .events-wrapper {
        padding: 0 15px;
        margin: 30px auto 15px;
    }
    .event-card {
        min-height: 220px;
    }
    .event-details {
        padding: 20px;
    }
    .event-details h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 467px) {
    .contact-form {
        padding: 1.3rem;
    }
}
