/* ======================================================
   GRUPO META DIGITAL
   STYLE.CSS V2
====================================================== */

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

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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#10171d;

    color:#E8EDF1;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

/* ==========================
   VARIABLES
========================== */

:root{

    --primary:#73D7DF;

    --primary-dark:#4FC4CD;

    --background:#10171D;

    --surface:#18232C;

    --surface-light:#22303B;

    --white:#FFFFFF;

    --text:#D6DEE3;

    --muted:#9CAAB4;

    --border:rgba(255,255,255,.08);

    --radius:18px;

    --shadow:0 20px 60px rgba(0,0,0,.28);

    --transition:.30s ease;

    --container:1250px;

}

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

.container{

    width:min(92%,1250px);

    margin:auto;

}

/* ==========================
   BODY BACKGROUND
========================== */

body::before{

    content:"";

    position:fixed;

    width:700px;

    height:700px;

    border-radius:50%;

    background:rgba(115,215,223,.06);

    filter:blur(170px);

    top:-250px;

    right:-180px;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    width:650px;

    height:650px;

    border-radius:50%;

    background:rgba(115,215,223,.05);

    filter:blur(180px);

    left:-250px;

    bottom:-250px;

    z-index:-1;

}

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

.header{

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(20px);

    background:rgba(16,23,29,.82);

    border-bottom:1px solid var(--border);

}

.header .container{

    height:82px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo img{

    width:185px;

}

/* ==========================
   NAVBAR
========================== */

.navbar ul{

    display:flex;

    gap:35px;

}

.navbar a{

    color:var(--text);

    font-size:.95rem;

    transition:var(--transition);

    position:relative;

}

.navbar a:hover{

    color:var(--primary);

}

.navbar a.active{

    color:var(--primary);

}

.navbar a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navbar a:hover::after{

    width:100%;

}

/* ==========================
   BOTONES
========================== */

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    background:var(--primary);

    color:#111;

    border-radius:14px;

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow);

}

.btn-primary:hover{

    transform:translateY(-4px);

    background:#84E5EC;

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 28px;

    border-radius:14px;

    border:1px solid var(--border);

    transition:var(--transition);

}

.btn-secondary:hover{

    background:rgba(255,255,255,.05);

    transform:translateY(-4px);

}

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

.hero{

    min-height:90vh;

    display:flex;

    align-items:center;

    position:relative;

}

.hero-grid{

    display:grid;

    grid-template-columns:1.05fr .95fr;

    gap:70px;

    align-items:center;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(115,215,223,.10);

    color:var(--primary);

    margin-bottom:25px;

    border:1px solid rgba(115,215,223,.15);

    font-size:.85rem;

}

.hero h1{

    font-size:clamp(2.7rem,4vw,4rem);

    line-height:1.08;

    margin-bottom:25px;

    color:#FFF;

}

.hero p{

    max-width:620px;

    color:var(--muted);

    margin-bottom:35px;

    font-size:1.05rem;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

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

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-card{

    width:100%;

    max-width:580px;

    background:linear-gradient(145deg,#1B2731,#253440);

    border-radius:24px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:0 40px 80px rgba(0,0,0,.35);

    transition:.35s;

}

.hero-card:hover{

    transform:translateY(-10px);

}

.hero-card img{

    width:100%;

    display:block;

}

.floating-card{

    position:absolute;

    background:rgba(24,35,44,.95);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    padding:18px 22px;

    border-radius:16px;

    box-shadow:0 20px 50px rgba(0,0,0,.25);

}

.floating-card strong{

    display:block;

    color:#FFF;

    margin-bottom:6px;

    font-size:.95rem;

}

.floating-card small{

    color:var(--muted);

    font-size:.85rem;

}

.floating-1{

    top:35px;

    left:-35px;

}

.floating-2{

    bottom:35px;

    right:-30px;

}

/* ======================================================
   TRUST
====================================================== */

.trust{

    padding:40px 0;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

    background:rgba(255,255,255,.02);

}

.trust p{

    max-width:900px;

    margin:auto;

    text-align:center;

    color:#B8C4CB;

    font-size:1.05rem;

}

/* ======================================================
   SECCIONES
====================================================== */

section{

    padding:100px 0;

}

.section-badge{

    display:inline-block;

    color:var(--primary);

    font-size:.85rem;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

    font-weight:600;

}

.section-title{

    text-align:center;

    margin-bottom:65px;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    text-transform:uppercase;

    font-size:.85rem;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-title h2{

    font-size:clamp(2rem,3vw,2.8rem);

    margin-bottom:20px;

    color:#FFF;

}

.section-title p{

    max-width:720px;

    margin:auto;

    color:var(--muted);

}

/* ======================================================
   ABOUT
====================================================== */

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.about-image img{

    border-radius:24px;

    box-shadow:var(--shadow);

}

.about-content h2{

    font-size:2.6rem;

    color:#FFF;

    line-height:1.2;

    margin-bottom:25px;

}

.about-content p{

    color:var(--muted);

    margin-bottom:22px;

}

.about-buttons{

    margin-top:35px;

}

/* ======================================================
   WHY US
====================================================== */

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.why-card{

    background:var(--surface);

    padding:35px;

    border-radius:20px;

    border:1px solid var(--border);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(115,215,223,.25);

}

.why-icon{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(115,215,223,.10);

    color:var(--primary);

    font-size:1.4rem;

    margin-bottom:22px;

}

.why-card h3{

    color:#FFF;

    margin-bottom:15px;

}

.why-card p{

    color:var(--muted);

}

/* ======================================================
   STATS
====================================================== */

.stats{

    padding-top:40px;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-card{

    background:var(--surface);

    border-radius:18px;

    padding:35px;

    text-align:center;

    border:1px solid var(--border);

}

.stat-card h3{

    color:var(--primary);

    font-size:2rem;

    margin-bottom:12px;

}

.stat-card p{

    color:var(--muted);

}

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

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:60px;

}

.service-card{

    position:relative;

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    overflow:hidden;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:rgba(115,215,223,.25);

    box-shadow:var(--shadow);

}

.service-number{

    font-size:3rem;

    font-weight:700;

    color:rgba(115,215,223,.15);

    margin-bottom:20px;

}

.service-card h3{

    color:#FFF;

    margin-bottom:15px;

    font-size:1.2rem;

}

.service-card p{

    color:var(--muted);

    font-size:.95rem;

}

.center-button{

    margin-top:55px;

    text-align:center;

}

/* ======================================================
   PROCESS
====================================================== */

.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

    margin-top:60px;

}

.timeline article{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.timeline article:hover{

    transform:translateY(-10px);

}

.timeline span{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(115,215,223,.10);

    color:var(--primary);

    font-weight:700;

    font-size:1.3rem;

}

.timeline h3{

    color:#FFF;

    margin-bottom:15px;

}

.timeline p{

    color:var(--muted);

}

/* ======================================================
   PLANES
====================================================== */

.plans-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.plan{

    position:relative;

    background:linear-gradient(180deg,#1B2731,#18232C);

    border:1px solid var(--border);

    border-radius:22px;

    padding:45px;

    transition:.35s;

}

.plan:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

}

.plan.featured{

    border:2px solid var(--primary);

    transform:scale(1.03);

}

.recommended{

    position:absolute;

    top:18px;

    right:18px;

    background:var(--primary);

    color:#111;

    font-size:.75rem;

    font-weight:600;

    padding:8px 16px;

    border-radius:999px;

}

.plan h3{

    color:#FFF;

    font-size:1.5rem;

    margin-bottom:25px;

}

.plan-price{

    color:var(--primary);

    font-size:3rem;

    font-weight:700;

    margin-bottom:35px;

}

.plan-price small{

    display:block;

    color:var(--muted);

    font-size:.95rem;

    margin-top:6px;

    font-weight:400;

}

.plan ul{

    display:flex;

    flex-direction:column;

    gap:16px;

    margin-bottom:40px;

}

.plan li{

    color:var(--text);

}

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

@media(max-width:1100px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

.timeline{

    grid-template-columns:repeat(2,1fr);

}

.plans-grid{

    grid-template-columns:1fr;

}

.plan.featured{

    transform:none;

}

}

@media(max-width:768px){

.services-grid{

    grid-template-columns:1fr;

}

.timeline{

    grid-template-columns:1fr;

}

.plan{

    padding:35px;

}

}

/* ======================================================
   PORTFOLIO
====================================================== */

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    margin-top:60px;

}

.portfolio-card{

    background:var(--surface);

    border-radius:22px;

    overflow:hidden;

    border:1px solid var(--border);

    transition:.35s;

    box-shadow:0 10px 40px rgba(0,0,0,.15);

}

.portfolio-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 70px rgba(0,0,0,.30);

}

.portfolio-card img{

    width:100%;

    display:block;

    transition:.45s;

}

.portfolio-card:hover img{

    transform:scale(1.04);

}

.portfolio-info{

    padding:28px;

}

.portfolio-info h3{

    color:#FFF;

    margin-bottom:10px;

}

.portfolio-info p{

    color:var(--muted);

}

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

.faq-list{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:18px;

    padding:30px;

    margin-bottom:20px;

    transition:.3s;

}

.faq-item:hover{

    border-color:rgba(115,215,223,.25);

}

.faq-item h3{

    color:#FFF;

    margin-bottom:15px;

    font-size:1.15rem;

}

.faq-item p{

    color:var(--muted);

}

/* ======================================================
   CTA FINAL
====================================================== */

.final-cta{

    padding:120px 0;

}

.cta-content{

    background:linear-gradient(135deg,#1B2731,#243541);

    border-radius:30px;

    padding:80px;

    text-align:center;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 70px rgba(0,0,0,.30);

}

.cta-content span{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:1px;

    font-size:.85rem;

    display:block;

    margin-bottom:20px;

}

.cta-content h2{

    font-size:clamp(2.2rem,4vw,3.4rem);

    color:#FFF;

    margin-bottom:25px;

    line-height:1.15;

}

.cta-content p{

    max-width:720px;

    margin:0 auto 40px;

    color:var(--muted);

    font-size:1.05rem;

}

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

footer{

    background:#0D1419;

    padding-top:80px;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

    padding-bottom:60px;

}

.footer-logo{

    width:190px;

    margin-bottom:25px;

}

.footer-brand p{

    max-width:320px;

}

footer h4{

    color:#FFF;

    margin-bottom:20px;

}

footer ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

footer li a{

    color:var(--muted);

    transition:.3s;

}

footer li a:hover{

    color:var(--primary);

}

footer p{

    color:var(--muted);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding:25px 0;

    text-align:center;

    color:#8B9AA5;

}

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

@media(max-width:992px){

.about-grid{

    grid-template-columns:1fr;

}

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.stats-grid{

    grid-template-columns:repeat(2,1fr);

}

.portfolio-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:repeat(2,1fr);

}

.cta-content{

    padding:55px 35px;

}

}

@media(max-width:768px){

.hero-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-left{

    align-items:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-features{

    grid-template-columns:1fr;

}

.hero-right{

    margin-top:50px;

}

.floating-card{

    display:none;

}

.why-grid{

    grid-template-columns:1fr;

}

.stats-grid{

    grid-template-columns:1fr;

}

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    margin:auto auto 25px;

}

.cta-content{

    padding:40px 25px;

}

section{

    padding:80px 0;

}

}

@media(max-width:480px){

.hero h1{

    font-size:2.2rem;

}

.hero p{

    font-size:1rem;

}

.section-title h2{

    font-size:1.9rem;

}

.about-content h2{

    font-size:2rem;

}

.btn-primary,
.btn-secondary{

    width:100%;

}

.hero-buttons{

    flex-direction:column;

}

.plan{

    padding:30px;

}

.service-card{

    padding:30px;

}

}