/* ===================================
   CSS Variables
   =================================== */
:root {
    /* ===============================
       CORES PRINCIPAIS DA MARCA
       =============================== */
    --accent-color: #FF7A00;
    --orange-dark: #D65A00;
    --silver-light: #F2F2F2;
    --silver: #D9D9D9;
    --silver-dark: #A8A8A8;
    --black-primary: #000000;
    --black-secondary: #111111;
    --white-color: #FFFFFF;
    /* ===============================
       CORES UTILITÁRIAS
       =============================== */
    --primary-color: var(--silver-light);
    --gray-color: #A1A1AA;
    --light-color: #F8FAFC;
    --dark-color: #111111;
    /* ===============================
       GRADIENTES
       =============================== */
    --gradient-primary:
        linear-gradient(135deg,
            #000000,
            #1A1A1A);
    --gradient-accent:
        linear-gradient(135deg,
            #FF7A00,
            #D65A00);
    --gradient-silver:
        linear-gradient(135deg,
            #F2F2F2,
            #D9D9D9,
            #A8A8A8);
    /* ===============================
       SOMBRAS
       =============================== */
    --shadow-sm:
        0 2px 4px rgba(0, 0, 0, .15);
    --shadow-md:
        0 8px 20px rgba(0, 0, 0, .20);
    --shadow-lg:
        0 15px 35px rgba(0, 0, 0, .30);
    --shadow-xl:
        0 25px 50px rgba(0, 0, 0, .45);
    --shadow-orange:
        0 0 25px rgba(255, 122, 0, .35);

    /* Desktop */
    --header-height-desktop: 100px;
    --header-padding-desktop: 0px 30px;
    --logo-width-desktop: 260px;

    /* Tablet */
    --header-height-tablet: 80px;
    --header-padding-tablet: 0px 20px;
    --logo-width-tablet: 180px;

    /* Mobile */
    --header-height-mobile: 65px;
    --header-padding-mobile: 8px 12px;
    --logo-width-mobile: 115px;

    /* Landscape */
    --header-height-landscape: 75px;
    --header-padding-landscape: 0px 12px;
    --logo-width-landscape: 220px;

    /* Gaps */
    --header-gap-desktop: 12px;
    --header-gap-mobile: 8px;
    --header-gap-landscape: 6px;

    /* ===============================
       ANIMAÇÕES
       =============================== */
    --transition: .3s ease;

    /* ===============================
       TIPOGRAFIA
       =============================== */
    --font-primary:
        'Segoe UI',
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;
}

/* ===================================
   Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 0px;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   FIX: Home Section - Header Fixo
   AJUSTADO PARA MENU MOBILE
   =================================== */
#home {
    margin-top: 0;
    padding-top: 120px;
}

@media (max-width: 768px) {
    #home {
        padding-top: 100px;
    }
}


/* ===================================
   Utility Classes
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    color: var(--gray-color);
    font-size: 1.125rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1rem;
}



.btn-primary {
    background: var(--gradient-accent);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* ===================================
   HEADER PREMIUM
   =================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    z-index: 9999;
    background:
        linear-gradient(rgba(0, 0, 0, .80), rgba(0, 0, 0, .80)),
        url('https://img.magnific.com/vetores-gratis/fundo-de-textura-de-fibra-de-carbono-hexagonal-preto-brilhante_1017-37182.jpg?w=360') center/cover no-repeat;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .45);

    /* ADICIONE ISSO ↓ */
    height: var(--header-height-desktop);
    transition: all .3s ease;
    /* ATÉ AQUI ↑ */
}

.header:hover {
    border-color: rgba(255, 122, 0, .4);
    box-shadow:
        0 0 25px rgba(220, 122, 0, .15),
        0 15px 40px rgba(0, 0, 0, .5);
}

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

    /* ← USAR VARIÁVEIS */
    padding: var(--header-padding-desktop);
    gap: var(--header-gap-desktop);

    height: 100%;
    transition: padding .3s ease, gap .3s ease;
}

/* ===================================
   LOGO - ADAPTATIVA AO HEADER
   =================================== */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;

    width: var(--logo-width-desktop);
    height: auto;

    /* ADICIONE ISSO ↓ */
    min-height: 50px;
    /* Altura mínima segura */
    max-height: 80px;
    /* Altura máxima para desktop */
    /* ATÉ AQUI ↑ */

    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;

    transition: width .3s ease;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
}

.logo i {
    color: #FF7A00;
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(220, 122, 0, .5);
    flex-shrink: 0;
}

/* ===================================
   MENU - DESKTOP
   =================================== */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* ===================================
   RESPONSIVO - TABLET (1024px - 1199px)
   =================================== */
@media (max-width: 1199px) {
    .header {
        height: var(--header-height-desktop);
    }

    .header-content {
        padding: var(--header-padding-desktop);
        gap: var(--header-gap-desktop);
    }

    .logo {
        width: var(--logo-width-desktop);
    }
}

/* ===================================
   LANDSCAPE - CRÍTICO (max-width: 1024px)
   =================================== */
@media (orientation: landscape) and (max-width: 1024px) {
    .header {
        height: var(--header-height-landscape);
        top: 0.25rem;
    }

    .header-content {
        padding: var(--header-padding-landscape);
        gap: var(--header-gap-landscape);
    }

    .logo {
        width: var(--logo-width-landscape);
    }

    .nav-list {
        gap: 12px;
    }

    .nav-link {
        font-size: 0.8rem;
        padding-bottom: 4px;
    }

    .header-btn {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }

    .mobile-toggle span {
        width: 22px;
        height: 2px;
    }
}

/* ===================================
   LANDSCAPE COM ALTURA CRÍTICA (max-height: 500px)
   =================================== */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 1024px) {
    .header {
        height: var(--header-height-landscape);
        top: 0.15rem;
    }

    .header-content {
        padding: var(--header-padding-landscape);
    }

    .logo {
        width: var(--logo-width-landscape);
        max-height: 45px;
        /* ← ADICIONE ESTA LINHA */
        min-height: 30px;
        /* ← ADICIONE ESTA LINHA */
    }

    .nav-link {
        font-size: 0.75rem;
        padding-bottom: 2px;
    }

    .header-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

/* ===================================
   LINK DO MENU - SUBLINHA ANIMADA
   =================================== */
.nav-link {
    position: relative;
    color: #d4d4d8;
    font-size: .95rem;
    font-weight: 600;
    transition: color var(--transition);
    padding-bottom: 8px;
}

/* Sublinha antes do hover/active */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #FF7A00;
    border-radius: 2px;
    transition: width var(--transition);
}

/* Ao passar o mouse */
.nav-link:hover {
    color: #ffffff;
}

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

/* Quando está ativo */
.nav-link.active {
    color: #FF7A00;
}

.nav-link.active::after {
    width: 100%;
}

/* ===================================
   BOTÃO WHATSAPP
   =================================== */
.header-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25D366;
    color: white;
    font-size: 1.6rem;
    position: relative;
    z-index: 10001;
    box-shadow:
        0 0 20px rgba(37, 211, 102, .35);
    transition: var(--transition);
    flex-shrink: 0;
}

.logo,
.header-btn {
    flex-shrink: 0;
}

.header-btn:hover {
    transform:
        translateY(-3px) scale(1.08);
    box-shadow:
        0 0 30px rgba(37, 211, 102, .7);
}

@keyframes whatsappPulse {
    0% {
        transform: scale(.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ===================================
   MENU MOBILE - HAMBURGUER
   =================================== */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    position: relative;
    z-index: 10002;
    padding: 5px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 20px;
    background: white;
    transition: all .3s ease;
}

/* Animação do Hamburguer quando ativo */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   RESPONSIVO UNIFICADO - OTIMIZADO
   =================================== */
@media (max-width: 1023px) {
    .header {
        width: calc(100% - 1rem);
        top: .5rem;
        height: 85px;
    }

    .header-content {
        padding: 10px 16px;
        gap: 10px;
    }

    /* Aumentei o tamanho mínimo da logo */
    .logo {
        width: clamp(260px, 28vw, 320px);
        order: 1;
    }

    .mobile-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .header-btn {
        order: 3;
        width: 44px;
        height: 44px;
    }

    .nav {
        position: fixed;
        top: 75px;
        left: 10px;
        right: 60px;
        max-width: 300px;
        background: rgba(17, 17, 17, .98);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 122, 0, .25);
        border-radius: 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s;
        z-index: 9998;
    }

    .nav.active {
        max-height: calc(100vh - 100px);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-list li {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    .nav-list li:last-child .nav-link {
        border-bottom: none;
    }
}


@media (max-width: 767px) {
    #home {
        padding-top: 90px;
    }

    .header {
        height: 65px;
    }

    /* Logo maior para tablets */
    .logo {
        width: clamp(240px, 30vw, 280px);
    }

    .header-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 479px) {
    #home {
        padding-top: 80px;
    }

    .header {
        height: 60px;
        width: calc(100% - .5rem);
        top: .25rem;
    }

    .header-content {
        padding: 8px 12px;
        gap: 6px;
    }

    /* Logo maior para celulares - não encolhe tanto */
    .logo {
        width: min(220px, 50vw);
    }

    .nav {
        top: 65px;
        left: 8px;
        right: 55px;
        max-width: 250px;
    }
}

/* Landscape fix - mantém logo grande */
@media (orientation: landscape) and (max-width: 1024px) {
    .logo {
        width: min(300px, 35vw) !important;
    }
}

@media (max-width: 479px) {

    .section-title {
        font-size: clamp(1.5rem, 4vw, 1.75rem);
    }

    .hero-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.25rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

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

    .btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-circle {
        width: 300px;
        height: 300px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, .5);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    transition: .3s;
}

.prev:hover,
.next:hover {
    background: rgba(220, 122, 0, .8);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* ===================================
   HERO PREMIUM COMPACTO
   Ajustado para menu fixo
   =================================== */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 40px;
    position: relative;
    overflow: hidden;
}

.lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(0, 0, 0, .5);
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    transition: .3s;
}

.prev:hover,
.next:hover {
    background: rgba(220, 122, 0, .8);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* ===================================
   IMAGEM DE FUNDO
   =================================== */

.hero-bg {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .45) 0%,
            rgba(0, 0, 0, .45) 50%,
            rgba(0, 0, 0, .65) 100%),
        url('./img/imagemfundo.png') center/cover no-repeat;

    z-index: -2;
}


/* ===================================
   EFEITO DE LUZ LARANJA
   =================================== */

.hero::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    right: -200px;
    top: 50%;

    transform: translateY(-50%);

    background:
        radial-gradient(circle,
            rgba(220, 122, 0, .08),
            transparent 70%);

    pointer-events: none;

}


/* ===================================
   GRID PRINCIPAL
   TEXTO | IMAGEM
   =================================== */

.hero-content {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 25px;

    align-items: center;

    position: relative;
    z-index: 2;
}


/* ===================================
   BADGE SUPERIOR
   =================================== */

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 16px;

    border-radius: 50px;

    background: rgba(20, 20, 20, .95);

    border: 1px solid rgba(220, 122, 0, .25);

    color: white;

    font-size: .85rem;

    margin-bottom: 15px;
}

.hero-badge i {
    color: #FF7A00;
}


/* ===================================
   CARD PRINCIPAL
   =================================== */

.hero-card {

    background:
        linear-gradient(135deg,
            rgba(20, 20, 20, .95),
            rgba(35, 35, 35, .95));

    border: 1px solid rgba(220, 122, 0, .15);

    border-radius: 25px;

    padding: 28px;

    position: relative;

    overflow: hidden;
}


/* linha vermelha superior */

.hero-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #FF7A00;

}


/* efeito hover */

.hero-card:hover {

    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, .18);
}

/* ===================================
   ESCONDER IMAGEM EM LANDSCAPE
   =================================== */
@media (orientation: landscape) and (max-width: 1024px) {
    .hero-image {
        display: none;
    }
}

/* ===================================
   TITULO PRINCIPAL
   =================================== */

.hero-title {

    font-size: clamp(2rem, 4vw, 3.2rem);

    font-weight: 900;

    line-height: .95;

    color: white;

    margin-bottom: 12px;
}


/* palavra destaque */

.hero-title .highlight {
    color: #FF7A00;
}


/* ===================================
   LINHA DECORATIVA
   =================================== */

.hero-line {

    width: 60px;
    height: 4px;

    border-radius: 50px;

    background: #FF7A00;

    margin-bottom: 12px;
}


/* ===================================
   SUBTÍTULO
   =================================== */

.hero-subtitle {

    color: #a1a1aa;

    font-size: 1rem;

    line-height: 1.6;

    max-width: 550px;

    margin-bottom: 20px;
}


/* ===================================
   BOTÕES
   =================================== */

.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

/* botão transparente */

.btn-secondary {

    background: transparent;

    color: white;

    border: 1px solid rgba(220, 122, 0, .25);
}

.btn-secondary:hover {

    background: #FF7A00;

    border-color: #FF7A00;
}


/* ===================================
   CARDS DE ESTATÍSTICAS
   =================================== */

.hero-stats {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    margin-top: 18px;
}


/* card individual */

.stat-card {

    background:
        linear-gradient(135deg,
            rgba(20, 20, 20, .95),
            rgba(35, 35, 35, .95));

    border: 1px solid rgba(220, 122, 0, .15);

    border-radius: 18px;

    padding: 12px 10px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition: .3s;
}


/* detalhe vermelho superior */

.stat-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: #FF7A00;
}


/* efeito hover */

.stat-card:hover {

    transform: translateY(-5px);

    border-color: #FF7A00;

    box-shadow:
        0 0 20px rgba(220, 122, 0, .18);
}


/* ===================================
   ÁREA DOS ÍCONES
   =================================== */

.stat-icon {

    width: 42px;
    height: 42px;

    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            rgba(220, 122, 0, .15),
            rgba(220, 122, 0, .05));

    border: 1px solid rgba(220, 122, 0, .20);

    transition: .3s;
}


/* ícone */

.stat-icon i {

    color: #FF7A00;

    font-size: 1.1rem;
}


/* hover do ícone */

.stat-card:hover .stat-icon {

    transform:
        translateY(-3px) rotate(-5deg);

    box-shadow:
        0 0 12px rgba(220, 122, 0, .25);
}


/* ===================================
   NÚMERO DA ESTATÍSTICA
   =================================== */

.stat-number {

    display: block;

    font-size: 1.3rem;

    font-weight: 800;

    color: white;
}


/* ===================================
   TEXTO DA ESTATÍSTICA
   =================================== */

.stat-label {

    color: #a1a1aa;

    font-size: .75rem;

    line-height: 1.3;
}


/* ===================================
   ÁREA DA IMAGEM
   =================================== */

.hero-image {

    position: relative;

    z-index: 5;

    display: flex;

    justify-content: center;
}


/* card da foto */

.hero-image-card {

    width: min(360px, 28vw);
    height: min(360px, 28vw);

    border-radius: 50%;

    overflow: hidden;

    border: 4px solid #FF7A00;

    padding: 8px;

    background: #111;

    box-shadow:
        0 0 40px rgba(220, 122, 0, .30),
        0 20px 50px rgba(0, 0, 0, .50);

    position: relative;
}


/* moldura interna */

.hero-image-card::before {

    content: "";

    position: absolute;

    inset: 10px;

    border-radius: 18px;

    border: 1px solid rgba(220, 122, 0, .15);

    display: none;
}


/* imagem */

.hero-image-card img {

    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    user-select: none;
    -webkit-user-drag: none;
}


/* hover */

.hero-image-card:hover {

    box-shadow:
        0 0 25px rgba(220, 122, 0, .18),
        0 15px 40px rgba(0, 0, 0, .55);
}

/* ===================================
   RESPONSIVO TABLET
   =================================== */
@media(max-width:1200px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image-card {
        margin: auto;
    }
}

/* ===================================
   ESCONDER IMAGEM EM TABLET E MOBILE
   =================================== */
@media(max-width:1024px) {
    .hero-image {
        display: none;
    }
}


/* ===================================
   RESPONSIVO CELULAR
   =================================== */

@media(max-width:768px) {

    .hero {

        padding: 110px 0 50px;
    }

    .hero-title {

        font-size: 2.2rem;
    }

    .hero-buttons {

        flex-direction: column;
    }

    .hero-buttons .btn {

        width: 100%;

        justify-content: center;
    }

    .hero-stats {

        grid-template-columns: 1fr;
    }

    .hero-card {

        padding: 22px;
    }

    .hero-image-card {

        max-width: 300px;
    }
}

/* ===================================
   About Section - Premium Dark
   =================================== */

.about {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 1px solid rgba(220, 122, 0, 0.15);
    border-bottom: 1px solid rgba(220, 122, 0, 0.15);
}

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

/* TABLET - Começa a mudar */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        /* Imagem fica acima do texto */
    }
}

/* MOBILE - Totalmente vertical */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }

    .about-image {
        width: 100%;
        max-height: 280px;
        position: static !important;
    }

    .about-image img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        border-radius: 15px;
    }

    .about-badge {
        display: none !important;
    }

    .about-text {
        width: 100%;
        position: static !important;
    }
}

/* MOBILE PEQUENO (480px) */
@media (max-width: 480px) {
    .about-content {
        gap: 20px;
        flex-direction: column;
    }

    .about-image {
        max-height: 250px;
        position: static !important;
    }

    .about-image img {
        height: 250px;
    }

    .about-badge {
        display: none !important;
    }
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;

    border-radius: 20px;

    border: 1px solid rgba(220, 122, 0, 0.2);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .4),
        0 0 25px rgba(220, 38, 38, .15);

    transition: .4s;
}

.about-image:hover img {
    transform: scale(1.02);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .5),
        0 0 35px rgba(220, 122, 0, .35);
}

.about-badge {
    position: absolute;

    bottom: 30px;
    right: 30px;

    background: linear-gradient(135deg,
            #FF7A00,
            #D65A00);

    color: #ffffff;

    padding: 20px;

    border-radius: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;

    box-shadow:
        0 0 25px rgba(220, 122, 0, .4);
}

.about-badge i {
    font-size: 2rem;
}

.about-badge span {
    font-size: 1.125rem;
    font-weight: 700;
}

.about-text .section-subtitle {
    color: #FF7A00;
}

.about-text .section-title {
    color: #ffffff;
    text-align: left;
}

.about-description {
    color: #a1a1aa;
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px;

    background: rgba(255, 255, 255, .03);

    border: 1px solid rgba(220, 122, 0, .1);

    border-radius: 12px;

    color: #e4e4e7;

    transition: .3s;
}

.feature-item:hover {
    border-color: #FF7A00;

    transform: translateY(-3px);

    box-shadow:
        0 0 15px rgba(220, 122, 0, .15);
}

.feature-item i {
    color: #FF7A00;
    font-size: 1.2rem;
}

/* ===================================
   Gallery Section - Premium Dark
   =================================== */

.gallery {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #090909 0%,
            #111111 50%,
            #181818 100%);

    border-top: 1px solid rgba(220, 122, 0, .15);
    border-bottom: 1px solid rgba(220, 122, 0, .15);
}

.gallery .section-subtitle {
    color: #FF7A00;
}

.gallery .section-title {
    color: #ffffff;
}

.gallery .section-description {
    color: #a1a1aa;
}

/* DESKTOP - 4 colunas */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(220, 122, 0, .15);
    transition: .3s;
}

.gallery-item:hover {
    border-color: #FF7A00;
    box-shadow:
        0 0 25px rgba(220, 122, 0, .25);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, .05),
            rgba(220, 122, 0, .08));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .3s;
    pointer-events: none;
}

.gallery-overlay i {
    color: #ffffff;
    font-size: 2.5rem;
    transform: scale(.8);
    transition: .3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ===================================
   TABLET GRANDE (1024px)
   =================================== */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 200px);
        gap: 15px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 2;
    }
}

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 200px);
        gap: 12px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay i {
        font-size: 2rem;
    }
}

/* ===================================
   MOBILE (480px) - COLUNA ÚNICA
   =================================== */
@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }

    /* Todas as imagens em 1 coluna */
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 10px;
    }

    /* Todas com altura quadrada */
    .gallery-item {
        aspect-ratio: 1 / 1;
        min-height: 200px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-overlay i {
        font-size: 1.8rem;
    }
}

/* ===================================
   LANDSCAPE (Celular deitado)
   =================================== */
@media (orientation: landscape) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 150px);
        gap: 10px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ===================================
   Services Section - Premium Dark
   =================================== */

.services {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 1px solid rgba(220, 122, 0, 0.15);
    border-bottom: 1px solid rgba(220, 122, 0, 0.15);
}

.services .section-title {
    color: #ffffff;
}

.services .section-description {
    color: #a1a1aa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.95),
            rgba(35, 35, 35, 0.95));

    border: 1px solid rgba(220, 122, 0, 0.15);

    border-radius: 20px;

    overflow: hidden;

    transition: 0.3s;

    position: relative;
}

.service-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #FF7A00;

    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);

    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.4s;
}

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

.service-content {
    padding: 30px;
    text-align: center;
}

.service-content i {
    font-size: 3rem;

    color: #FF7A00;

    margin-bottom: 20px;

    text-shadow: 0 0 15px rgba(220, 122, 0, 0.5);

    transition: 0.3s;
}

.service-card:hover .service-content i {
    transform: scale(1.15);
}

.service-content h3 {
    font-size: 1.5rem;

    color: #ffffff;

    margin-bottom: 15px;

    font-weight: 700;
}

.service-content p {
    color: #a1a1aa;

    line-height: 1.8;
}

/* ===================================
   Highlights Section Premium
   =================================== */

.highlights {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 3px solid #FF7A00;
    border-bottom: 3px solid #FF7A00;
}

.highlights .section-subtitle {
    color: #FF7A00;
    font-weight: 700;
    letter-spacing: 2px;
}

.highlights .section-title {
    color: #ffffff;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.highlight-card {
    position: relative;

    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.98),
            rgba(35, 35, 35, 0.98));

    border: 1px solid rgba(220, 122, 0, 0.15);

    border-radius: 20px;

    padding: 40px 30px;

    text-align: center;

    overflow: hidden;

    transition: all 0.35s ease;
}

.highlight-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #FF7A00,
            #D65A00);
}

.highlight-card:hover {
    transform: translateY(-10px);

    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.45);
}

.highlight-icon {
    width: 85px;
    height: 85px;

    background: linear-gradient(135deg,
            #FF7A00,
            #D65A00);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    transition: 0.3s;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(220, 122, 0, 0.6);
}

.highlight-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.highlight-card h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.highlight-card p {
    color: #a1a1aa;
    line-height: 1.7;
}

/* ===================================
   Benefits Section Premium
   =================================== */

.benefits {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 3px solid #FF7A00;
    border-bottom: 3px solid #FF7A00;
}

/* Cabeçalho */

.benefits .section-subtitle {
    color: #FF7A00;
    font-weight: 700;
    letter-spacing: 2px;
}

.benefits .section-title {
    color: #ffffff;
}

.benefits .section-description {
    color: #a1a1aa;
}

/* Grid */

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

/* Cards */

.benefit-item {
    position: relative;

    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.98),
            rgba(35, 35, 35, 0.98));

    border: 1px solid rgba(220, 122, 0, 0.15);

    border-radius: 20px;

    padding: 40px 30px;

    text-align: center;

    overflow: hidden;

    transition: all 0.35s ease;
}

/* Barra vermelha superior */

.benefit-item::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #FF7A00,
            #D65A00);
}

/* Hover */

.benefit-item:hover {
    transform: translateY(-10px);

    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, 0.25),
        0 15px 35px rgba(0, 0, 0, 0.45);
}

/* Ícones */

.benefit-item i {
    font-size: 3rem;

    color: #FF7A00;

    margin-bottom: 20px;

    transition: all 0.3s ease;

    text-shadow: 0 0 15px rgba(220, 122, 0, 0.4);
}

.benefit-item:hover i {
    transform: scale(1.15);

    text-shadow: 0 0 25px rgba(220, 122, 0, 0.8);
}

/* Título */

.benefit-item h4 {
    color: #ffffff;

    font-size: 1.3rem;

    font-weight: 700;

    margin-bottom: 12px;
}

/* Texto */

.benefit-item p {
    color: #a1a1aa;

    line-height: 1.7;

    font-size: 0.95rem;
}

/* Responsivo */

@media (max-width: 768px) {
    .benefits {
        padding: 80px 0;
    }

    .benefit-item {
        padding: 30px 25px;
    }
}

/* ===================================
   Testimonials Section - Premium Dark
   =================================== */

.testimonials {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 1px solid rgba(220, 122, 0, 0.15);
    border-bottom: 1px solid rgba(220, 122, 0, 0.15);
}

.testimonials .section-subtitle {
    color: #FF7A00;
}

.testimonials .section-title {
    color: #ffffff;
}

.testimonials .section-description {
    color: #a1a1aa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.95),
            rgba(35, 35, 35, 0.95));

    border: 1px solid rgba(220, 122, 0, 0.15);

    border-radius: 20px;

    padding: 30px;

    position: relative;

    overflow: hidden;

    transition: 0.3s;
}

.testimonial-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #FF7A00;
}

.testimonial-card:hover {
    transform: translateY(-10px);

    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;

    border-radius: 50%;

    object-fit: cover;

    border: 2px solid #FF7A00;

    box-shadow:
        0 0 15px rgba(220, 122, 0, 0.3);
}

.testimonial-info h4 {
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #FF7A00;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #a1a1aa;

    line-height: 1.8;

    font-style: italic;
}

/* efeito de aspas */

.testimonial-card::after {
    content: "❝";

    position: absolute;

    top: 15px;
    right: 20px;

    font-size: 4rem;

    color: rgba(220, 122, 0, 0.08);

    font-family: serif;

    pointer-events: none;
}

/* ===================================
   FAQ Section - Premium Dark
   =================================== */

.faq {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 1px solid rgba(220, 122, 0, 0.15);
    border-bottom: 1px solid rgba(220, 122, 0, 0.15);
}

.faq .section-subtitle {
    color: #FF7A00;
}

.faq .section-title {
    color: #ffffff;
}

.faq .section-description {
    color: #a1a1aa;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.95),
            rgba(35, 35, 35, 0.95));

    border: 1px solid rgba(220, 122, 0, 0.15);

    border-radius: 16px;

    margin-bottom: 18px;

    overflow: hidden;

    transition: 0.3s;
}

.faq-item:hover {
    border-color: #FF7A00;

    box-shadow:
        0 0 20px rgba(220, 122, 0, 0.2);
}

.faq-question {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 25px;

    text-align: left;

    font-size: 1.1rem;
    font-weight: 600;

    color: #ffffff;

    cursor: pointer;

    transition: 0.3s;
}

.faq-question:hover {
    background: rgba(220, 122, 0, 0.08);
}

.faq-question i {
    color: #FF7A00;

    font-size: 1rem;

    transition: 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 25px 25px;

    color: #a1a1aa;

    line-height: 1.8;
}

.faq-item.active {
    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, 0.25);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ===================================
   Contact Section - Premium Dark
   =================================== */

.contact {
    padding: 100px 0;

    background: linear-gradient(135deg,
            #0a0a0a 0%,
            #111111 50%,
            #1a1a1a 100%);

    border-top: 1px solid rgba(220, 122, 0, 0.15);
    border-bottom: 1px solid rgba(220, 122, 0, 0.15);
}

.contact .section-subtitle {
    color: #FF7A00;
}

.contact .section-title {
    color: #ffffff;
}

.contact .section-description {
    color: #a1a1aa;
}

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

.contact-card {
    background: linear-gradient(135deg,
            rgba(20, 20, 20, 0.95),
            rgba(35, 35, 35, 0.95));

    border: 1px solid rgba(220, 122, 0, 0.15);

    border-radius: 20px;

    padding: 40px 30px;

    text-align: center;

    position: relative;

    overflow: hidden;

    transition: 0.3s;
}

.contact-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #FF7A00;
}

.contact-card:hover {
    transform: translateY(-10px);

    border-color: #FF7A00;

    box-shadow:
        0 0 25px rgba(220, 122, 0, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.4);
}

.contact-icon {
    width: 80px;
    height: 80px;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            #FF7A00,
            #D65A00);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 0 20px rgba(220, 122, 0, 0.4);

    transition: 0.3s;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.contact-card h3 {
    font-size: 1.5rem;

    color: #ffffff;

    margin-bottom: 15px;

    font-weight: 700;
}

.contact-card p {
    color: #a1a1aa;

    line-height: 1.8;

    margin-bottom: 5px;
}

/* ===================================
   FOOTER PREMIUM
   =================================== */
.footer {
    position: relative;
    background:
        linear-gradient(rgba(0, 0, 0, .92),
            rgba(0, 0, 0, .92)),
        url('https://img.magnific.com/vetores-gratis/fundo-de-textura-de-fibra-de-carbono-hexagonal-preto-brilhante_1017-37182.jpg?w=360') center/cover no-repeat;
    color: #d4d4d8;
    padding: 70px 0 0;
    overflow: hidden;
    border-top: 2px solid rgba(255, 122, 0, .4);
    box-shadow:
        0 -10px 30px rgba(255, 122, 0, .10);
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background:
        linear-gradient(90deg,
            transparent,
            #FF7A00,
            #FFD699,
            #FF7A00,
            transparent);
    box-shadow:
        0 0 15px rgba(255, 122, 0, .7),
        0 0 30px rgba(255, 122, 0, .3);
}

.footer::after {
    content: "";
    position: absolute;
    top: -250px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background:
        radial-gradient(circle,
            rgba(255, 122, 0, .08),
            transparent 70%);
    pointer-events: none;
}

/* ===================================
   FOOTER CONTENT - DESKTOP (4 COLUNAS)
   =================================== */
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* ===================================
   COLUNA 1: LOGO E DESCRIÇÃO
   =================================== */
.footer-column:first-child {
    grid-column: 1;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

/* DESKTOP - Tamanho padrão */
.footer-logo img {
    width: clamp(240px, 25vw, 280px);
    height: auto;
    border-radius: 20px;
}

/* TABLET GRANDE (1024px) */
@media (max-width: 1024px) {
    .footer-logo img {
        width: 280px;
        height: auto;
    }
}

/* TABLET (768px) */
@media (max-width: 768px) {
    .footer-logo img {
        width: clamp(160px, 30vw, 320px);
        height: auto;
    }
}

/* MOBILE (480px) */
@media (max-width: 480px) {
    .footer-logo img {
        width: clamp(140px, 28vw, 320px);
        height: auto;
    }
}

/* LANDSCAPE */
@media (orientation: landscape) and (max-width: 1024px) {
    .footer-logo img {
        width: clamp(120px, 20vw, 200px) !important;
    }
}

.footer-logo span {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    display: none;
}

.footer-description {
    line-height: 1.8;
    color: #bdbdbd;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        linear-gradient(135deg,
            #54ce68,
            #42da70);
    border: 1px solid rgba(255, 122, 0, .15);
    color: #ffffff;
    font-size: 18px;
    transition: .3s;
}

.footer-social a:hover {
    background:
        linear-gradient(135deg,
            #FF7A00,
            #D65A00);
    border-color: #FF7A00;
    transform:
        translateY(-4px) scale(1.05);
    box-shadow:
        0 0 20px rgba(255, 122, 0, .5);
}

/* ===================================
   COLUNAS 2, 3, 4: LINKS E CONTATO
   =================================== */
.footer-column {
    grid-column: auto;
    text-align: left;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
}

.footer-column h4::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 8px;
    margin-bottom: 0;
    border-radius: 50px;
    background: #FF7A00;
    box-shadow:
        0 0 10px rgba(255, 122, 0, .4);
}

/* ===================================
   LINKS RÁPIDOS
   =================================== */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links li {
    margin-bottom: 0;
    list-style: none;
}

.footer-links a {
    color: #bdbdbd;
    transition: .3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #FF7A00;
    text-shadow:
        0 0 10px rgba(255, 122, 0, .4);
}

/* ===================================
   CONTATO
   =================================== */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    list-style: none;
}

.footer-contact i {
    color: #FF7A00;
    margin-top: 3px;
    text-shadow:
        0 0 8px rgba(255, 122, 0, .4);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.footer-contact span {
    color: #bdbdbd;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact .btn {
    margin-top: 15px;
    align-self: flex-start;
}

/* BOTÃO DO FOOTER */
.btn-footer {
    border: 2px solid #FF7A00;
    background: transparent;
    color: #ffffff;
    transition: all 0.3s ease;
}

.btn-footer:hover {
    background: linear-gradient(135deg, #FF7A00, #D65A00);
    border-color: #FF7A00;
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}

/* ===================================
   RODAPÉ INFERIOR
   =================================== */
.footer-bottom {
    position: relative;
    z-index: 2;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .05);
    color: #8f8f8f;
    font-size: .95rem;
}

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

    .footer-column:first-child {
        grid-column: span 3;
    }

    /* Centralizar contato em tablet */
    .footer-column:nth-child(4) {
        text-align: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .footer-contact .btn {
        align-self: center;
        width: auto;
        margin-top: 10px;
    }
}

/* ===================================
   RESPONSIVO - MOBILE GRANDE (768px)
   =================================== */
@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }

    .footer .container {
        padding: 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column:first-child {
        grid-column: 1;
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 122, 0, .2);
    }

    .footer-column h4 {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-links {
        gap: 12px;
        align-items: center;
    }

    .footer-links a {
        display: inline-block;
    }

    .footer-contact {
        gap: 12px;
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer-contact i {
        margin-top: 0;
    }

    .footer-logo img {
        width: 220px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
        padding: 20px 15px;
    }

    .footer-social {
        justify-content: center;
        gap: 12px;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}

/* ===================================
   RESPONSIVO - MOBILE PEQUENO (480px)
   =================================== */
@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer .container {
        padding: 0 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding-bottom: 25px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
        text-align: center;
    }

    .footer-column h4::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo img {
        width: 200px;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-links {
        gap: 10px;
    }

    .footer-links a {
        display: inline-block;
    }

    .footer-contact {
        gap: 10px;
    }

    .footer-contact li {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer-contact span {
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding: 15px 10px;
    }

    .footer-social {
        justify-content: center;
        gap: 10px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .footer-contact .btn {
        margin-top: 15px;
        align-self: center;
        padding: 12px 30px;
        font-size: 0.9rem;
        width: auto;
        display: inline-flex;
    }
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: clamp(1rem, 3vw, 2rem);
    right: clamp(1rem, 3vw, 2rem);
    width: clamp(2.5rem, 5vw, 3.25rem);
    height: clamp(2.5rem, 5vw, 3.25rem);
    background: linear-gradient(135deg, #FF7A00, #D65A00);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 122, 0, .3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 122, 0, .5);
}

/* ===================================
   RESPONSIVO - LANDSCAPE (Celular Virado)
   Apenas em telas até 1024px (não afeta desktop)
   =================================== */
@media (orientation: landscape) and (max-width: 1024px) {

    /* GERAL */
    body {
        padding-top: 0;
    }

    #home {
        padding-top: 65px;
    }

    /* HEADER */
    .header {
        top: 0.25rem;
    }

    .header-content {
        padding: 0.4rem 0.75rem;
        gap: 0.5rem;
    }

    .logo img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .mobile-toggle span {
        width: 24px;
        height: 2.5px;
    }

    /* HERO */
    .hero {
        padding: 100px 0 20px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .hero-image-card {
        width: 100px;
        height: 100px;
        padding: 4px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 8px;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        width: auto;
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .btn i {
        font-size: 0.9rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-card {
        padding: 8px 6px;
    }

    .stat-number {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 4px;
    }

    .stat-icon i {
        font-size: 0.95rem;
    }

    /* SEÇÕES GERAIS */
    .about,
    .gallery,
    .services,
    .highlights,
    .benefits,
    .testimonials,
    .faq,
    .contact {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-subtitle {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* ABOUT */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image {
        max-height: 250px;
    }

    .about-image img {
        height: 250px;
        object-fit: cover;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-top: 15px;
    }

    .feature-item {
        padding: 10px;
        font-size: 0.9rem;
    }

    /* GALLERY */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 12px;
    }

    .gallery-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-item {
        border-radius: 12px;
    }

    /* CARDS */
    .service-card,
    .highlight-card,
    .benefit-item,
    .testimonial-card,
    .contact-card {
        padding: 20px 15px;
    }

    .service-image {
        height: 150px;
    }

    .service-content h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .service-content p {
        font-size: 0.85rem;
    }

    .highlight-icon {
        width: 65px;
        height: 65px;
    }

    .highlight-icon i {
        font-size: 1.5rem;
    }

    .highlight-card h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

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

    .footer-content {
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .footer-links,
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 8px 0;
    }

    .footer-map iframe {
        height: 150px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ===================================
   BREAKPOINT: Landscape com altura pequena (max 1024px)
   =================================== */
@media (max-height: 500px) and (orientation: landscape) and (max-width: 1024px) {
    .hero {
        padding: 100px 0 10px;
    }

    .hero-badge {
        margin-top: 35px;
    }

    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 4px;
    }

    .hero-subtitle {
        display: none;
    }

    .hero-image-card {
        display: none;
    }

    .hero-buttons {
        gap: 6px;
    }

    .hero-buttons .btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}