/* css/style.css */

/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores da identidade visual OBRIGATÓRIA */
    --color-dark: #0a0a0a;
    --color-graphite: #1a1a1a;
    --color-carbon: #121212;
    --color-red: #d32f2f;
    --color-red-dark: #b71c1c;
    --color-yellow: #ffd700;
    --color-gold: #ffb300;
    --color-silver: #c0c0c0;
    --color-gray: #333333;
    --color-light: #f8f8f8;
    --color-text: #e0e0e0;
    
    /* Fontes */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Bordas */
    --border-radius: 4px;
    --border-radius-lg: 8px;
    
    /* Sombras */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-red: 0 4px 12px rgba(211, 47, 47, 0.3);
    --shadow-yellow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-carbon);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(26, 26, 26, 0.8) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(26, 26, 26, 0.8) 0%, transparent 20%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.highlight {
    color: var(--color-yellow);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    position: relative;
    padding-bottom: var(--spacing-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-silver);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ===== LOGO REAL ===== */
.logo {
    padding-left: 0; /* Remove o padding do placeholder */
    min-height: auto;
}

.logo-img {
    height: 60px; /* Ajuste conforme sua logo */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Remover o placeholder (::before) */
.logo::before {
    display: none;
}

/* Ajustar o h1 dentro do logo se quiser manter o texto */
.logo h1 {
    display: none; /* Se usar imagem com texto, esconde o texto */
}

/* ===== BOTÕES ===== */
.btn-nav, .btn-hero, .btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    gap: 0.5rem;
}

.btn-nav {
    background-color: var(--color-red);
    color: white;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background-color: var(--color-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-hero, .btn-cta {
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: white;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    box-shadow: var(--shadow-red);
}

.btn-hero:hover, .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    background: linear-gradient(135deg, var(--color-red-dark), var(--color-red));
}

/* ===== HEADER ===== */
.header {
    background-color: rgba(10, 10, 10, 0.95);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(51, 51, 51, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
}

.logo h1 span {
    color: var(--color-yellow);
    font-weight: 800;
}

/* Logo será inserida via background-image */
.logo {
    position: relative;
    padding-left: 60px;
    min-height: 50px;
    display: flex;
    align-items: center;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-menu li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--color-yellow);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-red);
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    background: linear-gradient(to bottom, var(--color-carbon), var(--color-graphite));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-silver);
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.service-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(51, 51, 51, 0.7);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--color-red);
    transition: transform 0.3s;
}

.service-tag:hover {
    transform: translateY(-3px);
    background-color: rgba(51, 51, 51, 0.9);
    border-left-color: var(--color-yellow);
}

.service-tag i {
    color: var(--color-yellow);
}

.hero-contact {
    margin-top: var(--spacing-md);
    color: var(--color-silver);
    font-size: 1rem;
}

.hero-contact i {
    color: var(--color-yellow);
    margin-right: 0.5rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--color-yellow), transparent 30%);
    animation: rotate 10s linear infinite;
}

.image-placeholder::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.98));
    border-radius: calc(var(--border-radius-lg) - 2px);
}

.image-placeholder i {
    font-size: 5rem;
    color: var(--color-yellow);
    z-index: 2;
    margin-bottom: var(--spacing-sm);
}

.image-placeholder p {
    color: var(--color-silver);
    z-index: 2;
    text-align: center;
    max-width: 80%;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== SEÇÕES ===== */
section {
    padding: var(--spacing-xl) 0;
}

/* Problemas que resolvemos */
.problems {
    background-color: var(--color-graphite);
    position: relative;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.problem-card {
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(51, 51, 51, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.2);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: var(--spacing-sm);
}

.problem-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(51, 51, 51, 0.5);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-red);
    box-shadow: var(--shadow-red);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-yellow);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

/* Processo de atendimento */
.process {
    background-color: var(--color-graphite);
}

.process-timeline {
    max-width: 800px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-red), var(--color-yellow));
}

.process-step {
    display: flex;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-right: var(--spacing-lg);
    flex-shrink: 0;
    z-index: 2;
    border: 4px solid var(--color-carbon);
    box-shadow: var(--shadow);
}

.step-content {
    flex: 1;
    background-color: rgba(10, 10, 10, 0.8);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(51, 51, 51, 0.5);
}

.step-content h3 {
    color: var(--color-yellow);
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
}

/* Diferenciais */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.differential-card {
    background-color: rgba(10, 10, 10, 0.8);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    border: 1px solid rgba(51, 51, 51, 0.5);
    transition: all 0.3s ease;
}

.differential-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-5px);
    box-shadow: var(--shadow-yellow);
}

.differential-icon {
    font-size: 2.5rem;
    color: var(--color-yellow);
    margin-bottom: var(--spacing-sm);
}

.differential-card h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
}

/* Depoimentos */
.testimonials {
    background-color: var(--color-graphite);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid rgba(51, 51, 51, 0.5);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
}

.rating {
    color: var(--color-yellow);
}

.testimonial-date {
    color: var(--color-silver);
    font-size: 0.9rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
}

.testimonial-author {
    color: var(--color-yellow);
    font-weight: 600;
}

.google-rating {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-xl);
}

.google-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background-color: rgba(10, 10, 10, 0.8);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(51, 51, 51, 0.5);
}

.google-badge i {
    font-size: 3rem;
    color: var(--color-yellow);
}

.rating-score {
    display: flex;
    flex-direction: column;
}

.score {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.rating-stars {
    color: var(--color-yellow);
    margin: 0.3rem 0;
}

.reviews {
    color: var(--color-silver);
    font-size: 0.9rem;
}

/* CTA Final */
.cta {
    background: linear-gradient(135deg, var(--color-graphite), var(--color-carbon));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.8rem;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg);
    color: var(--color-silver);
}

.cta-note {
    margin-top: var(--spacing-lg);
    color: var(--color-silver);
    font-size: 0.9rem;
}

.cta-note i {
    color: var(--color-yellow);
    margin-right: 0.5rem;
}

/* Contato */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    background-color: rgba(10, 10, 10, 0.8);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(51, 51, 51, 0.5);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--color-red);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    color: var(--color-yellow);
}

.contact-details h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-details a {
    color: var(--color-yellow);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Rodapé */
.footer {
    background-color: var(--color-dark);
    padding: var(--spacing-xl) 0 var(--spacing-sm);
    border-top: 1px solid rgba(51, 51, 51, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: white;
}

.footer-logo h2 span {
    color: var(--color-yellow);
}

.footer-tagline {
    color: var(--color-silver);
    font-style: italic;
    margin-top: var(--spacing-sm);
}

.footer-services h3, .footer-contact h3 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    margin-bottom: 0.5rem;
    color: var(--color-silver);
    position: relative;
    padding-left: 1rem;
}

.footer-services li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--color-red);
    font-weight: bold;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--color-silver);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--color-yellow);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(51, 51, 51, 0.5);
    padding-top: var(--spacing-sm);
    text-align: center;
    color: var(--color-silver);
    font-size: 0.9rem;
}

.agency {
    margin-top: 0.5rem;
    color: var(--color-silver);
    font-size: 0.8rem;
}

.agency strong {
    color: var(--color-yellow);
}

/* ===== BOTÃO WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== ANIMAÇÕES DE ENTRADA ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-services {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: var(--spacing-lg) 0;
        z-index: 999;
        border-top: 1px solid rgba(51, 51, 51, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-right: var(--spacing-md);
    }
}

@media (max-width: 576px) {
    :root {
        --spacing-xl: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-hero, .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== LOGO REAL ===== */
.logo {
    padding-left: 0; /* Remove o padding do placeholder */
    min-height: auto;
}

.logo-img {
    height: 60px; /* Ajuste conforme sua logo */
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Remover o placeholder (::before) */
.logo::before {
    display: none;
}

/* Ajustar o h1 dentro do logo se quiser manter o texto */
.logo h1 {
    display: none; /* Se usar imagem com texto, esconde o texto */
}

/* ===== LOCALIZAÇÃO / GOOGLE MAPS ===== */
.location {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-graphite);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-top: 30px;
    background: rgba(10,10,10,0.9);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(255,215,0,0.2);
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    border-radius: 8px;
    border: 2px solid var(--color-yellow);
    box-shadow: var(--shadow);
    min-height: 400px;
}

.location-info {
    color: var(--color-text);
    padding: 10px;
}

.location-info h3 {
    color: var(--color-yellow);
    margin-top: 25px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    padding-bottom: 8px;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.location-info strong {
    color: white;
    font-size: 1.1rem;
}

.location-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

/* Responsivo */
@media (max-width: 992px) {
    .map-container {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .location-buttons {
        flex-direction: column;
    }
    
    .location-buttons a {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
        margin-bottom: 10px;
    }
}

/* ===== GALERIA DE SERVIÇOS REALIZADOS ===== */
.gallery {
    background: linear-gradient(135deg, var(--color-carbon), var(--color-graphite));
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.gallery::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.gallery .container {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95), rgba(18, 18, 18, 0.98));
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(51, 51, 51, 0.6);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 70%, rgba(10, 10, 10, 0.9));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--color-yellow);
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.gallery-image.single {
    position: relative;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.image-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    position: relative;
}

.image-side {
    position: relative;
    overflow: hidden;
}

.image-side:first-child {
    border-right: 2px solid var(--color-carbon);
}

.image-label {
    position: absolute;
    top: 15px;
    padding: 5px 15px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    font-family: var(--font-heading);
    z-index: 2;
    box-shadow: var(--shadow);
}

.image-label.antes {
    left: 15px;
    background: linear-gradient(135deg, var(--color-red), #c62828);
    color: white;
    border: 2px solid #ff5252;
}

.image-label.depois {
    right: 15px;
    background: linear-gradient(135deg, var(--color-yellow), #ffb300);
    color: var(--color-dark);
    border: 2px solid #ffd740;
}

.image-feature {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    background: rgba(10, 10, 10, 0.85);
    color: var(--color-yellow);
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-top: 2px solid var(--color-yellow);
    border-bottom: 2px solid var(--color-yellow);
}

.image-feature i {
    margin-right: 8px;
    color: var(--color-yellow);
}

.gallery-info {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 2;
    background: rgba(10, 10, 10, 0.7);
}

.gallery-info h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 3rem;
}

.gallery-info h3 i {
    color: var(--color-yellow);
    font-size: 1.2rem;
}

.gallery-info p {
    color: var(--color-silver);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-md);
}

.gallery-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(51, 51, 51, 0.3);
    padding: 12px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-stats span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-silver);
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-stats i {
    color: var(--color-yellow);
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(10, 10, 10, 0.95));
    border-radius: var(--border-radius-lg);
    border: 2px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.gallery-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-red), var(--color-yellow), var(--color-red));
    animation: shine 3s infinite linear;
}

@keyframes shine {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.gallery-cta h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.gallery-cta p {
    color: var(--color-silver);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0.9rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
}

.btn-social.instagram {
    background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
    color: white;
}

.btn-social.facebook {
    background: linear-gradient(45deg, #1877F2, #0A64C0);
    color: white;
}

.btn-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: white;
}

/* Placeholder para imagens */
.gallery-image img[src*=".jpg"] {
    background: linear-gradient(135deg, var(--color-gray), #2a2a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-silver);
    position: relative;
}

.gallery-image img[src*=".jpg"]::after {
    content: 'IMAGEM ILUSTRATIVA';
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 200px;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-social {
        width: 100%;
        max-width: 250px;
    }
    
    .gallery-stats {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .gallery-image {
        height: 180px;
    }
    
    .gallery-info h3 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .image-label {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}