/* 
  Digital Objetiva - Design System Pro 1.0
  Premium Dark Aesthetic | Glassmorphism | Responsive Grid
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;800&display=swap');

/* --- Variables --- */
:root {
    --header-height: 4.5rem;
    
    /* Colors */
    --first-color: #0ea5e9; /* Cyan 500 */
    --first-color-alt: #0284c7; /* Cyan 600 */
    --secondary-color: #10b981; /* Emerald 500 (WhatsApp/Action) */
    --title-color: #f8fafc;
    --text-color: #94a3b8; /* Slate 400 */
    --text-color-light: #cbd5e1;
    --body-color: #0b1220; /* Deep Slate */
    --container-color: #111c2e; /* Surface */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --premium-border: rgba(148, 163, 184, 0.18);
    --premium-shadow: 0 24px 70px rgba(2, 6, 23, 0.42);
    
    /* Typography */
    --body-font: 'Inter', sans-serif;
    --title-font: 'Outfit', sans-serif;
    --biggest-font-size: 2.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
    
    /* Font weight */
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 800;
    
    /* Margenes */
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;
    
    /* z index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;
}

@media screen and (min-width: 968px) {
    :root {
        --biggest-font-size: 4rem;
        --h1-font-size: 3.5rem;
        --h2-font-size: 2.25rem;
        --h3-font-size: 1.5rem;
        --normal-font-size: 1.1rem;
        --small-font-size: .95rem;
        --smaller-font-size: .813rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background:
        radial-gradient(circle at 18% 8%, rgba(14, 165, 233, 0.15), transparent 28rem),
        radial-gradient(circle at 82% 18%, rgba(16, 185, 129, 0.08), transparent 26rem),
        linear-gradient(180deg, #08111f 0%, var(--body-color) 42%, #060b14 100%);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    font-family: var(--title-font);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: .3s;
}

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

/* --- Reusable CSS Classes --- */
.section {
    padding: 5.5rem 0 2rem;
}

.section-description {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color-light);
}

.section-title_container {
    margin-bottom: var(--mb-3);
}

.section-title_container.center {
    text-align: center;
}

.section-title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-0-5);
}

.section-title b {
    color: var(--first-color);
}

.section-subtitle {
    display: block;
    font-size: var(--small-font-size);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bd-grid {
    max-width: 1200px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

@media screen and (min-width: 1216px) {
    .bd-grid {
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Layout --- */
.l-main {
    overflow: hidden;
}

/* --- Header & Nav --- */
.header {
    width: 100%;
    background: rgba(8, 17, 31, 0.72);
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    transition: .4s;
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav_logo {
    font-family: var(--title-font);
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.nav_logo a {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.nav_logo img {
    filter: drop-shadow(0 10px 18px rgba(14, 165, 233, 0.16));
}

.nav_logo b {
    color: var(--first-color);
}

@media screen and (max-width: 968px) {
    .nav_menu {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 80%;
        height: calc(100vh - var(--header-height));
        background-color: var(--body-color);
        padding: 4rem 2rem;
        box-shadow: -4px 0 20px rgba(0,0,0,0.3);
        transition: .4s;
        border-left: 1px solid var(--glass-border);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
}

.nav_item {
    margin-bottom: var(--mb-2-5);
}

.nav_link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: .3s;
    font-size: var(--h3-font-size);
}

.nav_cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary-color), #0ea5e9);
    padding: .72rem 1rem;
    border-radius: .5rem;
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    box-shadow: 0 14px 30px rgba(16, 185, 129, 0.16);
}

.nav_cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(14, 165, 233, 0.22);
}

.nav_link:hover, .nav_link.active {
    color: var(--first-color);
}

.nav_toggle {
    font-size: 1.5rem;
    color: var(--title-color);
    cursor: pointer;
}

/* Show menu mobile */
.show-menu {
    right: 0;
}

/* Scroll header bg change */
.scroll-header {
    background: rgba(8, 17, 31, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--premium-border);
    box-shadow: 0 18px 45px rgba(2,6,23,0.24);
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 8.5rem 0 5rem;
    isolation: isolate;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(148, 163, 184, 0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 78%);
    z-index: -1;
}

.subpage-hero {
    padding: 9rem 0 4rem;
    text-align: center;
}

.presenca-hero {
    background:
        radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.18), transparent 30rem),
        linear-gradient(180deg, rgba(8, 17, 31, 0.92), rgba(8, 17, 31, 0.35));
}

.bg-blue-light { background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent); }
.bg-green-light { background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent); }
.bg-yellow-light { background: linear-gradient(135deg, rgba(234, 179, 8, 0.05), transparent); }

.hero_container {
    display: grid;
    gap: 2rem;
}

.hero_subtitle {
    display: block;
    font-size: var(--normal-font-size);
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-0-75);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.hero_title {
    font-size: var(--biggest-font-size);
    margin-bottom: var(--mb-1-5);
    max-width: 780px;
}

.hero_title b {
    color: var(--first-color);
}

.hero_description {
    margin-bottom: var(--mb-2-5);
    max-width: 690px;
    color: var(--text-color-light);
}

.hero_metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
    max-width: 640px;
    margin-bottom: var(--mb-2);
}

.hero_metrics span {
    min-height: 74px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .2rem;
    padding: .9rem 1rem;
    border: 1px solid var(--premium-border);
    border-radius: .75rem;
    background: rgba(15, 23, 42, 0.58);
    color: var(--text-color-light);
    font-size: var(--smaller-font-size);
}

.hero_metrics b {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 1.28rem;
}

.hero_btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background: linear-gradient(135deg, var(--first-color), var(--first-color-alt));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: .45rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
    min-height: 48px;
    box-shadow: 0 16px 34px rgba(14, 165, 233, 0.22);
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(14, 165, 233, 0.32);
}

.button-ghost {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--premium-border);
    color: var(--text-color-light);
    box-shadow: none;
}

.button-ghost:hover {
    background: rgba(14, 165, 233, 0.12);
    border-color: var(--first-color);
    color: white;
}

.hero_img {
    display: flex;
    justify-content: center;
    position: relative;
}

.hero_panel {
    width: min(100%, 420px);
    padding: 1.25rem;
    border-radius: 1.2rem;
    border: 1px solid var(--premium-border);
    background:
        linear-gradient(180deg, rgba(17, 28, 46, 0.96), rgba(8, 17, 31, 0.92)),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 16rem);
    box-shadow: var(--premium-shadow);
}

.hero_panel-top {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--premium-border);
    color: var(--title-color);
    font-weight: var(--font-bold);
}

.hero_panel-top img {
    height: 42px;
    width: auto;
}

.hero_panel-list {
    display: grid;
    gap: .85rem;
    margin: 1.25rem 0;
}

.hero_panel-list span {
    display: flex;
    align-items: center;
    gap: .75rem;
    min-height: 48px;
    padding: .85rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    border-radius: .75rem;
    background: rgba(255,255,255,0.03);
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.hero_panel-list i {
    color: var(--first-color);
}

.hero_panel-action {
    padding: .95rem 1rem;
    border-radius: .75rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: #bbf7d0;
    text-align: center;
    font-weight: var(--font-semi-bold);
}

@keyframes flow {
    0%, 100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; transform: scale(1); }
    50% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; transform: scale(1.1); }
}

/* --- Sobre Nós --- */
.sobre_content {
    display: grid;
    gap: 2.5rem;
}

.sobre_text p {
    margin-bottom: var(--mb-2);
}

.sobre_mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.mission-item i {
    font-size: 2rem;
    color: var(--first-color);
    margin-bottom: var(--mb-0-5);
}

.mission-item h3 {
    margin-bottom: var(--mb-0-25);
}

.sobre_card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-card {
    background: linear-gradient(180deg, rgba(17, 28, 46, 0.96), rgba(10, 19, 34, 0.96));
    padding: 1.5rem;
    border-radius: .65rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: .3s;
}

.value-card i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--mb-0-5);
}

.value-card span {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.value-card:hover {
    border-color: var(--first-color);
    transform: translateY(-5px);
}

/* --- Serviços --- */
.servicos_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.servico-card {
    background: linear-gradient(180deg, rgba(17, 28, 46, 0.96), rgba(10, 19, 34, 0.96));
    padding: 2rem;
    border-radius: .85rem;
    border: 1px solid var(--premium-border);
    transition: .3s;
    position: relative;
    overflow: hidden;
}

.servico_icon {
    font-size: 2.5rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
}

.servico-card h3 {
    margin-bottom: var(--mb-0-75);
}

.servico-card p {
    font-size: var(--small-font-size);
    margin-bottom: var(--mb-1-5);
}

.link-btn {
    font-size: var(--small-font-size);
    font-weight: var(--font-semi-bold);
    color: var(--first-color);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    transition: .3s;
}

.link-btn:after {
    content: '\2192';
    transition: .3s;
    font-size: 1.1rem;
}

.servico-card:hover {
    transform: translateY(-8px);
    border-color: var(--first-color);
    box-shadow: var(--premium-shadow);
}

.servico-card:hover .link-btn:after {
    transform: translateX(5px);
}

/* --- Serviços Expressos --- */
.expressos_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.expresso_card {
    background: linear-gradient(180deg, rgba(17, 28, 46, 0.96), rgba(10, 19, 34, 0.96));
    padding: 2rem;
    border-radius: .85rem;
    border: 1px solid var(--premium-border);
    transition: .3s;
}

.expresso_card i {
    font-size: 2rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
}

.expresso_card h3 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--title-color);
}

.expresso_card ul {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.expresso_card ul li {
    font-size: var(--small-font-size);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.expresso_card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-color);
    font-size: .8rem;
}

.expresso_card:hover {
    border-color: var(--first-color);
    transform: translateY(-5px);
}

/* --- CurriculoClick Highlight --- */
.curriculo-click {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
    border-radius: 2rem;
    margin: 2rem 0;
    padding: 4rem 0;
}

.highlight_content {
    display: grid;
    gap: 3rem;
}

.badge {
    display: inline-block;
    padding: .25rem .75rem;
    background: var(--first-color);
    color: white;
    border-radius: 2rem;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-semi-bold);
    margin-bottom: var(--mb-1);
}

.check-list {
    margin: var(--mb-1-5) 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: var(--mb-0-5);
    color: var(--text-color-light);
}

.check-list li i {
    color: var(--secondary-color);
}

.price-tag {
    margin-bottom: var(--mb-2);
}

.price-label {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color);
}

.price-value {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    color: var(--title-color);
    font-family: var(--title-font);
}

.price-info {
    font-size: var(--small-font-size);
    color: var(--secondary-color);
    margin-left: .5rem;
}

.highlight_preview {
    display: flex;
    justify-content: center;
}

.preview_box {
    background: var(--container-color);
    padding: .5rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: .5s;
}

.preview_box:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.browser-mock {
    display: flex;
    gap: 4px;
    padding: .5rem;
    background: #334155;
    border-radius: .5rem .5rem 0 0;
}

.mock_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64748b;
}

.preview_box img {
    border-radius: 0 0 .5rem .5rem;
}

/* --- Como Funciona --- */
.passos_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.passo_item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(180deg, rgba(17, 28, 46, 0.96), rgba(10, 19, 34, 0.96));
    padding: 1.5rem;
    border-radius: .85rem;
    border: 1px solid var(--premium-border);
    transition: .3s;
}

.passo_item:hover {
    border-color: var(--first-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.passo_numero {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--h2-font-size);
    font-weight: var(--font-bold);
    color: var(--first-color);
    border: 2px solid var(--first-color);
    border-radius: 50%;
    font-family: var(--title-font);
}

.passo_texto h3 {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-0-5);
    line-height: 1.3;
}

.passo_texto p {
    font-size: var(--small-font-size);
    color: var(--text-color);
}

/* --- sites --- */
.sites_info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: var(--mb-3);
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 2.5rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
}

.cta-center {
    text-align: center;
    margin-top: var(--mb-3);
}

.cta-center p {
    margin-bottom: var(--mb-1-5);
}

/* --- Suporte --- */
.suporte_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(17, 28, 46, 0.98), rgba(10, 19, 34, 0.96)),
        radial-gradient(circle at 10% 10%, rgba(14, 165, 233, 0.16), transparent 18rem);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--premium-border);
    box-shadow: var(--premium-shadow);
}

.suporte_img {
    display: flex;
    justify-content: center;
}

.suporte-main-icon {
    font-size: 6rem;
    color: var(--first-color);
    opacity: 0.2;
}

.text-accent {
    color: var(--first-color);
    font-weight: var(--font-semi-bold);
    display: block;
    margin-bottom: var(--mb-1);
}

.suporte_features {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin: var(--mb-1-5) 0;
}

.feat-badge {
    background: rgba(14, 165, 233, 0.1);
    color: var(--text-color-light);
    padding: .5rem 1rem;
    border-radius: .5rem;
    font-size: var(--small-font-size);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.feat-badge i {
    color: var(--first-color);
}

/* --- Social --- */
.social_content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* --- Presença Web --- */
.presenca-web {
    background:
        linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(16, 185, 129, 0.045)),
        rgba(255,255,255,0.01);
    border-top: 1px solid rgba(148, 163, 184, 0.10);
    border-bottom: 1px solid rgba(148, 163, 184, 0.10);
    margin-top: 2rem;
}

.presenca_container {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.presenca_copy p {
    color: var(--text-color-light);
    max-width: 680px;
    margin-bottom: var(--mb-2);
}

.presenca_steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: .85rem;
    margin-bottom: var(--mb-2);
}

.presenca_steps span {
    display: flex;
    align-items: center;
    gap: .7rem;
    min-height: 54px;
    padding: .85rem 1rem;
    border-radius: .7rem;
    border: 1px solid var(--premium-border);
    background: rgba(2, 6, 23, 0.24);
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.presenca_steps i {
    color: var(--first-color);
}

.presenca_stack {
    display: grid;
    gap: 1rem;
}

.presence-card {
    padding: 1.25rem;
    border-radius: .9rem;
    border: 1px solid var(--premium-border);
    background: linear-gradient(180deg, rgba(17, 28, 46, 0.95), rgba(10, 19, 34, 0.95));
    box-shadow: 0 18px 45px rgba(2, 6, 23, 0.20);
}

.presence-card i {
    color: var(--first-color);
    font-size: 1.35rem;
    margin-bottom: .75rem;
}

.presence-card strong,
.presence-card span {
    display: block;
}

.presence-card strong {
    color: var(--title-color);
    font-family: var(--title-font);
    font-size: 1.1rem;
    margin-bottom: .35rem;
}

.presence-card span {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
}

.presence-card.is-featured {
    border-color: rgba(14, 165, 233, 0.45);
    background:
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.18), transparent 15rem),
        linear-gradient(180deg, rgba(17, 28, 46, 0.98), rgba(10, 19, 34, 0.98));
}

.social_card {
    background: linear-gradient(180deg, rgba(17, 28, 46, 0.96), rgba(10, 19, 34, 0.96));
    padding: 2.5rem;
    border-radius: .85rem;
    border: 1px solid var(--premium-border);
    transition: .3s;
}

.social_icon-top {
    font-size: 2rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
}

.social_card:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: var(--first-color);
}

/* --- Contato --- */
.contato_container {
    display: grid;
    gap: 3rem;
}

.contato_info {
    display: grid;
    gap: 1.5rem;
}

.contato_item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contato_item i {
    font-size: 1.5rem;
    color: var(--first-color);
    width: 50px;
    height: 50px;
    background: var(--container-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    border: 1px solid var(--glass-border);
}

.contato_item span {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color);
}

.contato_item p {
    font-weight: var(--font-semi-bold);
    color: var(--title-color);
}

.contato_form {
    display: grid;
    gap: 1.5rem;
}

.form_group {
    width: 100%;
}

.input-pro, .textarea-pro {
    width: 100%;
    background: var(--container-color);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: .5rem;
    color: var(--title-color);
    font-family: inherit;
    outline: none;
    transition: .3s;
}

.input-pro:focus, .textarea-pro:focus {
    border-color: var(--first-color);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.full-width {
    width: 100%;
}

/* --- Footer --- */
.footer {
    background:
        linear-gradient(180deg, rgba(8, 17, 31, 0.98), #020617),
        radial-gradient(circle at top left, rgba(14, 165, 233, 0.14), transparent 26rem);
    padding: 4.5rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid var(--premium-border);
}

.footer_container {
    display: grid;
    gap: 3rem;
}

.footer_logo {
    max-width: 380px;
}

.footer_logo img {
    height: 40px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
    transition: .3s;
}

.footer_logo img:hover {
    transform: scale(1.05);
}

.footer_logo span {
    font-family: var(--title-font);
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--title-color);
}

.footer_logo b {
    color: var(--first-color);
}

.footer_logo p {
    font-size: var(--small-font-size);
    margin-top: var(--mb-0-5);
    color: var(--text-color-light);
}

.footer_links h3, .footer_social h3 {
    margin-bottom: var(--mb-1-5);
    font-size: var(--h3-font-size);
}

.footer_links ul li {
    margin-bottom: var(--mb-0-75);
}

.footer_links ul li a:hover {
    color: var(--first-color);
}

.footer_social {
    display: block;
}

.footer_social-list {
    display: flex;
    gap: .8rem;
    flex-wrap: wrap;
}

.footer_social-list a,
.footer_social > a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--text-color-light);
    background: rgba(255,255,255,0.035);
    border: 1px solid var(--premium-border);
    border-radius: .65rem;
    transition: .3s;
}

.footer_social-list a:hover,
.footer_social > a:hover {
    color: #fff;
    border-color: var(--first-color);
    background: rgba(14, 165, 233, 0.14);
    transform: translateY(-3px);
}

/* --- Horários Rodapé --- */
.footer_hours {
    margin-top: 1.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: .75rem;
    border: 1px solid var(--premium-border);
    width: 100%;
}

.footer_hours-title {
    display: block;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 0.4rem;
    font-size: var(--small-font-size);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer_hours-item {
    display: block;
    font-size: var(--smaller-font-size);
    color: var(--text-color);
}


.footer_copy {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: var(--smaller-font-size);
}

/* --- Scroll to Top --- */
.scrollup {
    position: fixed;
    right: auto;
    left: 20px;
    bottom: -20%;
    background-color: var(--first-color);
    opacity: 0.8;
    padding: 0;
    border-radius: .4rem;
    z-index: var(--z-tooltip);
    transition: .4s;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    text-decoration: none;
}

.scrollup:hover {
    background-color: var(--first-color-alt);
    opacity: 1;
}

.scrollup_icon {
    font-size: 1.5rem;
    color: #fff;
}

/* Mostrar o scroll */
.show-scroll {
    bottom: 2rem;
}

/* --- Media Queries --- */
@media screen and (min-width: 768px) {
    .nav_menu {
        width: auto;
    }
    
    .nav_list {
        display: flex;
        gap: 1.45rem;
        align-items: center;
    }
    
    .nav_item {
        margin-bottom: 0;
    }
    
    .nav_toggle {
        display: none;
    }
    
    .hero_container {
        grid-template-columns: 1fr .8fr;
        align-items: center;
    }
    
    .sobre_content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .sobre_mission-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .highlight_content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }

    .presenca_container {
        grid-template-columns: 1.15fr .85fr;
    }
    
    .suporte_container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contato_container {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .footer_container {
        grid-template-columns: 1.25fr .8fr 1fr;
    }
}

@media screen and (min-width: 969px) {
    .nav_link {
        font-size: .92rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 968px) {
    .nav_menu {
        width: 80%;
    }

    .nav_list {
        display: block;
    }

    .nav_item {
        margin-bottom: var(--mb-2);
    }

    .nav_toggle {
        display: block;
    }

    .nav_link {
        font-size: var(--h3-font-size);
    }
}

@media screen and (max-width: 767px) {
    body {
        margin-top: 4rem;
    }

    .section {
        padding: 4rem 0 1.5rem;
    }

    .hero {
        padding: 6.5rem 0 3rem;
    }

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

    .hero_btns .button {
        width: 100%;
    }

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

    .passo_item {
        align-items: flex-start;
    }

    .footer_social-list {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 968px) {
    .nav:not(:has(.nav_toggle)) {
        height: auto;
        min-height: var(--header-height);
        flex-wrap: wrap;
        align-content: center;
        gap: .8rem;
        padding: .85rem 0;
    }

    .nav:not(:has(.nav_toggle)) .nav_menu {
        position: static;
        width: 100%;
        height: auto;
        background: transparent;
        padding: 0;
        box-shadow: none;
        border-left: 0;
        display: block;
        overflow: visible;
    }

    .nav:not(:has(.nav_toggle)) .nav_list {
        display: flex;
        flex-wrap: wrap;
        gap: .55rem;
    }

    .nav:not(:has(.nav_toggle)) .nav_item {
        margin-bottom: 0;
    }

    .nav:not(:has(.nav_toggle)) .nav_link {
        display: inline-flex;
        min-height: 36px;
        align-items: center;
        padding: .45rem .65rem;
        border-radius: .45rem;
        border: 1px solid rgba(148, 163, 184, 0.12);
        background: rgba(255,255,255,0.025);
        font-size: .82rem;
    }
}

/* --- Scroll Reveal Animations --- */
.sr-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.sr-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Subpages Layout Padronizado --- */
.subpage-hero {
    padding: 10rem 0 5rem;
    text-align: center;
}

.bg-blue-light { background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), transparent); }
.bg-green-light { background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent); }
.bg-yellow-light { background: linear-gradient(135deg, rgba(234, 179, 8, 0.05), transparent); }

.expresso_card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.expresso_card .link-btn {
    margin-top: auto;
    padding-top: 1.5rem;
}

.spec-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.spec-box i {
    font-size: 2.5rem;
    color: var(--first-color);
    margin-bottom: 1.5rem;
}

/* --- Garantia --- */
.garantia {
    background: rgba(14, 165, 233, 0.05);
    padding: 3rem 0;
}

.garantia_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    text-align: center;
}

.garantia_item {
    padding: 1.5rem;
}

.garantia_icon {
    font-size: 2.5rem;
    color: var(--first-color);
    margin-bottom: var(--mb-1);
    display: block;
}

.garantia_item h3 {
    margin-bottom: var(--mb-0-5);
    color: var(--title-color);
    font-size: var(--h3-font-size);
}

.garantia_item p {
    font-size: var(--small-font-size);
    color: var(--text-color);
}
