@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@300;400;600&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #0b0b0c;
    color: #e5e5e5;
    padding-top: 90px;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

ul {
    list-style: none;
}

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

/* CONTAINER PADRÃO */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   HEADER & NAVEGAÇÃO
   ========================================================================== */
header {
    background-color: rgba(11, 11, 12, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    border-bottom: 1px solid #1a1a1e;
}

.container-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-info {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-info strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.unidade {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #d4af37;
    text-transform: uppercase;
}

/* NAV DESKTOP */
nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    color: #cccccc;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #ffffff;
}

nav ul > li:not(.nav-cta) a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

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

/* BOTÃO CTA NO MENU */
.nav-cta a {
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #000000;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta a:hover {
    background: linear-gradient(135deg, #e5be48 0%, #c5a028 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.menu-toggle {
    display: none;
}

/* ==========================================================================
   SEÇÕES GERAIS E TIPOGRAFIA
   ========================================================================== */
section {
    padding: 80px 0;
    border-bottom: 1px solid #18181c;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #ffffff;
    line-height: 1.2;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

p {
    color: #b0b0b8;
    font-size: 1rem;
}

/* HERO */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding-top: 40px;
}

.hero p {
    max-width: 750px;
}

.hero figure {
    width: 100%;
    max-width: 900px;
    margin-top: 20px;
}

.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* SECTION SIDE */
.section-side {
    display: flex;
    align-items: center;
    gap: 50px;
}

.section-side .content,
.section-side figure {
    flex: 1;
}

.section-side figure img {
    width: 100%;
    height: auto;
}

/* SERVICES & METHOD */
#services, #method {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

#services > h2, #method > h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 10px;
}

#services article, #method article {
    background-color: #121215;
    border: 1px solid #1f1f25;
    padding: 28px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

#services article:hover, #method article:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

#services article figure, #method article figure {
    width: 100%;
    margin-bottom: 18px;
    overflow: hidden;
    border-radius: 8px;
}

#services article img, #method article img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

#services article p, #method article p {
    font-size: 0.95rem;
}

#services article a {
    margin-top: auto;
    padding-top: 18px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

#services article a:hover {
    color: #ffffff;
}

/* CTA SERVICES CARD */
.cta-services {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(180deg, #16161a 0%, #101012 100%);
    border: 1px solid #282830;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.cta-card p {
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
    color: #000000;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* ADVANTAGES & VALUES */
section ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

section ul li {
    background-color: #121215;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #1f1f25;
}

section ul h3 {
    color: #d4af37;
}

section dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}

dl dt {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 8px;
    border-left: 3px solid #d4af37;
    padding-left: 12px;
}

dl dd {
    color: #b0b0b8;
    font-size: 0.95rem;
}

/* FAQ */
#faq details {
    background-color: #121215;
    border: 1px solid #1f1f25;
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 14px;
    transition: border-color 0.2s ease;
}

#faq details[open] {
    border-color: #d4af37;
}

#faq summary {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 1rem;
}

#faq details p {
    margin-top: 12px;
    font-size: 0.95rem;
}

/* ABOUT US */
#about {
    max-width: 900px;
    margin: 0 auto;
}

#about p {
    margin-bottom: 16px;
}

#about article {
    margin-top: 28px;
    padding-top: 16px;
    border-top: 1px solid #1f1f25;
}

#about article h3 {
    color: #d4af37;
    margin-bottom: 2px;
}

/* INFORMATION SECTION */
.information-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.information-info {
    flex: 1;
}

.information-info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.information-info li {
    background: none;
    border: none;
    padding: 0;
    line-height: 1.5;
}

.information-info strong {
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.information-info svg {
    fill: #d4af37;
}

.information-info a {
    color: #d4af37;
    font-weight: 600;
}

.information-info a:hover {
    text-decoration: underline;
}

.information figure {
    flex: 1;
}

/* FOOTER */
footer {
    padding: 30px 20px;
    text-align: center;
    background-color: #060607;
    border-top: 1px solid #18181c;
    color: #71717a;
    font-size: 0.9rem;
}

footer nav {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer a {
    color: #a1a1aa;
    transition: color 0.2s ease;
}

footer a:hover {
    color: #d4af37;
}

/* BOTÃO FLUTUANTE WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: transform 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float i {
    font-size: 30px;
}

/* ==========================================================================
   RESPONSIVIDADE (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* BOTÃO MENU HAMBÚRGUER */
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        font-size: 26px;
        color: #ffffff;
        cursor: pointer;
    }

    /* NAVEGAÇÃO MOBILE (DRAWER) */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0d0d0e;
        padding: 24px;
        border-bottom: 1px solid #1a1a1e;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    nav a {
        font-size: 15px;
    }

    /* GRIDS PARA 1 COLUNA */
    #services, #method, section ul, section dl {
        grid-template-columns: 1fr;
    }

    .section-side, .information-content {
        flex-direction: column;
        text-align: center;
    }

    .information-info strong {
        justify-content: center;
    }

    .logo-info {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 80px;
    }

    section {
        padding: 50px 0;
    }

    h1 {
        font-size: 1.8rem;
    }

    .cta-card {
        padding: 30px 16px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float i {
        font-size: 26px;
    }
}



/* ==========================================================
   AJUSTE DE ESPAÇAMENTO DA SEÇÃO INFORMATION
   ========================================================== */
#information ul {
    display: flex;
    flex-direction: column;
    gap: 22px; /* Distância entre um bloco de informação e outro */
}

#information li {
    line-height: 1.25 !important; /* Reduz a distância gerada pelo <br> */
}

#information li strong {
    display: inline-block;
    margin-bottom: 3px; /* Espaço mínimo logo abaixo do título/ícone */
    color: #ffffff;
}

#information li a {
    color: #d4af37;
}

#information li a:hover {
    text-decoration: underline;
}