/* =========================
   VARIÁVEIS
========================= */
:root {
    --background: #111214;
    --background-secondary: #18191d;
    --background-card: #222328;
    --text-primary: #f1efeb;
    --text-secondary: #96979b;
    --gold: #c99d2e;
    --gold-light: #dfb74b;
    --green: #25d366;
    --border: #303136;
    --light-background: #e9e8e5;
    --light-card: #f5f4f1;
    --light-border: #d5d3cd;
    --dark-text: #202124;
    --dark-text-secondary: #68696d;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

/* =========================
   CONTAINER
========================= */
.container {
    width: min(90%, 1400px);
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.header {
    background-color: var(--background);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
}

.header-container {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border);
    padding-left: 15px;
}

.logo-text strong {
    color: var(--gold);
    font-size: 19px;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: 2px;
}

/* BOTÃO HAMBÚRGUER (OCULTO EM TELAS GRANDES) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--gold);
    border-radius: 2px;
    transition: all 0.3s linear;
}

.hamburger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* NAVEGAÇÃO DESKTOP */
.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 35px;
}

.nav a {
    color: #c4c0b5;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: 0.3s;
}

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

/* =========================
   BOTÕES GERAIS
========================= */
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    background-color: var(--green);
    color: white;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.button-primary:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 30px;
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.button-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* =========================
   BOTÃO FLUTUANTE DO WHATSAPP
========================= */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--green);
    color: #ffffff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

/* =========================
   HERO
========================= */
.hero {
    background-color: var(--background);
    padding: 110px 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 70px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 35px;
}

.hero-label span {
    width: 35px;
    height: 1px;
    background-color: var(--gold);
}

.hero h1 {
    max-width: 850px;
    font-size: clamp(55px, 7vw, 105px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

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

.service-24h {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gold-light);
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.service-line {
    width: 45px;
    height: 1px;
    background-color: var(--gold);
}

.hero-description {
    max-width: 600px;
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 35px;
}

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

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

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
}

/* =========================
   DESTAQUES
========================= */
.highlights {
    background-color: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--gold);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 40px 30px;
    border-right: 1px solid var(--border);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-number {
    color: var(--gold);
    font-size: 24px;
    font-weight: bold;
    min-width: 45px;
}

.highlight-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* =========================
   CONTEÚDO CLARO
========================= */
.light-content {
    background-color: var(--light-background);
    color: var(--dark-text);
}

.services,
.equipment,
.areas {
    padding: 120px 0;
}

.section-title {
    max-width: 850px;
    margin-bottom: 60px;
}

.section-title > p:first-child {
    color: #a47d1f;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    color: var(--dark-text);
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1.05;
    text-transform: uppercase;
}

.section-title > span {
    display: block;
    width: 55px;
    height: 3px;
    background-color: var(--gold);
    margin-top: 30px;
}

.section-description {
    color: var(--dark-text-secondary);
    margin-top: 25px;
    max-width: 650px;
    font-size: 17px;
}

/* SERVIÇOS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--light-border);
    border-left: 1px solid var(--light-border);
}

.service-card {
    min-height: 280px;
    padding: 30px;
    background-color: var(--light-card);
    border-right: 1px solid var(--light-border);
    border-bottom: 1px solid var(--light-border);
    transition: 0.3s;
}

.service-card:hover {
    background-color: white;
    transform: translateY(-5px);
}

.service-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    margin-bottom: 30px;
    position: relative;
}

.service-icon::after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: var(--gold);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.service-card h3 {
    color: var(--dark-text);
    font-size: 17px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-text-secondary);
}

/* EQUIPAMENTOS */
.equipment {
    border-top: 1px solid var(--light-border);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.equipment-card {
    border-top: 2px solid var(--gold);
    padding-top: 30px;
}

.equipment-card > span {
    display: block;
    color: #a47d1f;
    font-weight: bold;
    margin-bottom: 25px;
}

.equipment-card h3 {
    color: var(--dark-text);
    font-size: 24px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.equipment-card p {
    color: var(--dark-text-secondary);
}

/* ÁREA DE ATENDIMENTO */
.areas {
    border-top: 1px solid var(--light-border);
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.areas-list span {
    padding: 15px 25px;
    border: 1px solid var(--light-border);
    background-color: var(--light-card);
    color: var(--dark-text-secondary);
    transition: 0.3s;
}

.areas-list span:hover {
    border-color: var(--gold);
    color: #a47d1f;
}

/* =========================
   ATENDIMENTO 24 HORAS
========================= */
.availability-section {
    padding: 130px 0;
    background-color: var(--background);
    border-top: 3px solid var(--gold);
    border-bottom: 1px solid var(--border);
}

.availability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 80px;
}

.availability-title p {
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.availability-title h2 {
    font-size: clamp(50px, 6vw, 100px);
    line-height: 0.9;
    text-transform: uppercase;
}

.availability-title h2 span {
    color: var(--gold);
}

.availability-text p {
    color: var(--text-secondary);
    font-size: 19px;
    max-width: 500px;
}

/* =========================
   CONTATO
========================= */
.contact {
    padding: 120px 0;
    background-color: var(--background-secondary);
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.contact-content {
    max-width: 750px;
}

.contact-content > p:first-child {
    color: var(--gold);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact h2 {
    font-size: clamp(50px, 6vw, 90px);
    line-height: 0.95;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-description {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.contact-action span {
    color: var(--gold);
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 2px;
}

/* =========================
   RODAPÉ
========================= */
.footer {
    padding: 60px 0;
    background-color: var(--background);
    border-top: 1px solid var(--border);
}

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

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-container img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-logo-container div {
    display: flex;
    flex-direction: column;
}

.footer-logo-container strong {
    color: var(--gold);
    font-size: 20px;
    letter-spacing: 2px;
}

.footer-logo-container span {
    color: var(--text-secondary);
    font-size: 10px;
    letter-spacing: 2px;
}

.footer-info,
.footer-contato,
.footer-copy {
    color: var(--text-secondary);
    font-size: 13px;
}

.footer-contato a {
    color: var(--gold);
    font-weight: bold;
}

/* =========================================
   TELAS MÉDIAS (DESKTOP MENOR / TABLET HORIZ.)
========================================= */
@media (max-width: 1100px) {
    .header-container {
        padding: 20px 0;
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 800px) {
    .hero {
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image img {
        max-width: 280px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .highlight-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .highlight-item:last-child {
        border-bottom: none;
    }

    .equipment-grid {
        grid-template-columns: 1fr;
    }

    .availability-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================
   CELULAR E MENU RETRÁTIL
========================================= */
@media (max-width: 600px) {
    .container {
        width: 90%;
    }

    /* HEADER & HAMBURGUER */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        width: 44px;
        height: 44px;
    }

    .logo-text {
        padding-left: 10px;
    }

    .logo-text strong {
        font-size: 14px;
    }

    .logo-text span {
        font-size: 8px;
    }

    .hamburger-btn {
        display: flex;
    }

    /* MENU EXPANSÍVEL (MOBILE) */
    .nav {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: var(--background);
        padding: 25px 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        font-size: 13px;
        padding: 6px 0;
    }

    /* BOTÃO FLUTUANTE */
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }

    /* HERO */
    .hero {
        padding: 40px 0 50px;
    }

    .hero-container {
        display: block;
    }

    .hero-image {
        display: none !important;
    }

    .hero-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .hero-label span {
        width: 20px;
    }

    .hero h1 {
        font-size: clamp(28px, 9vw, 40px);
        line-height: 1.05;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
        word-break: break-word;
    }

    .service-24h {
        font-size: 11px;
        gap: 8px;
    }

    .service-line {
        width: 20px;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        min-height: 48px;
        padding: 12px 16px;
        font-size: 12px;
    }

    /* DESTAQUES */
    .highlight-item {
        padding: 20px 0;
    }

    .highlight-number {
        font-size: 18px;
        min-width: 35px;
    }

    .highlight-item h3 {
        font-size: 14px;
    }

    .highlight-item p {
        font-size: 13px;
    }

    /* SEÇÕES */
    .services,
    .equipment,
    .areas {
        padding: 50px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title > p:first-child {
        font-size: 11px;
    }

    .section-title h2 {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.1;
    }

    .section-description {
        font-size: 14px;
    }

    /* SERVIÇOS */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
        padding: 20px;
    }

    /* EQUIPAMENTOS */
    .equipment-card h3 {
        font-size: 18px;
    }

    /* ÁREA DE ATENDIMENTO */
    .areas-list {
        gap: 8px;
    }

    .areas-list span {
        padding: 10px 12px;
        font-size: 12px;
    }

    /* 24 HORAS */
    .availability-section {
        padding: 50px 0;
    }

    .availability-title h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.1;
    }

    .availability-text p {
        font-size: 14px;
    }

    /* CONTATO */
    .contact {
        padding: 50px 0;
    }

    .contact h2 {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.1;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-action {
        width: 100%;
    }

    .contact-action .button-primary {
        width: 100%;
    }

    /* FOOTER */
    .footer {
        padding: 30px 0;
    }
}

/* =========================================
   CELULARES MUITO PEQUENOS (< 380px)
========================================= */
@media (max-width: 380px) {
    .logo-text span {
        display: none;
    }

    .hero h1 {
        font-size: 26px;
    }

    .section-title h2 {
        font-size: 22px;
    }
}