/* =========================
   RESET
========================= */

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:#f8fafc;
color:#1e293b;
line-height:1.6;
}

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

a{
text-decoration:none;
}

/* =========================
   CONTAINER
========================= */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =========================
   HEADER
========================= */

header{
background:rgba(255,255,255,.95);
backdrop-filter:blur(10px);
box-shadow:0 2px 20px rgba(0,0,0,.08);
position:sticky;
top:0;
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-family:'Orbitron',sans-serif;
font-size:30px;
font-weight:700;
letter-spacing:2px;
color:#0f172a;
}

.logo span{
color:#334155;
}
h1,
h2,
h3,
.section-title h2{
font-family:'Orbitron',sans-serif;
letter-spacing:1px;
}

nav{
display:flex;
gap:25px;
}

nav a{
color:#334155;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:#0f172a;
}

/* =========================
   HERO
========================= */

.hero{
padding:120px 0;
background:
linear-gradient(
135deg,
#020617,
#0f172a,
#1e293b
);
color:white;
}

.hero h1{
font-size:56px;
font-weight:800;
margin-bottom:20px;
}

.hero p{
font-size:20px;
max-width:700px;
margin:auto;
margin-bottom:35px;
opacity:.95;
}

.btn-primary{
display:inline-block;
padding:14px 28px;
background:#fff;
color:#0f172a;
font-weight:700;
border-radius:12px;
transition:.3s;
}

.btn-primary:hover{
transform:translateY(-3px);
}

.btn-secondary{
display:inline-block;
padding:14px 28px;
border:2px solid white;
color:white;
margin-left:15px;
border-radius:12px;
}

.hero{
background:
linear-gradient(
135deg,
#020617,
#0f172a,
#1e293b
);

padding:120px 0;

color:white;
}

.hero-tag{
display:inline-block;

color:#b4d600;

font-weight:700;

letter-spacing:2px;

margin-bottom:20px;
}

.hero-content h1{
font-size:72px;
line-height:1.05;
margin-bottom:25px;
}

.hero-description{
font-size:20px;
max-width:650px;
color:#cbd5e1;
margin-bottom:40px;
}

.btn-outline{
border:2px solid #b4d600;
color:#b4d600;
padding:14px 28px;
border-radius:12px;
}

.btn-outline:hover{
background:#b4d600;
color:#020617;
}


/* =========================
   PAGE HERO
========================= */

.page-hero{
padding:80px 0;
background:
linear-gradient(
135deg,
#020617,
#0f172a
);
color:white;
text-align:center;
}

.page-hero h1{
font-size:46px;
margin-bottom:15px;
}

.page-hero p{
font-size:18px;
opacity:.9;
}

/* =========================
   SERVICES
========================= */

.services{
padding:90px 0;
}

.services h2{
text-align:center;
margin-bottom:50px;
font-size:38px;
}

.service-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(280px,1fr));
gap:25px;
}

.card{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
}

.card h3{
margin-bottom:15px;
font-size:22px;
}

/* =========================
   SERVICE DETAIL
========================= */

.services-page{
padding:80px 0;
}

.service-detail{
background:white;
padding:30px;
margin-bottom:25px;
border-radius:18px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.service-detail h2{
margin-bottom:10px;
color:#0f172a;
}

/* =========================
   FORMS
========================= */

form{
background:white;
padding:30px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

form input,
form textarea,
form select{
width:100%;
padding:14px;
margin-bottom:15px;
border:1px solid #cbd5e1;
border-radius:10px;
font-size:15px;
}

form textarea{
resize:vertical;
}

form button{
border:none;
cursor:pointer;
}

/* =========================
   CONTACT
========================= */

.contact-section,
.quote-section{
padding:80px 0;
}

/* =========================
   TEAM
========================= */

.team{
padding:90px 0;
}

.team h2{
text-align:center;
margin-bottom:50px;
}

.team-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.team-card{
background:white;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.team-card img{
width:120px;
height:120px;
object-fit:cover;
border-radius:50%;
margin:auto;
margin-bottom:20px;
}

/* =========================
   FAQ
========================= */

.faq-section{
padding:80px 0;
}

.faq-item{
background:white;
padding:25px;
margin-bottom:15px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.05);
}

/* =========================
   SUCCESS
========================= */

.success-page{
padding:120px 0;
text-align:center;
}

.success-page h1{
font-size:50px;
margin-bottom:20px;
color:#16a34a;
}

/* =========================
   LEGAL
========================= */

.legal-page{
padding:80px 0;
}

.legal-page h1{
margin-bottom:30px;
}

.legal-page p{
margin-bottom:15px;
}

/* =========================
   FOOTER
========================= */

footer{
background:#0f172a;
color:white;
padding:60px 0;
margin-top:80px;
}

.footer{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.footer h3,
.footer h4{
margin-bottom:15px;
}

.footer a{
display:block;
color:#cbd5e1;
margin-bottom:10px;
}

.footer a:hover{
color:white;
}

/* =========================
   COOKIE BANNER
========================= */

#cookie-banner{
position:fixed;
bottom:20px;
left:20px;
right:20px;
background:white;
padding:20px;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.15);
z-index:9999;
}

.cookie-content{
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.cookie-buttons{
display:flex;
gap:10px;
}

.cookie-buttons button{
padding:10px 18px;
border:none;
border-radius:8px;
cursor:pointer;
}

#acceptCookies{
background:#0f172a;
color:white;
}

#rejectCookies{
background:#e2e8f0;
}

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

@media(max-width:768px){

.nav{
flex-direction:column;
gap:15px;
}

nav{
flex-wrap:wrap;
justify-content:center;
}

.hero h1{
font-size:38px;
}

.page-hero h1{
font-size:34px;
}

.cookie-content{
flex-direction:column;
align-items:flex-start;
}

.btn-secondary{
margin-left:0;
margin-top:10px;
}

}
/* =========================
   HOMEPAGE MODERNA
========================= */

.hero{
    padding:120px 0;
    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );
    color:white;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:60px;
    align-items:center;
}

.hero-content{
    text-align:left;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

.hero-content p{
    font-size:20px;
    max-width:600px;
    margin-bottom:35px;
    opacity:.95;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.hero-image{
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:500px;
    border-radius:24px;
    box-shadow:
    0 25px 60px rgba(0,0,0,.25);
}

.stats{
    padding:90px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.stat-card{
    background:white;
    padding:40px 30px;
    text-align:center;
    border-radius:20px;
    box-shadow:
    0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-5px);
}

.stat-card h3{
    font-size:42px;
    color:#0f172a;
    margin-bottom:10px;
}

.stat-card p{
    color:#64748b;
    font-weight:600;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    margin-bottom:10px;
}

.section-title p{
    color:#64748b;
}

.service-icon{
    font-size:42px;
    margin-bottom:15px;
}

.cta{
    padding:100px 0;
    text-align:center;
    background:#0f172a;
    color:white;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    max-width:700px;
    margin:0 auto 30px;
    opacity:.9;
}

@media(max-width:768px){

    .hero-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

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

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

    .hero-content h1{
        font-size:42px;
    }

    .hero-image{
        margin-top:30px;
    }

}

/* =========================
   CHI SIAMO
========================= */

.about-section{
    padding:100px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:24px;
    box-shadow:
    0 15px 40px rgba(0,0,0,.12);
}

.about-content h2{
    margin-bottom:20px;
    font-size:38px;
}

.about-content p{
    color:#475569;
    line-height:1.8;
}

.mission-section{
    padding:80px 0;
    background:white;
}

.mission-section h2,
.values-section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:38px;
}

.mission-box,
.values-box{
    max-width:900px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
    line-height:1.8;
}

.values-section{
    padding:80px 0;
}

@media(max-width:768px){

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

    .about-content{
        text-align:center;
    }

}

.about-text,
.mission-box,
.values-box{
    line-height:1.8;
}

.about-text h2,
.about-text h3,
.mission-box h2,
.mission-box h3,
.values-box h2,
.values-box h3{
    margin-bottom:15px;
    margin-top:25px;
}

.about-text p,
.mission-box p,
.values-box p{
    margin-bottom:15px;
}

.about-text ul,
.mission-box ul,
.values-box ul{
    padding-left:25px;
    margin-bottom:15px;
}

.about-text li,
.mission-box li,
.values-box li{
    margin-bottom:8px;
}

.about-text strong,
.mission-box strong,
.values-box strong{
    color:#0f172a;
}

.hero-description{
    font-size:20px;
    max-width:650px;
    margin-bottom:35px;
}

.hero-description p{
    margin-bottom:15px;
}

.hero-description strong{
    color:#fff;
}

.cta-text{
    max-width:700px;
    margin:0 auto 30px;
    line-height:1.8;
}

.cta-text p{
    margin-bottom:15px;
}

.cta-text strong{
    color:white;
}

.service-content{
    line-height:1.8;
}

.service-content p{
    margin-bottom:15px;
}

.service-content h2,
.service-content h3,
.service-content h4{
    margin-top:25px;
    margin-bottom:15px;
}

.service-content ul,
.service-content ol{
    padding-left:25px;
    margin-bottom:15px;
}

.service-content li{
    margin-bottom:8px;
}

.service-content strong{
    color:#0f172a;
}

.service-content a{
    color:#0f172a;
    text-decoration:none;
}

.service-content a:hover{
    text-decoration:underline;
}

.service-description{
    line-height:1.7;
}

.service-description p{
    margin-bottom:12px;
}

.service-description ul,
.service-description ol{
    padding-left:20px;
    margin-bottom:12px;
}

.service-description li{
    margin-bottom:6px;
}

.service-description strong{
    color:#0f172a;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

.contact-info h2{
    margin-bottom:20px;
}

.contact-card{
    background:#fff;
    padding:20px;
    margin-bottom:20px;
    border-radius:16px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.contact-card h3{
    margin-bottom:10px;
}

.contact-card a{
    color:#0f172a;
}

.btn-whatsapp{
    display:inline-block;
    background:#25D366;
    color:white;
    padding:14px 24px;
    border-radius:12px;
    font-weight:600;
    margin-top:10px;
}

.btn-whatsapp:hover{
    opacity:.9;
}

@media(max-width:768px){

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

}

.whatsapp-float{
position:fixed;

right:25px;
bottom:25px;

width:70px;
height:70px;

border-radius:50%;

background:#25D366;

display:flex;
align-items:center;
justify-content:center;

font-size:34px;

color:white;

z-index:9999;
}

.whatsapp-float:hover{
transform:translateY(-5px);
}

.card,
.service-detail,
.contact-card,
.stat-card,
.mission-box,
.values-box{
border:1px solid #e2e8f0;
}

.card:hover,
.service-detail:hover,
.contact-card:hover{
border-color:#0f172a;
}

.main-header{
    position:sticky;
    top:0;
    z-index:999;
    background:#020617;
    border-bottom:1px solid rgba(180,214,0,.15);
    backdrop-filter:blur(10px);
}

.nav{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
    color:white;
}

.logo img{
    width:65px;
}

.logo-text{
    font-family:'Orbitron',sans-serif;
    font-size:28px;
    font-weight:700;
    line-height:1;
}

.logo-text span{
    display:block;
    color:#b4d600;
}

nav{
    display:flex;
    gap:35px;
}

nav a{
    color:white;
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#b4d600;
}

.nav-cta{
    background:#b4d600;
    color:#020617;
    padding:12px 24px;
    border-radius:10px;
    font-weight:700;
}

footer{
    background:#020617;
    color:white;
    padding:80px 0 30px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
    1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    width:120px;
    margin-bottom:20px;
}

.footer-grid h3{
    color:#b4d600;
    margin-bottom:20px;
}

.footer-grid a{
    display:block;
    color:#cbd5e1;
    margin-bottom:10px;
}

.footer-grid a:hover{
    color:#b4d600;
}

.footer-bottom{
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.1);
    text-align:center;
    color:#94a3b8;
}

.services-preview{
padding:100px 0;
background:white;
}

.services-preview-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(220px,1fr));

gap:30px;
}

.service-mini-card{
text-align:center;

padding:30px;

border-radius:18px;

border:1px solid #e2e8f0;

transition:.3s;
}

.service-mini-card:hover{
border-color:#b4d600;
transform:translateY(-5px);
}

.service-mini-card .service-icon{
font-size:48px;
margin-bottom:15px;
}

.why-us{
padding:100px 0;
background:#f8fafc;
}

.why-grid{
display:grid;
grid-template-columns:
repeat(2,1fr);

gap:25px;

margin-top:50px;
}

.why-grid div{
background:white;

padding:25px;

border-radius:16px;

font-weight:600;

box-shadow:
0 10px 25px rgba(0,0,0,.05);
}



.hero-tag,
.section-label{
display:inline-block;
color:#b4d600;
font-weight:700;
letter-spacing:2px;
font-size:13px;
margin-bottom:15px;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
margin-top:10px;
}

.about-content h2{
font-size:42px;
margin-bottom:25px;
}

.mission-box,
.values-box{
background:#0f172a;
color:white;
border-radius:24px;
padding:50px;
border:1px solid rgba(180,214,0,.15);
}

.mission-box strong,
.values-box strong{
color:#b4d600;
}

.contact-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;
}

.contact-info h2{
margin-bottom:30px;
}

.contact-card{
background:white;
padding:25px;
margin-bottom:20px;
border-radius:20px;
border:1px solid #e2e8f0;
transition:.3s;
}

.contact-card:hover{
border-color:#b4d600;
}

.contact-card h3{
margin-bottom:10px;
}

.btn-whatsapp{
display:inline-block;
margin-top:10px;
background:#25D366;
color:white;
padding:12px 20px;
border-radius:10px;
font-weight:600;
}

@media(max-width:768px){

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

}

.services-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(350px,1fr));
gap:35px;
}

.service-card{
background:#fff;
padding:35px;
border-radius:24px;
border:1px solid #e2e8f0;
box-shadow:0 10px 30px rgba(0,0,0,.05);
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px);
border-color:#b4d600;
}

.service-icon{
font-size:52px;
margin-bottom:20px;
}

.service-card h2{
margin-bottom:20px;
}

.service-link{
display:inline-block;
margin-top:20px;
font-weight:700;
color:#b4d600;
}

.workflow{
padding:100px 0;
background:#020617;
color:white;
}

.workflow-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:50px;
}

.workflow-card{
background:#0f172a;
padding:30px;
border-radius:20px;
border:1px solid rgba(180,214,0,.15);
}

.workflow-card span{
font-size:42px;
font-family:'Orbitron',sans-serif;
color:#b4d600;
display:block;
margin-bottom:15px;
}

@media(max-width:768px){

.services-grid,
.workflow-grid{
grid-template-columns:1fr;
}

}

.products-section{
padding:100px 0;
}

.products-grid{
display:grid;
grid-template-columns:
repeat(auto-fill,minmax(280px,1fr));
gap:30px;
}

.product-card{
background:white;
padding:25px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,.06);
transition:.3s;
}

.product-card:hover{
transform:translateY(-5px);
}

.product-card img{
width:100%;
height:240px;
object-fit:cover;
border-radius:16px;
margin-bottom:20px;
}

.product-price{
font-size:28px;
font-weight:700;
color:#b4d600;
margin:15px 0;
}

.checkout-section{
padding:100px 0;
}

.checkout-section form{
max-width:900px;
margin:auto;
}

.order-summary{
max-width:700px;
margin:auto;
background:white;
padding:40px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.order-summary h2{
margin-bottom:20px;
}

.order-summary p{
margin-bottom:10px;
font-size:18px;
}

.cart-section{
padding:100px 0;
}

.cart-layout{
display:grid;
grid-template-columns:2fr 1fr;
gap:40px;
align-items:start;
}

.cart-item{
background:#fff;
padding:25px;
border-radius:20px;
display:grid;
grid-template-columns:120px 1fr auto;
gap:25px;
align-items:center;
margin-bottom:20px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.cart-image img{
width:100%;
height:100px;
object-fit:cover;
border-radius:12px;
}

.cart-info h3{
margin-bottom:10px;
}

.cart-price{
text-align:right;
font-size:22px;
font-weight:700;
}

.remove-link{
display:block;
margin-top:10px;
font-size:14px;
color:#ef4444;
}

.cart-summary{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
position:sticky;
top:120px;
}

.summary-row,
.summary-total{
display:flex;
justify-content:space-between;
margin-bottom:15px;
}

.summary-total{
font-size:22px;
font-weight:700;
}

.btn-checkout{
width:100%;
text-align:center;
margin-top:20px;
}

.empty-cart{
text-align:center;
background:#fff;
padding:60px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

@media(max-width:768px){

.cart-layout{
grid-template-columns:1fr;
}

.cart-item{
grid-template-columns:1fr;
text-align:center;
}

.cart-price{
text-align:center;
}

}

.product-page{
padding:100px 0;
}

.product-layout{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:start;
margin-bottom:50px;
}

.product-gallery{
background:#fff;
padding:30px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.product-gallery img{
width:100%;
border-radius:16px;
}

.product-info{
background:#fff;
padding:35px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
position:sticky;
top:120px;
}

.product-price{
font-size:42px;
font-weight:800;
margin-bottom:20px;
color:#0f172a;
}

.product-meta{
margin-bottom:15px;
color:#64748b;
}

.product-stock{
margin-bottom:25px;
font-weight:600;
}

.product-btn{
display:block;
width:100%;
text-align:center;
margin-bottom:15px;
}

.product-description-card{
background:#fff;
padding:40px;
border-radius:24px;
box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.product-description-card h2{
margin-bottom:25px;
}

@media(max-width:768px){

.product-layout{
grid-template-columns:1fr;
}

.product-info{
position:relative;
top:auto;
}

}

.main-header{
background:#0b1120;
backdrop-filter:blur(15px);
position:sticky;
top:0;
z-index:9999;
border-bottom:1px solid rgba(255,255,255,.08);
}

.main-nav{
display:flex;
gap:30px;
}

.main-nav a{
color:#e2e8f0;
font-weight:500;
transition:.3s;
}

.main-nav a:hover{
color:#4f7cff;
}

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

.btn-outline{
padding:12px 20px;
border:1px solid #334155;
border-radius:12px;
color:white;
}

.cart-btn{
position:relative;
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
background:#111827;
border-radius:12px;
color:white;
font-size:18px;
}

.cart-badge{
position:absolute;
top:-5px;
right:-5px;
width:22px;
height:22px;
background:#4f7cff;
color:white;
border-radius:50%;
font-size:12px;
display:flex;
align-items:center;
justify-content:center;
font-weight:700;
}

.whatsapp-btn{
width:48px;
height:48px;
display:flex;
align-items:center;
justify-content:center;
background:#25D366;
border-radius:12px;
color:white;
font-size:22px;
}

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

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

.logo-text{
display:flex;
flex-direction:column;
line-height:1;
font-family:'Orbitron',sans-serif;
color:white;
}

.logo-text span{
color:#4f7cff;
}