/* 
  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: #0f172a; /* Deep Slate */
    --container-color: #1e293b; /* Surface */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    /* 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-color: var(--body-color);
    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-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: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    transition: .4s;
    backdrop-filter: blur(0px);
}

.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 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_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(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* --- Hero --- */
.hero {
    position: relative;
    padding: 8rem 0 4rem;
}

.subpage-hero {
    padding: 9rem 0 4rem;
    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); }

.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);
}

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

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

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

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    background-color: var(--first-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: .5rem;
    font-weight: var(--font-semi-bold);
    transition: .3s;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.button:hover {
    background-color: var(--first-color-alt);
    transform: translateY(-3px);
}

.button-ghost {
    background-color: transparent;
    border: 2px solid var(--first-color);
    color: var(--first-color);
}

.button-ghost:hover {
    background-color: var(--first-color);
    color: white;
}

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

.hero_blob {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, var(--first-color), #8b5cf6);
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    filter: blur(40px);
    opacity: 0.4;
    animation: flow 8s infinite ease-in-out;
}

@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: var(--container-color);
    padding: 1.5rem;
    border-radius: .75rem;
    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: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-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: 0 10px 30px rgba(0,0,0,0.3);
}

.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: var(--container-color);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-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: var(--container-color);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-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: var(--container-color);
    padding: 2.5rem;
    border-radius: 2rem;
    border: 1px solid var(--glass-border);
}

.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;
}

.social_card {
    background: var(--container-color);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--glass-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-color: #020617;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

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

.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);
}

.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: flex;
    gap: 1.5rem;
}

.footer_social a {
    font-size: 1.5rem;
    color: var(--text-color);
    transition: .3s;
}

.footer_social a:hover {
    color: var(--first-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: 3rem;
    }
    
    .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;
    }
    
    .suporte_container {
        grid-template-columns: 1fr 1fr;
    }
    
    .contato_container {
        grid-template-columns: 1fr 1.5fr;
    }
    
    .footer_container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- 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;
}
