/* Reset e Variáveis */
:root {
    --primary:#dc2626;           /* Dourado */
    --primary-dark: #daa520;     /* Dourado escuro */
    --secondary: #ffd700;       /* Vermelho vibrante */
    --accent: #fbbf24;

    --primary-light: rgba(230, 57, 70, 0.1);

    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --light-gray: #e2e8f0;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

/* Reset para garantir que não há margin/padding indesejados */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Impede scroll horizontal */
    position: relative;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
}

/* Container principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

section {
    padding: 50px 0;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.7s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(230, 57, 70, 0.4);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(124, 58, 237, 0.4);
}

.btn-secondary:hover {
    background: #6d28d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(124, 58, 237, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--light-gray);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Sections */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.7;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    background: white;
}

header.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    height: 150px;
    width: auto;
    transition: var(--transition);
}

header.scrolled .logo-img {
    height: 60px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

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

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

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

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

/* Hero Section */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--dark);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

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

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    height: auto;
    mix-blend-mode: normal;
    max-width: 500px;
}

/* Gradiente para o texto "Especializada" */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.feature-description {
    color: var(--gray);
    line-height: 1.6;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.service-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

.service-description {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 6px 0;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Gallery */
.gallery-container {
    width: 100%;
    overflow-x: auto;
    padding: 30px 0;
    scroll-behavior: smooth;
}

.gallery-grid {
    display: flex;
    gap: 25px;
    padding: 0 20px;
}

.gallery-item {
    flex: 0 0 350px;
    height: 280px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Customizar scrollbar */
.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* CTA Section */
.cta {
    background: transparent;
    color: var(--dark);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 
        0 20px 40px rgba(220, 38, 38, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    border-radius: 32px;
    z-index: -1;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 0;
}

.footer p {
    margin: 0;
    line-height: 1.6;
    color: var(--gray);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
    opacity: 0;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Background */
.simplified-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.simplified-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%, #ffffff 100%);
}

.simplified-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(230, 122, 122, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.background-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
}

.background-orb-1 {
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}

.background-orb-2 {
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}

.background-orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.2;
}
/* ========== HEADER MOBILE CORRIGIDO ========== */
@media (max-width: 768px) {
    header {
        padding: 10px 0 !important;
    }
    
    .navbar {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 80px !important;
    }
    
    /* MENU TOGGLE - sempre visível no mobile */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 1.3rem;
        cursor: pointer;
        z-index: 1001;
        transition: var(--transition);
    }
    
    /* LINKS DO MENU - ESCONDIDOS por padrão */
    .nav-links {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 20px 20px;
        z-index: 999;
        margin: 0;
        gap: 0;
    }
    
    /* MENU ABERTO */
    .nav-links.active {
        display: flex !important;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
        list-style: none;
    }
    
    .nav-links a {
        display: block;
        padding: 20px;
        border-bottom: 1px solid var(--light-gray);
        font-size: 1.3rem;
        font-weight: 600;
        color: var(--dark);
        text-decoration: none;
        transition: var(--transition);
        width: 100%;
    }
    
    .nav-links a:hover {
        background: var(--primary-light);
        color: var(--primary);
    }
    
    /* BOTÕES - SEMPRE ESCONDIDOS NO MOBILE */
    .nav-actions {
        display: none !important;
    }
    
    /* AJUSTE DO CORPO QUANDO MENU ABERTO */
    body.menu-open {
        overflow: hidden;
    }
    
    body {
        padding-top: 80px;
    }
}

/* DESKTOP - menu normal */
@media (min-width: 769px) {
    .menu-toggle {
        display: none !important;
    }
    
    .nav-links {
        display: flex !important;
    }
    
    .nav-actions {
        display: flex !important;
    }
}

/* === CSS EMERGENCIAL - GARANTE QUE O MENU FUNCIONE === */
.nav-links:not(.active) {
    display: none !important;
}

.nav-links.active {
    display: flex !important;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex !important;
    }
    
    .nav-links:not(.active) {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .nav-links.active {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* ===== CORREÇÕES DO LAYOUT QUEBRADO ===== */

/* Hero Section corrigida */
.hero {
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 600px;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--dark);
    text-align: left;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero-img {
    width: 100%;
    height: auto;
    mix-blend-mode: normal;
    max-width: 500px;
    display: block;
}

/* Features Section corrigida */
.features {
    padding: 80px 0;
    width: 100%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Services Section corrigida */
.services {
    padding: 80px 0;
    width: 100%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.service-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    width: 100%;
}

/* ========== RESPONSIVIDADE CORRIGIDA ========== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .hero-description {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px 25px;
        min-height: 250px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Hero Mobile corrigido */
    .hero {
        padding: 120px 0 60px !important;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 0;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem !important;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .hero-img {
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* Features Mobile corrigido */
    .features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
        min-height: auto;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.3rem;
    }
    
    /* Services Mobile corrigido */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 500px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 25px;
    }
    
    /* Ajuste geral de padding */
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 20px;
    }
}

/* Mobile Pequeno */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }
    
    .hero-img {
        max-width: 250px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
    }
}

/* ===== GARANTIR QUE A IMAGEM APAREÇA ===== */
.hero-image {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* ===== CORREÇÃO DE CENTRALIZAÇÃO ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
    width: 100%;
}

.section-title {
    text-align: center;
    width: 100%;
}

.section-subtitle {
    text-align: center;
    width: 100%;
}

/* ===== REMOVER CONFLITOS DO MENU ===== */
body:not(.menu-open) {
    overflow-x: hidden;
    overflow-y: auto;
}

/* Garantir que o conteúdo fique abaixo do header */
body {
    padding-top: 100px;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

/* ===== BRANDS / PRINCIPAIS MARCAS ===== */
.brands {
    padding: 80px 0;
    width: 100%;
}

.brands-strip {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 10px 5px 5px;
    scroll-behavior: smooth;
}

/* scrollbar da faixa de marcas */
.brands-strip::-webkit-scrollbar {
    height: 6px;
}
.brands-strip::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 999px;
}
.brands-strip::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 999px;
}

.brand-card {
    flex: 0 0 160px;
    max-width: 180px;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.brand-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    background: #f9fafb;
}

.brand-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(1.1);
}

/* "chips" de marcas embaixo */
.brand-tags {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.brand-tag {
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--dark);
    color: white;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* responsivo */
@media (max-width: 768px) {
    .brands {
        padding: 60px 0;
    }
    
    .brand-card {
        flex: 0 0 140px;
        padding: 16px 12px;
    }
}