/*
==============================================================================
ATL.7 TECNOLOGIA
GLOBAL DESIGN SYSTEM
Version: 2.0
Production Ready
==============================================================================*/

/*==============================================================================
ROOT
==============================================================================*/

:root{

--primary:#0b5cff;
--primary-dark:#0043c9;
--primary-light:#4f8dff;

--secondary:#07111f;

--black:#040404;
--dark:#0b1220;
--dark-2:#111827;

--white:#ffffff;

--gray-50:#f8fafc;
--gray-100:#f1f5f9;
--gray-200:#e2e8f0;
--gray-300:#cbd5e1;
--gray-400:#94a3b8;
--gray-500:#64748b;
--gray-600:#475569;
--gray-700:#334155;

--border:#e5e7eb;

--text:#0f172a;
--text-light:#64748b;

--success:#22c55e;

--gradient-primary:linear-gradient(135deg,#0b5cff 0%,#00a8ff 100%);
--gradient-dark:linear-gradient(135deg,#040404 0%,#07111f 100%);
--gradient-section:linear-gradient(180deg,#08111d 0%,#040404 100%);

--radius-xs:6px;
--radius-sm:10px;
--radius-md:18px;
--radius-lg:24px;
--radius-xl:34px;
--radius-pill:999px;

--shadow-xs:0 2px 6px rgba(0,0,0,.04);
--shadow-sm:0 6px 18px rgba(0,0,0,.08);
--shadow-md:0 15px 35px rgba(0,0,0,.12);
--shadow-lg:0 25px 60px rgba(0,0,0,.18);
--shadow-xl:0 45px 100px rgba(0,0,0,.28);

--transition:.35s cubic-bezier(.4,0,.2,1);

--container:1320px;

--header-height:84px;

}

/*==============================================================================
RESET
==============================================================================*/

*,
*::before,
*::after{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

font-size:16px;
scroll-behavior:smooth;

}

body{

font-family:

Inter,
Segoe UI,
Roboto,
Helvetica,
Arial,
sans-serif;

background:var(--gray-50);

color:var(--text);

line-height:1.7;

overflow-x:hidden;

-webkit-font-smoothing:antialiased;

text-rendering:optimizeLegibility;

}

body.menu-open{

overflow:hidden;

}

img{

display:block;
max-width:100%;
height:auto;

}

svg{

display:block;

}

button{

font:inherit;
background:none;
border:none;
cursor:pointer;

}

input,
textarea,
select{

font:inherit;
outline:none;

}

textarea{

resize:vertical;

}

a{

text-decoration:none;

color:inherit;

transition:var(--transition);

}

ul{

list-style:none;

}

::selection{

background:var(--primary);

color:white;

}

/*==============================================================================
TYPOGRAPHY
==============================================================================*/

h1,
h2,
h3,
h4,
h5{

font-weight:700;

line-height:1.1;

letter-spacing:-.02em;

color:inherit;

}

h1{

font-size:clamp(3rem,6vw,5.6rem);

}

h2{

font-size:clamp(2rem,4vw,3.5rem);

}

h3{

font-size:1.45rem;

}

p{

font-size:1.04rem;

color:var(--text-light);

}

strong{

font-weight:700;

}

/*==============================================================================
LAYOUT
==============================================================================*/

.container{

width:100%;

max-width:var(--container);

margin:auto;

padding-left:32px;
padding-right:32px;

}

.section{

position:relative;

padding:110px 0;

}

.section-head{

margin-bottom:60px;

}

.section-head.center{

text-align:center;

}

.split{

display:grid;

grid-template-columns:1fr 1fr;

gap:80px;

align-items:center;

}

.align-center{

align-items:center;

}

.center{

text-align:center;

}

/*==============================================================================
SECTION TAG
==============================================================================*/

.section-tag,
.eyebrow{

display:inline-flex;

align-items:center;

padding:9px 18px;

border-radius:999px;

font-size:.78rem;

font-weight:700;

letter-spacing:.18em;

text-transform:uppercase;

margin-bottom:22px;

background:rgba(11,92,255,.08);

color:var(--primary);

border:1px solid rgba(11,92,255,.08);

}

/*==============================================================================
HEADER
==============================================================================*/

.site-header{

position:fixed;

top:0;
left:0;

width:100%;

height:var(--header-height);

z-index:1000;

background:rgba(4,4,4,.82);

backdrop-filter:blur(14px);

border-bottom:1px solid rgba(255,255,255,.05);

transition:var(--transition);

}

.header-wrapper{

height:100%;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

flex-direction:column;

color:white;

font-weight:800;

}

.logo span{

font-size:1.8rem;

letter-spacing:.04em;

}

.logo span span{

color:var(--primary);

}

.logo small{

font-size:.72rem;

letter-spacing:.22em;

text-transform:uppercase;

opacity:.75;

margin-top:3px;

}

.main-nav{

display:flex;

align-items:center;

gap:40px;

}

.main-nav a{

position:relative;

font-size:.95rem;

color:white;

}

.main-nav a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;

height:2px;

background:var(--primary);

transition:var(--transition);

}

.main-nav a:hover::after,
.main-nav a.active::after{

width:100%;

}

.menu-toggle{

display:none;

flex-direction:column;

gap:5px;

}

.menu-toggle span{

width:28px;
height:2px;

background:white;

}

/*==============================================================================
HERO
==============================================================================*/

.hero{

position:relative;

min-height:100vh;

display:flex;

align-items:center;

padding-top:var(--header-height);

background:#040404;

overflow:hidden;

}

.hero-bg{

position:absolute;

inset:0;

background:

radial-gradient(circle at 15% 15%,rgba(11,92,255,.18),transparent 30%),

radial-gradient(circle at 85% 25%,rgba(0,168,255,.14),transparent 35%),

linear-gradient(180deg,#040404,#08121f,#040404);

}

.hero::before{

content:"";

position:absolute;

width:650px;
height:650px;

right:-250px;
top:-220px;

border-radius:50%;

background:rgba(11,92,255,.10);

filter:blur(25px);

animation:float 10s ease-in-out infinite;

}

.hero-content{

position:relative;

z-index:2;

max-width:760px;

}

.hero h1{

color:white;

margin-bottom:28px;

}

.hero p{

color:#d5dce6;

font-size:1.15rem;

max-width:650px;

margin-bottom:42px;

}

.hero-actions{

display:flex;

gap:18px;

flex-wrap:wrap;

}

/*==============================================================================
BUTTONS
==============================================================================*/

.btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:17px 32px;

font-weight:700;

border-radius:999px;

transition:var(--transition);

position:relative;

overflow:hidden;

}

.btn-primary{

background:var(--gradient-primary);

color:white;

box-shadow:var(--shadow-md);

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:var(--shadow-lg);

}

.btn-outline{

border:1px solid rgba(255,255,255,.18);

color:white;

}

.btn-outline:hover{

background:white;

color:black;

}

.btn-light{

background:white;

color:#000;

box-shadow:var(--shadow-md);

}

.btn-light:hover{

transform:translateY(-4px);

}

.text-link{

display:inline-flex;

margin-top:20px;

font-weight:700;

color:var(--primary);

}

.text-link:hover{

transform:translateX(5px);

}

/*==============================================================================
LIGHT SECTIONS
==============================================================================*/

.section{

background:white;

}

.section:nth-of-type(even){

background:var(--gray-50);

}

/*==============================================================================
DARK SECTIONS
==============================================================================*/

.dark{

background:var(--gradient-section);

color:white;

}

.dark p{

color:#cdd4df;

}

.dark-gradient{

background:

linear-gradient(

135deg,

#040404,

#081624,

#040404

);

color:white;

}

.dark-gradient p{

color:#d2d8e2;

}

/*==============================================================================
CARDS
==============================================================================*/

.cards-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

}

.card{

background:white;

border:1px solid var(--border);

border-radius:22px;

padding:34px;

box-shadow:var(--shadow-sm);

transition:var(--transition);

height:100%;

}

.card:hover{

transform:translateY(-10px);

box-shadow:var(--shadow-lg);

}

.card h3{

margin-bottom:16px;

}

.dark .card,
.dark-gradient .card{

background:#111827;

border-color:#1f2937;

}

.dark .card p,
.dark-gradient .card p{

color:#d3d7df;

}

/*==============================================================================
STEPS
==============================================================================*/

.steps{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:24px;

}

.step{

background:white;

border-radius:20px;

padding:36px;

box-shadow:var(--shadow-sm);

transition:var(--transition);

height:100%;

}

.step:hover{

transform:translateY(-8px);

box-shadow:var(--shadow-md);

}

.step span{

display:flex;

align-items:center;

justify-content:center;

width:58px;
height:58px;

border-radius:50%;

background:var(--gradient-primary);

color:white;

font-weight:700;

margin-bottom:22px;

}

/*==============================================================================
CASE STRIP
==============================================================================*/

.case-strip{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:24px;

}

.case-strip div{

background:white;

padding:34px;

border-radius:20px;

box-shadow:var(--shadow-sm);

transition:var(--transition);

}

.case-strip div:hover{

transform:translateY(-8px);

}

/*==============================================================================
DASHBOARD MOCKUP
==============================================================================*/

.dashboard-mockup{

background:#0d1117;

border-radius:24px;

padding:24px;

box-shadow:var(--shadow-xl);

}

.mockup-top{

height:18px;

background:#1f2937;

border-radius:999px;

margin-bottom:20px;

}

.mockup-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:14px;

}

.mockup-grid span{

height:90px;

border-radius:12px;

background:linear-gradient(

135deg,

#14305c,

#0b5cff

);

}

/*==============================================================================
FORMS
==============================================================================*/

form{

width:100%;

}

form input,
form textarea,
form select{

width:100%;

padding:18px 20px;

background:white;

border:1px solid var(--border);

border-radius:14px;

transition:var(--transition);

}

form input:focus,
form textarea:focus,
form select:focus{

border-color:var(--primary);

box-shadow:0 0 0 4px rgba(11,92,255,.10);

}

/*==============================================================================
CTA
==============================================================================*/

.cta{

padding:90px 0;

background:#040404;

}

.cta-box{

background:linear-gradient(

135deg,

#0b5cff,

#05111f

);

padding:70px;

border-radius:28px;

text-align:center;

color:white;

box-shadow:var(--shadow-xl);

}

.cta-box span{

display:block;

font-size:.78rem;

letter-spacing:.20em;

text-transform:uppercase;

opacity:.85;

margin-bottom:18px;

}

.cta-box h2{

margin-bottom:34px;

}

/*==============================================================================
FOOTER
==============================================================================*/

.site-footer{

background:#040404;

color:white;

padding-top:80px;

}

.footer-grid{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

padding-bottom:60px;

}

.footer-grid h4{

margin-bottom:18px;

}

.footer-grid a{

display:block;

margin-bottom:12px;

color:#cbd5e1;

}

.footer-grid a:hover{

color:white;

}

.footer-logo{

margin-bottom:20px;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.06);

padding:24px;

text-align:center;

}

.footer-bottom p{

font-size:.92rem;

color:#94a3b8;

}

/*==============================================================================
UTILITY
==============================================================================*/

.shadow{

box-shadow:var(--shadow-lg);

}

.radius{

border-radius:var(--radius-lg);

}

.mt-0{margin-top:0;}
.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}

.mb-0{margin-bottom:0;}
.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}

/*==============================================================================
ANIMATIONS
==============================================================================*/

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(30px);

}

100%{

transform:translateY(0);

}

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);

}

to{

opacity:1;

transform:translateY(0);

}

}

.hero-content,
.section-head,
.card,
.step,
.case-strip div,
.dashboard-mockup,
.cta-box{

animation:fadeUp .9s ease both;

}

/*==============================================================================
RESPONSIVE
==============================================================================*/

@media(max-width:1200px){

.cards-grid{

grid-template-columns:repeat(2,1fr);

}

.steps{

grid-template-columns:repeat(2,1fr);

}

.case-strip{

grid-template-columns:1fr;

}

}

@media(max-width:992px){

.split{

grid-template-columns:1fr;

gap:50px;

}

.footer-grid{

grid-template-columns:1fr 1fr;

}

.main-nav{

display:none;

position:absolute;

top:100%;
left:0;

width:100%;

padding:30px;

background:#040404;

flex-direction:column;

align-items:flex-start;

gap:24px;

border-top:1px solid rgba(255,255,255,.05);

}

.main-nav.open{

display:flex;

}

.menu-toggle{

display:flex;

}

}

@media(max-width:768px){

.container{

padding-left:22px;
padding-right:22px;

}

.section{

padding:80px 0;

}

.cards-grid,
.steps{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.hero-actions{

flex-direction:column;

align-items:flex-start;

}

.btn{

width:100%;

}

.cta-box{

padding:45px 28px;

}

.mockup-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:480px){

h1{

font-size:2.55rem;

}

h2{

font-size:2rem;

}

.logo span{

font-size:1.5rem;

}

.hero p{

font-size:1rem;

}

.section-tag,
.eyebrow{

font-size:.68rem;

}

}