/* ==========================================================================
   VARIABLES & RESET
   ========================================================================== */
:root {
    --bg-main: #020412;
    --bg-section: #05081C;
    --bg-footer: #000040;
    --bg-input: #0A0F1D;

    --color-yellow: #F0BD04;
    --color-white: #FFFFFF;
    --color-slate: #94A3B8;
    --color-slate-light: #CBD5E1;
    --color-gray: #475569;

    --font-inter: 'Inter', sans-serif;
    --font-space: 'Space Grotesk', sans-serif;
    --font-mono: 'Liberation Mono', monospace;
    --font-roboto: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

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

body {
    background-color: var(--bg-main);
    color: var(--color-white);
    font-family: var(--font-inter);
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   Efeitos Globais (Figma Blurs & Gradients)
   ========================================================================== */
.global-gradient.radial {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: radial-gradient(62.69% 82.89% at 50% 50%, rgba(30, 58, 138, 0.4) 0%, #020412 100%);
    z-index: -2;
}

.global-gradient.linear {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03) 2%, rgba(255, 255, 255, 0) 2%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 2%, rgba(255, 255, 255, 0) 2%);
    opacity: 0.3;
    z-index: -2;
}

.blur-orb.right {
    position: absolute;
    width: 596px;
    height: 500px;
    right: 173px;
    top: 25%;
    background: rgba(240, 189, 4, 0.15);
    filter: blur(60px);
    border-radius: 9999px;
    z-index: -1;
}

.blur-orb.bottom-left {
    position: absolute;
    width: 600px;
    height: 600px;
    left: 0;
    top: 40%;
    background: rgba(59, 130, 246, 0.25);
    filter: blur(50px);
    border-radius: 9999px;
    z-index: -1;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 69px;
    background: rgba(0, 0, 64, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    z-index: 100;
    display: flex;
    justify-content: center;
}

.header-container {
    width: 100%;
    max-width: 1280px;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-container {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    width: fit-content;
}

.logo-link img {
    height: 50px;
    width: auto;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-slate-light);
    letter-spacing: 0.35px;
    transition: color 0.3s ease;
}

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

.header-actions {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.btn-outline {
    padding: 10px 24px;
    border: 1px solid rgba(240, 189, 4, 0.5);
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--color-yellow);
    background-color: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--color-yellow);
    color: #000040;
}

.lang-en {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 16px;
    color: var(--color-slate-light);
    transition: color 0.3s ease;
}

.lang-en:hover {
    color: var(--color-white);
}

.flag-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    padding: 192px 0 128px 0;
    min-height: 807px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    width: 100%;
    max-width: 1280px;
}

.hero-content {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 32px;
    position: relative;
}

.hero-light-effect {
    position: absolute;
    width: 650px;
    height: 500px;
    left: -100px;
    top: -60px;
    background: rgba(30, 58, 138, 0.3);
    filter: blur(120px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 64px;
    line-height: 72px;
    text-align: left;
    width: 100%;
    margin: 0;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 50%, #94A3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content h1 .highlight-especialistas {
    background: linear-gradient(90deg, #F0BD04 0%, #F0BD04 55%, #c1b060 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle-box {
    border-left: 2px solid rgba(240, 189, 4, 0.5);
    padding-left: 24px;
    margin-top: 8px;
    text-align: left;
}

.hero-subtitle-box p {
    font-size: 20px;
    line-height: 28px;
    color: var(--color-slate);
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 16px;
    justify-content: flex-start;
}

.btn-primary {
    padding: 14px 28px;
    background: linear-gradient(90deg, #F0BD04 0%, #FFD700 100%);
    box-shadow: 0px 0px 15px rgba(240, 189, 4, 0.2);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000;
    text-align: center;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 5px 20px rgba(240, 189, 4, 0.4);
}

.btn-glass {
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    transition: background 0.3s, transform 0.2s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-yellow);
    font-size: 16px;
}

.hero-graphics {
    flex: 0 0 40%;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: flex-end;
}

.graphic-box {
    position: absolute;
    backdrop-filter: blur(6px);
    border-radius: 12px;
}

.blue-box {
    width: 300px;
    height: 300px;
    right: 0;
    top: 5%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, #000000 100%);
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0px 0px 40px rgba(10, 36, 99, 0.5), inset 0px 0px 1px 1px rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.yellow-box {
    width: 320px;
    height: 220px;
    right: 60px;
    top: 42%;
    background: linear-gradient(135deg, rgba(240, 189, 4, 0.25) 0%, #000000 100%);
    border: 1px solid rgba(240, 189, 4, 0.5);
    box-shadow: 0px 0px 30px rgba(240, 189, 4, 0.4);
    z-index: 2;
}

.hero-graphics-light {
    position: absolute;
    width: 600px;
    height: 400px;
    right: -100px;
    top: 15%;
    background: rgba(156, 125, 12, 0.5);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.icon-placeholder {
    font-size: 64px;
    opacity: 0.8;
}

.icon-placeholder.blue {
    color: #60A5FA;
    filter: drop-shadow(0px 0px 10px rgba(96, 165, 250, 0.5));
}

.icon-placeholder.yellow-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-yellow);
    opacity: 0.9;
    filter: drop-shadow(0px 0px 10px rgba(240, 189, 4, 0.5));
}

.dots-top {
    position: absolute;
    left: 17px;
    top: 17px;
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.yellow {
    background: var(--color-yellow);
    box-shadow: 0 0 10px rgba(240, 189, 4, 0.5);
}

.dot.gray {
    background: #334155;
}

.code-text {
    position: absolute;
    right: 17px;
    bottom: 17px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-yellow);
}

/* ==========================================================================
   Agilidade Section
   ========================================================================== */
.agilidade {
    background: var(--bg-section);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 96px 0;
}

.agilidade-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.agilidade-content {
    flex: 1;
    max-width: 576px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.agilidade-content h2 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
}

.agilidade-content p {
    font-size: 17.4px;
    line-height: 28px;
    color: var(--color-slate);
    font-weight: 300;
}

.agilidade-content h2 .highlight-yellow {
    color: var(--color-yellow);
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.check-item:hover {
    transform: translateX(10px);
    border-color: rgba(240, 189, 4, 0.4);
}

.check-icon {
    width: 45px;
    height: 45px;
    background: rgba(240, 189, 4, 0.15);
    border: 1px solid rgba(240, 189, 4, 0.3);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-yellow);
    font-size: 20px;
    flex-shrink: 0;
}

.check-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.check-text p {
    font-size: 14px;
    line-height: 20px;
    color: var(--color-slate);
}

.agilidade-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-progress {
    width: 320px;
    height: 320px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.circular-progress .blur-bg {
    position: absolute;
    inset: 0;
    background: rgba(240, 189, 4, 0.1);
    filter: blur(20px);
    border-radius: 50%;
}

.circle-border {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
}

.circle-border.outline {
    border: 8px solid rgba(255, 255, 255, 0.05);
}

.circle-border.highlight {
    border: 8px solid var(--color-yellow);
    border-radius: 50%;
    box-shadow: 0px 0px 15px rgba(240, 189, 4, 0.5);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.circular-progress:hover {
    transform: scale(1.05);
}

.circular-progress:hover .circle-border.highlight {
    box-shadow: 0px 0px 40px rgba(240, 189, 4, 1), 0px 0px 10px rgba(255, 255, 255, 0.5);
    border-color: #fff486;
}

.center-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.percentage {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: -3.6px;
    line-height: 1;
    filter: drop-shadow(0px 4px 3px rgba(0, 0, 0, 0.1));
}

.label-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 4.2px;
    text-transform: uppercase;
    margin-top: 8px;
}

.label-subtitle {
    font-family: var(--font-mono);
    font-size: 12px;
    color: #64748B;
    margin-top: 16px;
}

/* ==========================================================================
   Expertise Section (Cards)
   ========================================================================== */
.expertise {
    padding: 96px 0;
    position: relative;
    background-color: #020412 !important;
    z-index: 5;
    overflow: hidden;
}

.expertise::before,
.expertise::after,
.expertise .light-glow {
    display: none !important;
    background: none !important;
    content: none !important;
}

.expertise .container {
    position: relative;
    z-index: 6;
}

.expertise-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(240, 189, 4, 0) 0%, rgba(240, 189, 4, 0.3) 50%, rgba(240, 189, 4, 0) 100%);
    z-index: 7;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tag-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 19px;
    color: var(--color-slate);
    max-width: 672px;
}

.cards-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.glass-card {
    width: 389px;
    height: 368px;
    background: linear-gradient(143.48deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: var(--color-yellow);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.card-bg-icon {
    position: absolute;
    right: 0px;
    top: 0px;
    pointer-events: none;
    z-index: 0;
}

.card-bg-icon .material-icons {
    font-size: 140px;
    color: #232531;
    opacity: 0.7;
}

.card-icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1F2937 0%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 32px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.card-icon-box .material-icons {
    font-size: 32px;
    color: var(--color-yellow);
}

.glass-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    z-index: 1;
}

.glass-card .divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 16px;
}

.glass-card p {
    font-size: 15.9px;
    line-height: 23px;
    color: var(--color-slate);
    z-index: 1;
    flex-grow: 1;
}

.tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    z-index: 1;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-slate);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.tag:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    cursor: default;
}

.material-icons {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   Base Técnica
   ========================================================================== */
.base-tecnica {
    padding: 96px 0;
    background: rgba(255, 255, 255, 0.02);
}

.base-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.base-container .tag-title {
    letter-spacing: 5.6px;
    margin-bottom: 0;
}

.base-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    align-items: center;
    margin-top: 32px;
}

.tech-item {
    font-family: var(--font-space);
    font-weight: 700;
    font-size: 24px;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-tech {
    font-size: 28px;
}

.base-tecnica .tag-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: 2px;
    margin-bottom: 4px;
    display: block;
}

.tech-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #9CA3AF;
    transition: all 0.3s ease;
    cursor: pointer;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.tech-item:hover {
    color: #FFFFFF;
    transform: translateY(-3px);
    text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.3);
}

.tech-item:hover i {
    color: var(--color-yellow);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* ==========================================================================
   Contato (Form)
   ========================================================================== */
.contato {
    padding: 96px 0;
    background: linear-gradient(180deg, #020412 0%, #01020A 100%);
}

.form-container {
    max-width: 896px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.form-header {
    text-align: center;
}

.form-header h2 {
    font-size: 48px;
    margin-bottom: 24px;
}

.form-header p {
    font-size: 20px;
    color: var(--color-slate);
}

.form-box {
    width: 100%;
    max-width: 848px;
    background: linear-gradient(133.7deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-row {
    display: flex;
    gap: 32px;
    margin-bottom: 24px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full {
    width: 100%;
    margin-bottom: 24px;
}

.input-group label {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-yellow);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 18px 16px;
    color: var(--color-white);
    font-size: 16px;
    font-family: var(--font-inter);
    transition: all 0.3s;
}

.input-group textarea {
    height: 130px;
    resize: none;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(224, 224, 224, 0.5);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--color-gray);
}

.btn-submit {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(90deg, #F0BD04 0%, #FFD700 100%);
    box-shadow: 0px 0px 20px rgba(240, 189, 4, 0.3);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #000;
    font-family: var(--font-inter);
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

/* =========================================
   FOOTER
========================================= */
#footer {
    background: rgba(0, 0, 64, 0.7);
    color: #ffffff;
    padding-top: 60px;
}

#footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#footer a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s;
}

#footer a:hover {
    color: #FFFFFF;
}

.footer-wrapper-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 40px;
    flex-wrap: wrap;
}

.logo-phone {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-phone img {
    width: 80px;
    height: auto;
    border-radius: 0;
    margin-bottom: 25px;
    display: block;
}

.phone-email-block p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 8px;
}

.footer-content {
    flex: 2;
    text-align: center;
}

.adress {
    display: flex;
    justify-content: center;
    gap: 30px;
    text-align: left;
}

.adress p {
    font-size: 14px;
    line-height: 24px;
    color: #E0E0E0;
}

.socials-medias {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.btn-footer-link {
    display: inline-block;
    padding: 12px 30px;
    background: #F0BD04;
    border: 1px solid #FFFFFF;
    color: #FFFFFF !important;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-footer-link:hover {
    box-shadow: 0 0 20px rgba(240, 189, 4, 0.8);
}

.footer-icons-group {
    display: flex;
    gap: 15px;
}

.footer-icons-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: none;
    display: inline-block;
    padding: 5px;
}

.footer-icons-group a i {
    transition: all 0.3s ease;
}

.footer-icons-group a:hover i {
    color: #FFFFFF;
    transform: translateY(-5px);
}

.footer-icons-group a:hover {
    color: #FFFFFF;
}

.fim {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    text-align: center;
    clear: both;
}

.fim p {
    font-size: 14px;
    color: #FFFFFF;
    margin: 0;
}

.h2-spacer {
    display: block;
    height: 7px;
}

/* =========================================
   POPUP DE SUCESSO
   ========================================= */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.popup-overlay.active .popup-content {
    transform: translateY(0) scale(1);
}

.popup-icon i {
    font-size: 60px;
    color: #10B981;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 28px;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
}

.popup-text {
    font-size: 16px;
    color: #4B5563;
    margin-bottom: 30px;
}

.btn-popup-close {
    background: #111827;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
}

.btn-popup-close:hover {
    background: #374151;
}

/* =========================================
   RESPONSIVE 
========================================= */


@media (max-width: 1024px) {
    .header-container {
        gap: 20px;
    }

    .nav {
        display: none;
    }

    .hero {
        padding: 140px 0 80px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-content {
        align-items: center;
    }

    .hero-content h1 {
        text-align: center;
        font-size: 52px;
        line-height: 60px;
    }

    .hero-subtitle-box {
        border-left: none;
        border-top: 2px solid rgba(240, 189, 4, 0.5);
        padding-left: 0;
        padding-top: 20px;
        text-align: center;
        max-width: 600px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-graphics {
        height: 400px;
        justify-content: center;
        width: 100%;
    }

    .blue-box {
        right: auto;
        left: 25%;
    }

    .yellow-box {
        right: 25%;
    }

    .agilidade-container {
        flex-direction: column;
        text-align: center;
    }

    .agilidade-content {
        align-items: center;
    }

    .checklist {
        text-align: left;
    }

    .footer-wrapper-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .logo-phone {
        align-items: center;
    }

    .adress {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

@media (max-width: 768px) {

    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .header-actions .lang-en {
        display: flex;
    }

    .header-actions .btn-outline {
        display: none;
    }

    .hero {
        padding: 120px 0 60px 0;
        min-height: auto;
    }

    .hero-subtitle-box {
        border-top: none;
        border-left: 2px solid rgba(240, 189, 4, 0.5);
        padding-top: 0;
        padding-left: 16px;
        text-align: left;
    }

    .hero-subtitle-box p br {
        display: none;
    }

    .hero-content h1 {
        font-size: 38px;
        line-height: 46px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }

    .hero-graphics {
        display: none;
    }

    .blur-orb {
        display: none;
    }

    .btn-primary,
    .btn-glass {
        width: 100%;
    }


    .icon-placeholder {
        font-size: 40px;
    }

    .agilidade,
    .expertise,
    .base-tecnica,
    .contato {
        padding: 60px 0;
    }

    .agilidade-content h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .section-header h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .glass-card {
        width: 100%;
        max-width: 100%;
        height: auto;
        padding: 24px;
    }

    .tech-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
        width: 100%;
        justify-items: center;
    }

    .form-header h2 {
        font-size: 32px;
    }

    .form-box {
        padding: 32px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 0;
    }

    .input-group.full {
        margin-top: 24px;
    }

    .tag-title {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .glass-card p {
        font-size: 14px;
        line-height: 22px;
    }

    .base-subtitle {
        text-align: center;
        line-height: 20px;
        font-size: 16px;
    }

    .form-header p {
        font-size: 19.9px;
        line-height: 24px;
    }

    .adress {
        align-items: flex-start;
        width: fit-content;
        margin: 0 auto;
    }

    .adress p {
        text-align: left;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .hero-subtitle-box p {
        font-size: 16px;
    }

    .hero-graphics {
        height: 320px;
    }

    .blue-box {
        width: 160px;
        height: 160px;
        left: 5%;
    }

    .yellow-box {
        width: 180px;
        height: 130px;
        right: 5%;
        top: 40%;
    }

    .circular-progress {
        width: 260px;
        height: 260px;
    }

    .percentage {
        font-size: 56px;
    }

    .check-item {
        padding: 16px;
        gap: 12px;
    }

    .check-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .tech-item {
        font-size: 20px;
    }

    .popup-content {
        padding: 30px 20px;
    }
}