:root {
    --laranja: #F3722C;
    --vermelho: #E63946;
    --dark: #121212;
    --card-bg: #1e1e1e;
    --text-muted: #bcbcbc;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    background-color: var(--dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(243, 114, 44, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(230, 57, 70, 0.03) 0%, transparent 50%),
        linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(30, 30, 30, 0.98) 100%);
    background-attachment: fixed;
    color: white;
    margin: 0;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(255, 255, 255, 0.01) 2px, rgba(255, 255, 255, 0.01) 4px);
    pointer-events: none;
    z-index: 1;
}

body > * {
    position: relative;
    z-index: 2;
}

header {
    background: linear-gradient(90deg, var(--vermelho), var(--laranja));
    padding: 16px 24px;
}

nav {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 48px;
}

.hero {
    background: 
        radial-gradient(1200px 600px at 10% 10%, rgba(243, 114, 44, 0.15), transparent),
        radial-gradient(1000px 600px at 90% 20%, rgba(230, 57, 70, 0.1), transparent),
        radial-gradient(800px 400px at 50% 100%, rgba(243, 114, 44, 0.05), transparent),
        url('../img/fundo1.jpg');
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    background-attachment: scroll, scroll, scroll, fixed;
    background-blend-mode: normal, normal, normal, overlay;
    padding: 72px 24px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.75);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(243, 114, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(20px); }
}

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

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hero-badges span {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 12px;
    border-radius: 999px;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px;
    position: relative;
}

.container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -200px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 114, 44, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.section-subtitle {
    color: var(--text-muted);
    margin-top: 8px;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

#servicos {
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.92) 0%, rgba(24, 24, 24, 0.95) 100%),
        url('../img/fundo1.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-attachment: scroll, scroll;
    background-blend-mode: overlay;
}

.service-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(30, 30, 30, 0.7) 100%);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 114, 44, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 114, 44, 0.3);
    box-shadow: 0 10px 30px rgba(243, 114, 44, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card i {
    font-size: 1.8rem;
    color: var(--laranja);
}

.service-card h3 {
    margin: 12px 0 8px;
}

.service-card p {
    color: var(--text-muted);
    margin: 0;
}

.grid-diferenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: center;
}

.industria40-section {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(24, 24, 24, 0.9) 100%);
    border-radius: 16px;
    margin: 40px auto;
    padding: 40px 24px;
}

.industria40-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.industria40-text h2 {
    color: var(--laranja);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.industria40-text p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.industria40-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(243, 114, 44, 0.15);
    transition: transform 0.3s ease;
}

.industria40-image img:hover {
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .industria40-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industria40-section {
        padding: 30px 16px;
    }

    .industria40-text h2 {
        font-size: 1.5rem;
    }
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.checklist li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: var(--text-muted);
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--laranja);
}

.brands-panel {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #2a2a2a;
}

.brands-title {
    margin: 0 0 12px;
    color: var(--text-muted);
}

.brands-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 12px;
}

.brands-row img {
    height: 28px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.grid-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 20px 0;
}

#galeria {
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.97) 0%, rgba(24, 24, 24, 0.98) 100%);
    background-size: cover;
    background-position: center;
}

.card-projeto {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95) 0%, rgba(30, 30, 30, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--laranja);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

.card-projeto:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(243, 114, 44, 0.2);
}

.card-projeto img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.card-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 12px;
}

.card-before-after figure {
    margin: 0;
}

.card-before-after figcaption {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.card-info {
    padding: 16px;
}

.card-info h3 {
    margin: 0 0 8px;
}

.card-info p {
    margin: 0;
    color: var(--text-muted);
}

.btn-whats {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-main {
    display: inline-block;
    background: linear-gradient(90deg, var(--vermelho), var(--laranja));
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-main:hover {
    background: linear-gradient(90deg, #25d366, #1ea952);
}

.btn-outline {
    display: inline-block;
    background: linear-gradient(90deg, var(--vermelho), var(--laranja));
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-outline:hover {
    background: linear-gradient(90deg, #25d366, #1ea952);
    border-color: #25d366;
}

#prova-social {
    background: 
        linear-gradient(135deg, rgba(30, 30, 30, 0.94) 0%, rgba(24, 24, 24, 0.96) 100%);
    background-size: cover;
    background-position: center;
}

.grid-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.proof-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #2a2a2a;
    color: var(--text-muted);
}

.proof-card span {
    display: block;
    margin-top: 12px;
    color: #fff;
    font-weight: 600;
}

.proof-stats {
    display: grid;
    gap: 16px;
    align-content: center;
}

.proof-stats strong {
    font-size: 1.4rem;
}

.proof-stats span {
    color: var(--text-muted);
}

.map-link {
    color: var(--laranja);
    text-decoration: none;
    font-weight: 600;
}

footer {
    border-top: 1px solid #2a2a2a;
    padding: 24px;
    background: #0f0f0f;
}

.footer-info {
    max-width: 1100px;
    margin: 0 auto;
    color: var(--text-muted);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.footer-logos {
    max-width: 1100px;
    margin: 20px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer-logos img {
    height: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.75;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    z-index: 10;
    font-weight: 600;
}

.whatsapp-float i {
    font-size: 1.4rem;
}
}

@media (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 12px;
    }

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

    .whatsapp-float span {
        display: none;
    }
}
/* Modal de Agendamento */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.98) 0%, rgba(24, 24, 24, 0.98) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(243, 114, 44, 0.1);
    border-radius: 12px;
    padding: 32px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(243, 114, 44, 0.2);
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: white;
}

.modal-content h2 {
    margin: 0 0 20px;
    color: white;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #333;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--laranja);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background-color: var(--card-bg);
    color: white;
    padding: 10px;
}

.btn-submit {
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(90deg, var(--vermelho), var(--laranja));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
}

.btn-submit:hover {
    opacity: 0.9;
}

@media (max-width: 600px) {
    .modal-content {
        max-width: 95%;
        padding: 24px;
    }
}