: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(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#hero .reveal {
    transition: opacity 2.2s ease-out, transform 2.2s ease-out;
}

.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); }
}

/* ==========================================================================
   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);
}

/* ==========================================================================
   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: all 0.4s ease;
}

header.scrolled {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--sombra-suave);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.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;
}

.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;
    transition: color 0.3s;
}

.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; 
    background: none; 
    border: none; 
    color: white; 
    font-size: 1.5rem; 
    cursor: pointer; 
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   INSTAGRAM CAROUSEL
   ========================================================================== */
.gallery-conteudo {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    position: relative;
}

.carousel-track {
    display: flex;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.carousel-slide {
    flex: 0 0 180px;
    padding: 0 6px;
    position: relative;
}

.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);
}

.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;
}

.views {
    font-weight: bold;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.views i {
    color: #8a8a8a;
}

.stats {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.heart {
    color: #ff0000;
}

.stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   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;
}

.carousel-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
}

.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;
}

.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-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.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;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.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);
}

.avatar-male {
    background: linear-gradient(135deg, var(--vermelho-escuro), var(--vermelho-banda));
}

.avatar-female {
    background: linear-gradient(135deg, #8B0000, #D32F2F);
}

.client-details {
    text-align: left;
}

.client-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--branco-puro);
    margin-bottom: 8px;
    font-family: 'Montserrat', serif;
}

.client-event {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vermelho-banda);
    font-weight: 500;
    font-size: 0.95rem;
}

.client-event i {
    color: var(--vermelho-banda);
}

.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;
}

.quote-icon {
    font-size: 3rem;
    color: var(--vermelho-banda);
    opacity: 0.2;
    position: absolute;
}

.quote-left {
    top: -20px;
    left: 0;
}

.quote-right {
    bottom: -20px;
    right: 0;
}

.rating-container {
    margin-top: 20px;
}

.rating-label {
    display: block;
    font-size: 0.9rem;
    color: var(--cinza-medio);
    margin-bottom: 8px;
    font-weight: 500;
}

.rating {
    display: inline-flex;
    gap: 5px;
}

.star {
    color: var(--dourado);
    font-size: 1.6rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
.star.empty {
    color: #444;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 30px;
}

.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);
}

.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);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.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);
}
.indicator.active {
    background: var(--vermelho-banda);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(211, 47, 47, 0.5);
}

/* ==========================================================================
   EVENTS SECTION
   ========================================================================== */
.events-section { 
    background: var(--preto-cinza); 
    overflow: hidden;
}

.events-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 30px;
    padding: 0 30px;
}

.events-container {
    overflow: hidden;
    padding: 10px 0;
}

.events-track {
    display: grid;
    grid-auto-flow: column;
    gap: 30px;
    transition: transform 0.45s ease;
    cursor: grab;
}

.events-track:active {
    cursor: grabbing;
}

.event-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    min-height: 250px;
    display: flex;
    flex-direction: column;
}

.event-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--vermelho-banda); 
    box-shadow: 0 10px 20px rgba(211, 47, 47, 0.2);
}

.event-date {
    background: var(--vermelho-banda);
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

.event-details { 
    padding: 25px; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-details h4 { 
    font-size: 1.4rem; 
    margin-bottom: 15px; 
    font-family: 'Montserrat';
    color: var(--branco-puro);
}

.event-details p { 
    color: var(--cinza-medio); 
    font-size: 0.95rem; 
    margin-bottom: 10px;
    line-height: 1.5;
}

.event-details i { 
    color: var(--vermelho-banda); 
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.carousel-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.map-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ffffff90;
    color: white;
    transition: 0.2s ease;
}

.map-btn:hover {
    border-color: #fff;
    background-color: #ffffff20;
}

.map-btn:active {
    transform: scale(0.97);
}

/* ==========================================================================
   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);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
    background: black;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
}

footer p { 
    color: #666; 
    font-size: 0.9rem; 
}

footer span { 
    color: var(--vermelho-banda); 
}

/* ==========================================================================
   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; }
    .nav-links {
        position: fixed;
        top: 58px;
        right: -100%;
        width: 100%;
        height: calc(60vh - 70px);
        background: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
        border-top: 1px solid #222;
    }
    .nav-links.active { right: 0; }
    .mobile-btn { display: block; }
    .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; }
}

/* ==========================================================================
   MENSAGENS DE ERRO
   ========================================================================== */
.error-message {
    color: red;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: 500;
}