/* =========================================
   RESET
========================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f5f7fb;
    color:#111827;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

.container,
.nav-container,
.footer-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
    width:100%;
    height:80px;

    position:fixed;
    top:0;
    left:0;

    z-index:1000;

    background:rgb(255, 255, 255);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(0,0,0,.05);
}

.nav-container{
    height:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;

    text-decoration:none;
}

.logo-img{
    width:52px;
    height:52px;

    object-fit:cover;

    border-radius:50%;
}

.logo-text{
    font-family:'Montserrat',sans-serif;
    font-size:1.4rem;
    font-weight:700;

    color:#007BFF;
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:30px;

    list-style:none;
}

.nav-link{
    text-decoration:none;

    color:#64748b;

    font-weight:500;

    transition:.3s;
}

.nav-link:hover,
.nav-link.active{
    color:#007BFF;
}

/* =========================================
   HAMBURGER
========================================= */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:25px;
    height:3px;

    border-radius:20px;

    background:#007BFF;
}

/* =========================================
   HERO
========================================= */

.about-hero{
    min-height:100vh;

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    padding:120px 20px;

    overflow:hidden;

    background:
    linear-gradient(135deg,#0f172a 0%,#111827 100%);
}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at top right,
    rgba(0,123,255,.15),
    transparent 35%);
}

.hero-glow{
    position:absolute;

    border-radius:50%;

    filter:blur(100px);
}

.glow-1{
    width:350px;
    height:350px;

    background:#007BFF;

    opacity:.18;

    top:-100px;
    left:-100px;
}

.glow-2{
    width:300px;
    height:300px;

    background:#7c3aed;

    opacity:.16;

    right:-100px;
    bottom:-100px;
}

.about-content{
    position:relative;
    z-index:10;

    max-width:900px;
}

.hero-badge{
    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.1);

    color:#60a5fa;

    font-size:.8rem;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:25px;
}

.about-content h1{
    font-family:'Montserrat',sans-serif;

    font-size:clamp(3rem,6vw,5rem);

    line-height:1.1;

    color:white;

    margin-bottom:25px;
}

.about-content p{
    color:#cbd5e1;

    font-size:1.1rem;

    line-height:1.8;

    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* =========================================
   BUTTONS
========================================= */

.btn-primary,
.btn-secondary{
    padding:16px 32px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.btn-primary{
    background:linear-gradient(135deg,#007BFF,#0056b3);

    color:white;

    box-shadow:
    0 10px 30px rgba(0,123,255,.3);
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    border:1px solid rgba(255,255,255,.2);

    color:white;

    background:rgba(255,255,255,.05);
}

.btn-secondary:hover{
    background:white;
    color:#111827;
}

/* =========================================
   ABOUT SECTION
========================================= */

.about-section{
    padding:120px 0;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    height:550px;

    object-fit:cover;

    border-radius:30px;

    box-shadow:
    0 20px 60px rgba(0,0,0,.12);
}

.section-tag{
    display:inline-block;

    color:#007BFF;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:20px;
}

.about-text h2{
    font-size:2.8rem;

    font-family:'Montserrat',sans-serif;

    line-height:1.2;

    margin-bottom:25px;
}

.about-text p{
    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;
}

.about-features{
    margin-top:35px;

    display:grid;
    gap:18px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature-dot{
    width:12px;
    height:12px;

    border-radius:50%;

    background:#007BFF;
}

/* =========================================
   STATS
========================================= */

.stats-section{
    padding:100px 0;

    background:white;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.stat-card{
    background:#f8fafc;

    padding:45px 30px;

    border-radius:25px;

    text-align:center;

    transition:.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    font-size:3rem;

    color:#007BFF;

    margin-bottom:10px;
}

.stat-card p{
    color:#64748b;
}

/* =========================================
   SERVICES
========================================= */

.services-section{
    padding:120px 0;

    background:#eef4ff;
}

.section-header{
    text-align:center;

    margin-bottom:60px;
}

.section-header h2{
    font-size:3rem;

    font-family:'Montserrat',sans-serif;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:white;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 10px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card img{
    width:100%;
    height:250px;

    object-fit:cover;
}

.service-content{
    padding:30px;
}

.service-content h3{
    font-size:1.5rem;

    margin-bottom:15px;
}

.service-content p{
    color:#64748b;

    line-height:1.8;
}

/* =========================================
   TEAM PREVIEW
========================================= */

.team-preview{
    padding:120px 0;
}

.team-card{
    background:white;

    border-radius:35px;

    padding:60px;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

.team-image img{
    width:100%;
    height:500px;

    object-fit:cover;

    border-radius:25px;
}

.team-info h2{
    font-size:3rem;

    line-height:1.2;

    margin-bottom:25px;
}

.team-info p{
    color:#64748b;

    line-height:1.9;

    margin-bottom:35px;
}

/* =========================================
   CTA
========================================= */

.cta-section{
    padding:120px 0;
}

.cta-card{
    background:
    linear-gradient(135deg,#007BFF,#0056b3);

    padding:80px 40px;

    border-radius:35px;

    text-align:center;

    color:white;
}

.cta-card span{
    letter-spacing:2px;

    font-size:.9rem;

    opacity:.8;
}

.cta-card h2{
    font-size:3rem;

    margin:20px 0 35px;
}

/* =========================================
   FOOTER
========================================= */

.footer{
    background:#0f172a;

    padding:80px 20px 40px;

    color:white;
}

.footer-container{
    text-align:center;
}

.footer-brand img{
    width:80px;

    margin:auto auto 20px;
}

.footer-brand h3{
    font-size:2rem;

    margin-bottom:15px;
}

.footer-brand p{
    color:#94a3b8;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:20px;

    margin:35px 0;
}

.social-icons a{
    width:48px;
    height:48px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    background:rgba(255,255,255,.08);

    color:white;

    transition:.3s;
}

.social-icons a:hover{
    background:#007BFF;

    transform:translateY(-5px);
}

.copyright{
    color:#94a3b8;
}

/* =========================================
   RESPONSIVO
========================================= */

@media(max-width:992px){

    .about-grid,
    .team-card,
    .services-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .team-card{
        padding:40px;
    }

}

@media(max-width:768px){

    .nav-menu{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .about-content h1{
        font-size:3rem;
    }

    .about-text h2,
    .section-header h2,
    .team-info h2,
    .cta-card h2{
        font-size:2.2rem;
    }

    .about-image img,
    .team-image img{
        height:350px;
    }

}

/* =========================================
   PREMIUM HERO FX
========================================= */

.hero-grid{
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size:60px 60px;

    mask-image:linear-gradient(to bottom, transparent, rgba(0,0,0,.8));

    opacity:.35;
}

.floating-orb{
    position:absolute;

    border-radius:50%;

    filter:blur(90px);

    animation:floatOrb 10s ease-in-out infinite;
}

.orb-1{
    width:300px;
    height:300px;

    background:#007BFF;

    top:10%;
    right:10%;

    opacity:.18;
}

.orb-2{
    width:250px;
    height:250px;

    background:#7c3aed;

    bottom:10%;
    left:5%;

    opacity:.15;

    animation-delay:4s;
}

@keyframes floatOrb{

    0%,100%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-35px);
    }

}

/* =========================================
   GLASS NAVBAR
========================================= */

.navbar{

    background:
    rgba(15,23,42,.65);

    backdrop-filter:blur(18px);

    border-bottom:
    1px solid rgba(255,255,255,.08);
}

.nav-link{
    color:#cbd5e1;
}

.nav-link:hover,
.nav-link.active{
    color:#60a5fa;
}

/* =========================================
   PREMIUM CARD STYLE
========================================= */

.service-card,
.team-card,
.stat-card{

    background:
    rgba(255,255,255,.7);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.4);

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);
}

/* =========================================
   HOVER FX
========================================= */

.service-card{
    position:relative;
}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        135deg,
        rgba(0,123,255,.15),
        transparent 40%
    );

    opacity:0;

    transition:.5s;
}

.service-card:hover::before{
    opacity:1;
}

.service-card:hover{
    transform:
    translateY(-15px)
    scale(1.02);
}

/* =========================================
   PREMIUM BUTTON
========================================= */

.btn-primary{

    position:relative;

    overflow:hidden;
}

.btn-primary::before{

    content:"";

    position:absolute;

    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.3),
        transparent
    );

    transition:.7s;
}

.btn-primary:hover::before{
    left:100%;
}

/* =========================================
   IMAGE FX
========================================= */

.about-image img,
.team-image img{

    transition:
    transform .7s ease,
    filter .7s ease;
}

.about-image:hover img,
.team-image:hover img{

    transform:scale(1.04);

    filter:brightness(1.05);
}
/* =========================================
   FINAL SHOWCASE
========================================= */

.final-showcase{
    position:relative;

    padding:140px 20px;

    overflow:hidden;

    background:
    radial-gradient(circle at top left,
    rgba(0,123,255,.15),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(0,123,255,.10),
    transparent 30%),

    linear-gradient(135deg,
    #050816 0%,
    #0f172a 100%);
}

/* GRID BACKGROUND */

.final-showcase::before{
    content:"";

    position:absolute;
    inset:0;

    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);

    background-size:60px 60px;

    opacity:.35;

    pointer-events:none;
}

/* BLURS */

.showcase-blur{
    position:absolute;

    border-radius:50%;

    filter:blur(120px);

    z-index:1;
}

.blur-1{
    width:320px;
    height:320px;

    background:#007BFF;

    top:-120px;
    left:-100px;

    opacity:.35;
}

.blur-2{
    width:300px;
    height:300px;

    background:#4f46e5;

    bottom:-100px;
    right:-100px;

    opacity:.25;
}

/* CONTENT */

.showcase-content{
    position:relative;
    z-index:5;

    max-width:950px;

    margin:auto;

    text-align:center;
}

/* TAG */

.showcase-tag{
    display:inline-flex;

    padding:12px 24px;

    border-radius:999px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color:#8cbcff;

    font-size:.82rem;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:30px;

    backdrop-filter:blur(14px);
}

/* TITLE */

.showcase-content h2{
    font-family:'Montserrat',sans-serif;

    font-size:clamp(2.8rem,5vw,5rem);

    line-height:1.1;

    font-weight:800;

    color:#fff;

    margin-bottom:30px;
}

/* TEXT */

.showcase-content p{
    max-width:760px;

    margin:auto;

    color:rgba(255,255,255,.72);

    font-size:1.15rem;

    line-height:1.9;

    margin-bottom:60px;
}

/* STATS */

.showcase-stats{
    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    margin-bottom:60px;
}

.showcase-item{
    min-width:190px;

    padding:28px;

    border-radius:28px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.45s;
}

.showcase-item:hover{
    transform:
    translateY(-10px)
    scale(1.03);

    border-color:
    rgba(0,123,255,.35);

    box-shadow:
    0 20px 50px rgba(0,123,255,.18);
}

.showcase-item h3{
    font-size:2.2rem;

    color:#fff;

    margin-bottom:10px;

    font-family:'Montserrat',sans-serif;
}

.showcase-item span{
    color:rgba(255,255,255,.68);

    font-size:.95rem;
}

/* BUTTONS */

.showcase-buttons{
    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.btn-outline-light{
    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 34px;

    border-radius:999px;

    border:1px solid rgba(255,255,255,.18);

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

    backdrop-filter:blur(14px);
}

.btn-outline-light:hover{
    transform:translateY(-5px);

    background:rgba(255,255,255,.08);

    border-color:#fff;
}

/* RESPONSIVO */

@media(max-width:768px){

    .final-showcase{
        padding:110px 20px;
    }

    .showcase-content h2{
        font-size:2.5rem;
    }

    .showcase-content p{
        font-size:1rem;
    }

    .showcase-item{
        width:100%;
        max-width:320px;
    }

    .showcase-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-outline-light,
    .btn-primary{
        width:100%;
        max-width:320px;
    }

}
