/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #d35400;
    --primary-dark: #a04000;
    --secondary: #1e2a3a;
    --gray-light: #f5f6fa;
    --gray-medium: #dcdde1;
    --text: #1e1e2a;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-light);
    color: var(--text);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HEADER ===== */
header {
    background: var(--secondary);
    color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary);
    font-size: 1.8rem;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition);
    position: relative;
}

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

nav a:not(.header-cta):hover::after {
    width: 100%;
}

nav a:not(.header-cta):hover {
    color: var(--primary);
}

.header-cta {
    background: var(--primary);
    padding: 8px 20px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background var(--transition);
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 4px;
    transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--secondary);
    padding: 80px 32px 32px;
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
}

.nav-mobile.open {
    right: 0;
}

.nav-mobile a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.nav-mobile .header-cta-mobile {
    background: var(--primary);
    text-align: center;
    padding: 12px;
    border-radius: 40px;
    font-weight: 700;
    margin-top: 16px;
}

.nav-mobile .header-cta-mobile:hover {
    background: var(--primary-dark);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f172a 100%);
    color: var(--white);
    padding: 80px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(211, 84, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 560px;
    margin: 0 auto 32px;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(211, 84, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* ===== SOBRE ===== */
.sobre {
    padding: 80px 0;
    background: var(--white);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-texto h2 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.sobre-texto h2 span {
    color: var(--primary);
}

.sobre-texto p {
    margin-bottom: 16px;
    color: #444;
    font-size: 1.05rem;
}

.sobre-texto .destaque {
    color: var(--primary);
    font-weight: 700;
}

.sobre-imagem {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 300px;
    background: var(--gray-medium);
}

.sobre-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* ===== SERVIÇOS ===== */
.servicos {
    padding: 80px 0;
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    max-width: 560px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.servico-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    text-align: center;
    border-top: 6px solid var(--primary);
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.servico-card i {
    font-size: 3.2rem;
    color: var(--primary);
    margin-bottom: 16px;
}

.servico-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.servico-card p {
    color: #555;
    font-size: 0.98rem;
}

.servico-card .saiba-mais {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ===== TRABALHOS ===== */
.trabalhos {
    padding: 80px 0;
    background: var(--white);
}

.swiper {
    padding: 16px 0 40px;
}

.swiper-slide {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fafafa;
}

.swiper-slide img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.slide-label {
    padding: 16px 20px;
    font-weight: 600;
    background: var(--white);
}

/* ===== BOTÕES DE NAVEGAÇÃO DO SWIPER ===== */
.swiper-button-next,
.swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary);
    transition: color var(--transition);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(211, 84, 0, 0.3);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: var(--white);
}

.swiper-button-next {
    right: 12px;
}
.swiper-button-prev {
    left: 12px;
}

.swiper-pagination-bullet {
    background: #ccc;
    opacity: 0.6;
    transition: all var(--transition);
}
.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
    width: 24px;
    border-radius: 8px;
}

/* ===== ANTES E DEPOIS ===== */
.antes-depois {
    padding: 80px 0;
    background: var(--gray-light);
}

.comparativo-slide {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparativo-slide .comparativo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.comparativo-slide .comparativo-item {
    padding: 20px;
    text-align: center;
    background: #fcfcfc;
}

.comparativo-slide .comparativo-item:first-child {
    background: #f7f7f7;
}

.comparativo-slide .comparativo-item h4 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.comparativo-slide .comparativo-item h4 span {
    color: var(--primary);
}

.comparativo-slide .comparativo-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

/* ===== CONTATO ===== */
.contato {
    padding: 80px 0;
    background: var(--secondary);
    color: var(--white);
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contato-info h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contato-info h2 span {
    color: var(--primary);
}

.contato-info p {
    opacity: 0.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.contato-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.contato-item i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.contato-item a {
    color: var(--white);
    transition: color var(--transition);
}

.contato-item a:hover {
    color: var(--primary);
}

.horarios {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 32px;
    backdrop-filter: blur(4px);
}

.horarios h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.horario-linha {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.horario-linha:last-child {
    border-bottom: none;
}

.horario-dia {
    font-weight: 600;
}

.horario-hora {
    opacity: 0.8;
}

/* ===== MAPA ===== */
.mapa {
    padding: 60px 0 80px;
    background: var(--white);
}

.mapa-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 380px;
    background: #eaeef3;
    position: relative;
}

.mapa-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: rgba(255, 255, 255, 0.7);
    padding: 32px 0;
    text-align: center;
    font-size: 0.9rem;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer .footer-logo {
    font-weight: 700;
    font-size: 1.2rem;
}

footer .footer-logo i {
    color: var(--primary);
}

footer .social {
    display: flex;
    gap: 16px;
}

footer .social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

footer .social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contato-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-overlay.active {
        display: block;
    }

    .swiper-button-next {
        right: 4px;
    }
    .swiper-button-prev {
        left: 4px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .comparativo-slide .comparativo-grid {
        grid-template-columns: 1fr;
    }

    .comparativo-slide .comparativo-item img {
        height: 200px;
    }

    .mapa-wrapper {
        height: 260px;
    }

    .servico-card {
        padding: 28px 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 80px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .contato-item {
        font-size: 0.95rem;
    }

    .horarios {
        padding: 24px;
    }

    .nav-mobile {
        width: 260px;
        padding: 70px 24px 24px;
    }
}