/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --primary:#072A52;
    --secondary:#1BC5D8;
    --dark:#06172D;
    --light:#F8FAFC;
    --text:#1F2937;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;

    background:
    linear-gradient(
        180deg,
        #ffffff 0%,
        #f7fbfd 40%,
        #ffffff 100%
    );

    color:var(--text);

    overflow-x:hidden;

    position:relative;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

/* ==========================
NAVBAR PREMIUM
========================== */

.navbar{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid rgba(0,0,0,.08);

    box-shadow: 0 5px 25px rgba(0,0,0,.05);

    transition: .35s ease;
}

.nav-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}
.nav-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.lang-btn{

    width:44px;
    height:44px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    text-decoration:none;

    font-size:22px;

    transition:.3s ease;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.lang-btn:hover{

    transform:translateY(-3px) scale(1.08);

    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

/* ===========================
   MOBILE NAVBAR
=========================== */
.menu-toggle{

    display:none;

    width:42px;

    height:42px;

    justify-content:center;

    align-items:center;

    cursor:pointer;

    font-size:24px;

    color:#0f172a;

    transition:.35s ease;

    z-index:3002;

}

@media (max-width:991px){

/* NAVBAR */

.navbar{

    height:70px;

}

.nav-container{

    height:70px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* LOGO */

.logo{

    z-index:3002;

}

.logo img{

    height:45px;

}

/* MENU */

.menu-toggle{

    display:flex;

}

.nav-menu{

    position:fixed;

    top:0;

    left:-100%;

    width:82%;

    max-width:320px;

    height:100vh;

    background:#fff;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    padding:90px 28px 35px;

    gap:4px;

    transition:left .35s ease;

    box-shadow:15px 0 40px rgba(0,0,0,.15);

    z-index:3000;

}

.nav-menu.active{

    left:0;

}

/* LINKS */

.nav-menu a{

    width:100%;

    padding:16px 0;

    font-size:1rem;

    font-weight:600;

    color:#0f172a;

    text-decoration:none;

    border-bottom:1px solid rgba(0,0,0,.06);

}

.nav-menu a::after{

    display:none;

}

.nav-menu a:hover{

    color:#22c1d6;

}

/* BOTÃO */

.nav-actions{

    width:100%;

    margin-top:25px;

    padding-top:10px;

    border-top:1px solid rgba(0,0,0,.08);

}

.nav-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    padding:13px 24px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        #22c1d6,
        #0ea5c6
    );

    color:#ffffff;

    font-size:.92rem;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(34,193,214,.22);

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(34,193,214,.30);

}
/* ESCONDER BANDEIRAS */

.lang-btn{

    display:none !important;

}

}
/* ===========================
   LOGO
=========================== */

.logo img{

    height:52px;

    transition:.35s ease;

}

.logo img:hover{

    transform:scale(1.03);

}

/* ===========================
   MENU DESKTOP
=========================== */

.nav-menu{

    display:flex;

    align-items:center;

    gap:38px;

}

.nav-menu a{

    position:relative;

    color:#0f172a;

    font-size:.95rem;

    font-weight:600;

    text-decoration:none;

    transition:.3s ease;

}

.nav-menu a:hover{

    color:#22c1d6;

}

.nav-menu a::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:20px;

    background:#22c1d6;

    transition:.35s ease;

}

.nav-menu a:hover::after{

    width:100%;

}

/* ===========================
   AÇÕES DESKTOP
=========================== */

.nav-actions{

    display:flex;

    align-items:center;

    gap:12px;

}

/* ===========================
   BOTÃO DESKTOP
=========================== */

.nav-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:13px 24px;

    border-radius:999px;

    background:linear-gradient(
        135deg,
        #22c1d6,
        #0ea5c6
    );

    color:#fff;

    font-size:.92rem;

    font-weight:600;

    text-decoration:none;

    transition:.35s ease;

    box-shadow:0 12px 30px rgba(34,193,214,.22);

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 40px rgba(34,193,214,.30);

}

/* ==========================
HERO PREMIUM
========================== */

.hero{

min-height:92vh;

position:relative;

display:flex;

align-items:center;

overflow:hidden;

background:
url('../images/logotalents.png');

background-size:cover;

background-position:center;

}

.hero::before{

content:'';

position:absolute;

inset:0;

background:
linear-gradient(
90deg,
rgba(15,23,42,.92) 0%,
rgba(15,23,42,.75) 45%,
rgba(15,23,42,.45) 100%);

}

/* GLOWS */

.hero-shape{

position:absolute;

border-radius:50%;

pointer-events:none;

}

.shape-1{

width:420px;
height:420px;

background:
rgba(34,193,214,.15);

top:-150px;
right:-120px;

filter:blur(90px);

}

.shape-2{

width:280px;
height:280px;

background:
rgba(34,193,214,.10);

bottom:-80px;
left:-80px;

filter:blur(70px);

}

/* CONTEÚDO */

.hero-grid{

width:100%;

position:relative;

z-index:2;

display:flex;

align-items:center;

}

.hero-left{

max-width:620px;

}
.hero-label{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:
    rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    border:
    1px solid rgba(255,255,255,.10);

    font-size:.78rem;

    font-weight:600;

    letter-spacing:2px;

    color:#fbbf24;

    margin-bottom:28px;

    text-transform:uppercase;
}

.hero-left h1{

color:white;

font-size:clamp(
    2.8rem,
    4vw,
    4.4rem);

line-height:1.05;

font-weight:700;

margin-bottom:22px;

max-width:650px;

}

.hero-left p{

color:
rgba(255,255,255,.82);

font-size:1rem;

line-height:1.9;

max-width:540px;

margin-bottom:35px;

}

/* BOTÕES */

.hero-actions{

display:flex;

gap:16px;

flex-wrap:wrap;

}

.btn-primary{

padding:15px 28px;

border-radius:999px;

background:
linear-gradient(
135deg,
#22c1d6,
#0ea5c6);

color:white;

font-weight:600;

transition:.35s ease;

box-shadow:
0 15px 35px rgba(34,193,214,.25);

}

.btn-primary{

transform:
translateY(-4px);

}

.btn-outline{

padding:15px 28px;

border-radius:999px;

border:
1px solid rgba(255,255,255,.15);

color:white;

background:
rgba(255,255,255,.04);

backdrop-filter:blur(12px);

transition:.35s ease;

}

.btn-outline{

background:
rgba(255,255,255,.10);

transform:
translateY(-4px);

}

/* ==========================================================
   HERO MOBILE PROFISSIONAL
==========================================================*/

@media only screen and (max-width:768px){

.hero{

    min-height:auto;

    padding:110px 0 55px;

    display:flex;

    align-items:center;

    background-position:center;

    background-size:cover;

}

.hero::before{

    background:linear-gradient(
        180deg,
        rgba(15,23,42,.92),
        rgba(15,23,42,.82)
    );

}

.hero-grid{

    display:flex;

    justify-content:flex-start;

}

.hero-left{

    width:100%;

    max-width:100%;

    text-align:left;

}

.hero-label{

    display:inline-flex;

    font-size:.38rem;

    padding:6px 12px;

    margin-bottom:14px;

}

.hero-left h1{

    font-size:1.5rem;

    line-height:1.3;

    margin-bottom:15px;

    max-width:320px;

}

.hero-left p{

    font-size:.70rem;

    line-height:1.6;

    margin-bottom:22px;

    max-width:330px;

}

.hero-actions{

    display:flex;

    flex-direction:row;

    align-items:center;

    justify-content:flex-start;

    gap:10px;

    flex-wrap:wrap;

}

.btn-primary,
.btn-outline{

    width:auto;

    min-width:145px;

    max-width:none;

    padding:11px 18px;

    font-size:.72rem;

    border-radius:995px;

    justify-content:center;

}

.shape-1{

    width:180px;

    height:180px;

    top:-60px;

    right:-80px;

}

.shape-2{

    width:120px;

    height:120px;

    left:-40px;

    bottom:-30px;

}

}

/* Container */

@media (max-width:768px){

.container{

    width:92%;

}

}
/* =========================
   ABOUT PREMIUM
========================= */

.about-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #f8fafc);

    position:relative;

    overflow:hidden;
}

.about-section::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(34,193,214,.05);

    top:-250px;
    right:-250px;

    filter:blur(50px);
}

.about-grid{

    display:grid;

    grid-template-columns:
    1.1fr 1fr;

    gap:70px;

    align-items:center;
}

/* IMAGEM */

.about-image{

    position:relative;

    height:520px;
}

.about-image img{

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:32px;

    display:block;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

/* ELIMINAR RECORTES ANTIGOS */

.shape-left,
.shape-middle,
.shape-right{

    display:none;
}

/* TEXTO */

.about-content{

    padding-left:10px;
}

.about-line{

    width:65px;
    height:4px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #22c1d6,
    #0ea5c6);

    margin-bottom:25px;
}

.about-content h2{

    font-size:clamp(
        2rem,
        3vw,
        2.8rem);

    font-weight:700;

    color:#0f172a;

    margin-bottom:25px;
}

.about-content p{

    font-size:1rem;

    line-height:1.9;

    color:#64748b;

    margin-bottom:20px;
}

.about-footer{

    margin-top:35px;

    color:#22c1d6;

    font-weight:600;

    font-size:.95rem;
}

/* RESPONSIVO */

@media(max-width:992px){

    .about-grid{

        grid-template-columns:1fr;

        gap:45px;
    }

    .about-image{

        height:320px;
    }

    .about-content{

        padding-left:0;
    }
}

@media(max-width:768px){

    .about-section{

        padding:90px 0;
    }

    .about-image{

        height:320px;
    }

    .about-content h2{

        font-size:1.3rem;
    }
}/* ===================================
   WHY US ULTRA PREMIUM
=================================== */

.why-us{

    position:relative;

    padding:140px 0;

    background:
    linear-gradient(
    180deg,
    #0f172a 0%,
    #08111f 100%);

    overflow:hidden;
}

/* AURORA */

.why-us::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(34,193,214,.12);

    top:-350px;
    right:-250px;

    filter:blur(120px);
}

.why-us::after{

    content:'';

    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
    rgba(99,102,241,.10);

    bottom:-250px;
    left:-250px;

    filter:blur(120px);
}

.why-bg-shape{
    display:none;
}

/* ===================================
   HEADER PADRÃO TALENTS
=================================== */

.why-us .services-heading{

    max-width:780px;

    margin:0 auto 90px;

    text-align:center;

    position:relative;

    z-index:2;
}

.why-us .services-heading span{

    width:100px;

    height:5px;

    display:block;

    margin:0 auto 18px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #1ec9f3,
    #56c271,
    #f2c94c);
}

.why-us .services-heading small{

    display:block;

    margin-bottom:20px;

    color:#7dd3fc;

    letter-spacing:4px;

    font-weight:700;

    font-size:.8rem;
}

.why-us .services-heading h2{

    font-size:clamp(
    2rem,
    4vw,
    2.8rem);

    line-height:1.1;

    color:white;

    font-weight:800;

    margin-bottom:20px;
}

.why-us .services-heading h2 strong{

    color:#22c1d6;
}

.why-us .services-heading p{

    max-width:700px;

    margin:auto;

    color:
    rgba(255,255,255,.75);

    line-height:1.9;

    font-size:1rem;
}

/* ===================================
   SLIDER
=================================== */

.why-slider{

    overflow:hidden;

    position:relative;

    z-index:2;

    mask-image:
    linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent);
}

.why-track{

    display:flex;

    gap:24px;

    width:max-content;

    animation:
    talentsLoop 45s linear infinite;
}

/* PAUSA AO PASSAR O RATO */

.why-slider:hover .why-track{

    animation-play-state:paused;
}

/* ===================================
   CARD
=================================== */

.why-card{

    position:relative;

    width:360px;

    min-height:260px;

    flex:none;

    border-radius:32px;

    padding:35px;

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.08);

    overflow:hidden;

    transition:.4s ease;
}

/* NÚMERO GIGANTE */

.why-card::before{

    content:attr(data-number);

    position:absolute;

    right:15px;

    top:-15px;

    font-size:7rem;

    font-weight:800;

    color:
    rgba(255,255,255,.04);

    line-height:1;
}

.why-card:hover{

    transform:
    translateY(-10px);

    border-color:
    rgba(34,193,214,.35);

    box-shadow:
    0 30px 70px rgba(0,0,0,.35);
}

/* BRILHO */

.why-card::after{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.08),
    transparent);

    transition:1s;
}

.why-card:hover::after{

    left:150%;
}

/* NÚMERO PEQUENO */

.why-number{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:52px;
    height:52px;

    border-radius:16px;

    background:
    linear-gradient(
    135deg,
    #22c1d6,
    #0ea5c6);

    color:white;

    font-weight:700;

    margin-bottom:22px;
}

/* TÍTULO */

.why-card h3{

    color:white;

    font-size:1.25rem;

    margin-bottom:15px;

    line-height:1.4;
}

/* TEXTO */

.why-card p{

    color:
    rgba(255,255,255,.72);

    line-height:1.8;

    font-size:.95rem;
}

/* ===================================
   ANIMAÇÃO
=================================== */

@keyframes talentsLoop{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }
}

/* ===================================
   RESPONSIVO
=================================== */

@media(max-width:768px){

    .why-us{

        padding:100px 0;
    }

    .why-us .services-heading h2{

        font-size:1.3rem;
    }

    .why-card{

        width:300px;
    }

    .why-track{

        animation-duration:30s;
    }
    .why-us .services-heading p{

    max-width:700px;

    margin:auto;

    color:
    rgba(255,255,255,.75);

    font-size:0.8rem;
}
}
/* ==========================
   VALUES PREMIUM 2026
========================== */

.values-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:

    radial-gradient(
    circle at top left,
    rgba(34,193,214,.18),
    transparent 25%),

    radial-gradient(
    circle at bottom right,
    rgba(245,158,11,.15),
    transparent 30%),

    linear-gradient(
    180deg,
    #f8fdff 0%,
    #eefcff 50%,
    #ffffff 100%);
}

/* GLOWS */

.values-section::before{

    content:'';

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    rgba(34,193,214,.12);

    top:-180px;
    right:-180px;

    filter:blur(90px);
}

.values-section::after{

    content:'';

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:
    rgba(245,158,11,.10);

    bottom:-150px;
    left:-150px;

    filter:blur(80px);
}

/* GRID */

.values-grid{

    display:grid;

    grid-template-columns:
    1.05fr 1fr;

    gap:80px;

    align-items:center;

    position:relative;

    z-index:2;
}

/* IMAGEM */

.values-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;
}

.image-ring{

    position:absolute;

    width:500px;
    height:500px;

    border-radius:40px;

    background:
    linear-gradient(
    135deg,
    #22c1d6,
    #60a5fa);

    transform:
    rotate(-8deg);

    opacity:.9;
}

.values-image img{

    position:relative;

    width:450px;
    height:540px;

    object-fit:cover;

    border-radius:32px;

    box-shadow:
    0 35px 80px rgba(0,0,0,.12);

    transition:.5s ease;
}

.values-image:hover img{

    transform:
    translateY(-12px);
}

/* TEXTO */

.section-line{

    width:70px;

    height:4px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #22c1d6,
    #60a5fa);

    margin-bottom:22px;
}

.values-content h2{

    font-size:clamp(
        2rem,
        3vw,
        3.2rem);

    line-height:1.1;

    color:#0f172a;

    margin-bottom:20px;

    font-weight:700;
}

.values-intro{

    color:#64748b;

    font-size:1rem;

    line-height:1.9;

    margin-bottom:40px;

    max-width:550px;
}

/* CARDS */

.values-cards{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px;
}

.value-card{

    background:
    rgba(255,255,255,.78);

    backdrop-filter:blur(18px);

    border:
    1px solid rgba(255,255,255,.5);

    border-radius:24px;

    padding:22px;

    display:flex;

    align-items:center;

    gap:16px;

    transition:.35s ease;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.value-card:hover{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 50px rgba(0,0,0,.10);
}

/* ÍCONES COLORIDOS */

.value-card i{

    width:52px;
    height:52px;

    border-radius:16px;

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    flex-shrink:0;
}

.value-card:nth-child(1) i{
    background:linear-gradient(135deg,#22c1d6,#0ea5c6);
}

.value-card:nth-child(2) i{
    background:linear-gradient(135deg,#6366f1,#4f46e5);
}

.value-card:nth-child(3) i{
    background:linear-gradient(135deg,#f59e0b,#f97316);
}

.value-card:nth-child(4) i{
    background:linear-gradient(135deg,#10b981,#059669);
}

.value-card:nth-child(5) i{
    background:linear-gradient(135deg,#ec4899,#db2777);
}

.value-card:nth-child(6) i{
    background:linear-gradient(135deg,#8b5cf6,#7c3aed);
}

.value-card h4{

    color:#0f172a;

    font-size:1rem;

    font-weight:600;

    margin:0;
}

/* RESPONSIVO */

@media(max-width:992px){

    .values-grid{

        grid-template-columns:1fr;

        gap:60px;
    }

    .values-image img{

        width:380px;
        height:460px;
    }

    .image-ring{

        width:420px;
        height:420px;
    }
}

@media(max-width:768px){

    .values-section{

        padding:100px 0;
    }

    .values-cards{

        grid-template-columns:1fr;
    }

    .values-image img{

        width:290px;
        height:360px;
    }

    .image-ring{

        width:300px;
        height:300px;
    }

    .values-content h2{

        font-size:1.4rem;
    }
}/* ===================================
   EVENTOS PREMIUM
=================================== */

.event-showcase{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:

    radial-gradient(
    circle at top right,
    rgba(34,193,214,.12),
    transparent 30%),

    radial-gradient(
    circle at bottom left,
    rgba(59,130,246,.10),
    transparent 35%),

    linear-gradient(
    180deg,
    #eaf8fc 0%,
    #dff4f8 50%,
    #eef9fc 100%);
}

/* GLOWS */

.event-showcase::before{

    content:'';

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    rgba(34,193,214,.14);

    top:-350px;
    right:-250px;

    filter:blur(120px);
}

.event-showcase::after{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    rgba(245,158,11,.10);

    bottom:-200px;
    left:-150px;

    filter:blur(100px);
}

/* ===================================
   HEADER IGUAL SERVIÇOS
=================================== */

.event-showcase .services-heading{

    text-align:center;

    max-width:780px;

    margin:0 auto 90px;

    position:relative;

    z-index:10;
}

.event-showcase .services-heading span{

    width:100px;

    height:5px;

    display:block;

    margin:0 auto 18px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #1ec9f3,
    #56c271,
    #f2c94c);
}

.event-showcase .services-heading small{

    display:block;

    margin-bottom:20px;

    color:#179dc5;

    letter-spacing:4px;

    font-weight:700;

    font-size:.8rem;
}

.event-showcase .services-heading h2{

    font-size:clamp(
    2rem,
    4vw,
    2.6rem);

    line-height:1.1;

    color:#072a52;

    font-weight:800;

    margin-bottom:20px;
}

.event-showcase .services-heading h2 strong{

    color:#2ca8d6;
}

.event-showcase .services-heading p{

    color:#526176;

    font-size:1rem;

    line-height:1.9;

    max-width:700px;

    margin:auto;
}

/* TEXTO EXTRA */

.event-highlight{

    text-align:center;

    margin-top:25px;

    color:#0891b2;

    font-weight:600;

    letter-spacing:1px;

    font-size:.9rem;
}

/* ===================================
   GRID
=================================== */

.event-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    grid-auto-rows:260px;

    gap:24px;

    position:relative;

    z-index:2;
}

/* CARD */

.event-card{

    position:relative;

    overflow:hidden;

    border-radius:34px;

    background:white;

    border:
    1px solid rgba(255,255,255,.8);

    box-shadow:
    0 20px 50px rgba(15,23,42,.08);

    transition:.45s ease;
}

.event-card.large{

    grid-column:span 2;

    grid-row:span 2;
}

.event-card.wide{

    grid-column:span 2;
}

/* IMAGE */

.event-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:
    transform 1.2s ease;
}

.event-card:hover img{

    transform:
    scale(1.15);
}

/* OVERLAY */

.overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    background:
    linear-gradient(
    to top,
    rgba(15,23,42,.95),
    rgba(15,23,42,.05));
}

/* TAG */

.overlay small{

    display:inline-flex;

    align-items:center;

    width:max-content;

    margin-bottom:14px;

    padding:8px 14px;

    border-radius:999px;

    background:
    rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    border:
    1px solid rgba(255,255,255,.15);

    color:#8be6f0;

    font-size:.72rem;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;
}

/* TITULOS */

.overlay h3{

    color:white;

    font-size:1.35rem;

    font-weight:600;

    letter-spacing:.3px;

    line-height:1.3;

    margin:0;
}

.event-card.large .overlay h3{

    font-size:1.9rem;
}

.overlay h3::before{

    content:'';

    display:block;

    width:45px;

    height:3px;

    margin-bottom:15px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #22c1d6,
    #60a5fa);
}

/* HOVER */

.event-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 35px 80px rgba(15,23,42,.16);
}

/* BRILHO */

.event-card::after{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.25),
    transparent);

    transition:1s;
}

.event-card:hover::after{

    left:150%;
}

/* RESPONSIVO */

@media(max-width:992px){

    .event-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .event-showcase{

        padding:100px 0;
    }

    .event-grid{

        grid-template-columns:1fr;
    }

    .event-card.large,
    .event-card.wide{

        grid-column:auto;
        grid-row:auto;
    }

    .event-showcase .services-heading h2{

        font-size:1.5rem;
    }

    .overlay h3{

        font-size:1.0rem;
    }

    .event-card.large .overlay h3{

        font-size:1.4rem;
    }
}
/* ===================================
   SERVICES PREMIUM TALENTS
=================================== */

.services-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    linear-gradient(
    90deg,
    #f7fafc 0%,
    #f7fafc 45%,
    #dff8fd 100%);
}

/* GLOW AZUL */

.services-section::before{

    content:'';

    position:absolute;

    top:-250px;
    right:-250px;

    width:850px;
    height:850px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(30,201,243,.35),
    transparent 70%);
}

/* LINHAS DECORATIVAS */

.services-section::after{

    content:'';

    position:absolute;

    right:-250px;
    top:-100px;

    width:900px;
    height:900px;

    border-radius:50%;

    border:
    1px solid rgba(255,255,255,.35);

    box-shadow:
    0 0 0 120px rgba(255,255,255,.12),
    0 0 0 240px rgba(255,255,255,.08),
    0 0 0 360px rgba(255,255,255,.05);

    pointer-events:none;
}

/* HEADER */

.services-heading{

    text-align:center;

    max-width:780px;

    margin:0 auto 90px;

    position:relative;

    z-index:10;
}

.services-heading span{

    width:100px;

    height:5px;

    display:block;

    margin:0 auto 18px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #1ec9f3,
    #56c271,
    #f2c94c);
}

.services-heading small{

    display:block;

    margin-bottom:20px;

    color:#179dc5;

    letter-spacing:4px;

    font-weight:700;

    font-size:.8rem;
}

.services-heading h2{

    font-size:clamp(
    1.6rem,
    4vw,
    3.2rem);

    line-height:1.05;

    color:#072a52;

    font-weight:800;

    margin-bottom:22px;
}

.services-heading h2 strong{

    color:#2ca8d6;
}

.services-heading p{

    color:#526176;

    font-size:1.0rem;

    line-height:1.9;
}

/* GRID */

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:24px;

    position:relative;

    z-index:10;
}

/* CARD */

.service-card{

    position:relative;

    overflow:hidden;

    min-height:290px;

    padding:35px;

    border-radius:24px;

    background:
    rgba(255,255,255,.60);

    backdrop-filter:
    blur(14px);

    border:
    1px solid rgba(255,255,255,.8);

    box-shadow:
    0 12px 30px rgba(0,0,0,.05);

    transition:.4s ease;
}

.service-card:hover{

    transform:
    translateY(-10px);

    box-shadow:
    0 30px 60px rgba(0,0,0,.08);
}

/* LINHAS COLORIDAS */

.service-blue{

    border-left:
    6px solid #1ec9f3;
}

.service-cyan{

    border-left:
    6px solid #19d3d1;
}

.service-green{

    border-left:
    6px solid #56c271;
}

.service-yellow{

    border-left:
    6px solid #f2c94c;
}

/* ÍCONE */

.service-icon{

    width:68px;
    height:68px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.8);

    border:
    1px solid rgba(30,201,243,.15);

    margin-bottom:28px;
}

.service-icon i{

    font-size:26px;

    color:#1aa9d6;
}

/* NÚMERO */

.service-number{

    position:absolute;

    top:15px;
    right:28px;

    font-size:5.5rem;

    line-height:1;

    font-weight:300;

    color:
    rgba(30,201,243,.12);
}

/* TITULO */

.service-card h3{

    color:#08264d;

    font-size:1.2rem;

    font-weight:700;

    margin-bottom:18px;

    line-height:1.3;
}

/* LINHA */

.service-card h3::after{

    content:'';

    display:block;

    width:45px;
    height:3px;

    margin-top:12px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #1ec9f3,
    #56c271);
}

/* TEXTO */

.service-card p{

    color:#56667c;

    line-height:1.9;

    font-size:1rem;
}

/* BOTÃO */

.services-cta{

    display:flex;

    justify-content:flex-end;

    margin-top:50px;

    position:relative;

    z-index:10;
}

.services-btn{

    display:flex;

    align-items:center;

    gap:18px;

    padding:18px 34px;

    border-radius:999px;

    text-decoration:none;

    color:white;

    font-weight:600;

    background:
    linear-gradient(
    90deg,
    #072a52,
    #1ec9f3);

    box-shadow:
    0 18px 35px rgba(30,201,243,.25);

    transition:.35s ease;
}

.services-btn i{

    width:42px;
    height:42px;

    border-radius:50%;

    background:white;

    color:#1ec9f3;

    display:flex;

    align-items:center;
    justify-content:center;
}

.services-btn:hover{

    transform:
    translateY(-4px);
}

/* RESPONSIVO */

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .services-section{

        padding:90px 0;
    }

    .services-grid{

        grid-template-columns:1fr;
    }

    .services-heading h2{

        font-size:1.5rem;
    }

    .service-number{

        font-size:4rem;
    }

    .services-cta{

        justify-content:center;
    }
}
.footer{

    background:#0f172a;

    color:white;

    padding:90px 0 5px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr
    1fr
    1fr
    1fr;

    gap:60px;

    margin-bottom:60px;
}

.footer-logo{
    height:120px;
    margin-bottom:25px;
}

.footer-about{

    color:#cbd5e1;

    line-height:1.9;

    max-width:420px;

}

.footer h4{

    margin-bottom:25px;

    font-size:1.1rem;
}

.footer ul{

    list-style:none;
}

.footer ul li{

    margin-bottom:12px;

    color:#cbd5e1;
}

.footer ul li a{

    text-decoration:none;

    color:#cbd5e1;

    transition:.3s;
}

.footer ul li a:hover{

    color:#42c6d5;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:5px;

    text-align:center;

    color:#94a3b8;
}
.footer-social{

    display:flex;

    align-items:center;

    gap:12px;

    margin-top:25px;
}

.footer-social span{

    color:#ffffff;

    font-size:.95rem;

    font-weight:500;
}

.footer-social a{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    color:#ffffff;

    font-size:15px;

    transition:.35s ease;
}

.footer-social a:hover{

    background:#43c4d3;

    transform:translateY(-3px);
}
@media(max-width:992px){

    .footer-grid{

        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:768px){


    .footer-grid{

        grid-template-columns:1fr;
    }
    .footer-about{

    color:#cbd5e1;

    font-size:0.76rem;

    max-width:420px;

}
}
/* =========================================
   FOOTER MOBILE
========================================= */

@media (max-width:768px){

.footer-brand{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.footer-logo{

    height:75px;

    margin-bottom:0;

    flex-shrink:0;

}


.footer-social{

    justify-content:center;

    margin-top:20px;

}

.footer h4{

    margin-bottom:18px;

    font-size:1rem;

}

.footer-bottom{

    font-size:.78rem;

    padding-top:15px;

}

}
@media (max-width:768px){

.footer ul li{

    font-size:0.82rem;

    margin-bottom:8px;

    line-height:1.2;

}

}
/*=================================
            CLIENTES PREMIUM
=================================*/

.clients-section{

    position:relative;

    padding:140px 0;

    overflow:hidden;

    background:
    linear-gradient(
    90deg,
    #f7fafc 0%,
    #f7fafc 45%,
    #dff8fd 100%);
}

/* GLOW */

.clients-section::before{

    content:'';

    position:absolute;

    top:-250px;
    right:-250px;

    width:850px;
    height:850px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(30,201,243,.25),
    transparent 70%);
}

/* LINHAS DECORATIVAS */

.clients-section::after{

    content:'';

    position:absolute;

    right:-250px;
    top:-100px;

    width:900px;
    height:900px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.35);

    box-shadow:
    0 0 0 120px rgba(255,255,255,.12),
    0 0 0 240px rgba(255,255,255,.08),
    0 0 0 360px rgba(255,255,255,.05);
}

/* HEADER */

.clients-header{

    text-align:center;

    max-width:780px;

    margin:0 auto 90px;

    position:relative;

    z-index:10;
}

.clients-header small{

    display:block;

    margin-bottom:20px;

    color:#179dc5;

    letter-spacing:4px;

    font-weight:700;

    font-size:.8rem;
}

.clients-header .section-line{

    width:100px;

    height:5px;

    display:block;

    margin:0 auto 18px;

    border-radius:999px;

    background:
    linear-gradient(
    90deg,
    #1ec9f3,
    #56c271,
    #f2c94c);
}

.clients-header h2{

    font-size:clamp(
    2.1rem,
    4vw,
    2.8rem);
    line-height:1.1;
    color:#072a52;
    font-weight:800;

    margin-bottom:20px;
}

.clients-header h2 strong{

    color:#2ca8d6;
}

.clients-header p{

    color:#526176;

    font-size:1rem;

    line-height:1.9;
}

/* GRID */

.clients-grid{

    display:grid;

    grid-template-columns:
    repeat(6,1fr);

    gap:18px;

    position:relative;

    z-index:10;
}

/* CARD */

.client-item{

    position:relative;

    height:110px;

    border-radius:20px;

    background:
    rgba(255,255,255,.65);

    backdrop-filter:
    blur(12px);

    border:
    1px solid rgba(255,255,255,.85);

    display:flex;

    align-items:center;

    justify-content:center;

    padding:15px;

    overflow:hidden;

    transition:.4s ease;

    box-shadow:
    0 8px 20px rgba(15,23,42,.04);
}

/* BRILHO */

.client-item::after{

    content:'';

    position:absolute;

    top:0;
    left:-150%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.35),
    transparent);

    transition:1s;
}

.client-item:hover::after{

    left:150%;
}

.client-item:hover{

    transform:
    translateY(-6px);

    box-shadow:
    0 18px 35px rgba(15,23,42,.08);
}

/* LOGOS */

.client-item img{

    width:100%;

    max-width:120px;

    max-height:55px;

    object-fit:contain;

    opacity:1;

    filter:none;

    transition:.35s ease;
}

.client-item:hover img{

    transform:scale(1.05);
}

/* TABLET */

@media(max-width:1200px){

    .clients-grid{

        grid-template-columns:
        repeat(4,1fr);
    }

    .client-item{

        height:100px;
    }

    .client-item img{

        max-width:105px;

        max-height:50px;
    }
}

/* MOBILE */

@media(max-width:768px){

    .clients-section{

        padding:100px 0;
    }

    .clients-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:14px;
    }

    .client-item{

        height:85px;

        padding:12px;
    }

    .client-item img{

        max-width:90px;

        max-height:40px;
    }

    .clients-header h2{

        font-size:2rem;
    }
}
.whatsapp-contact{
    position:fixed;
    right:25px;
    bottom:25px;
    display:flex;
    align-items:center;
    gap:10px;
    padding:14px 20px;
    border-radius:50px;
    background:linear-gradient(135deg,#25D366,#1ebe5d);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    z-index:9999;
    box-shadow:0 12px 30px rgba(37,211,102,.35);
    transition:.3s;
}

.whatsapp-contact i{
    font-size:28px;
}

.whatsapp-contact:hover{
    transform:translateY(-4px);
}
/* ==========================================================
   WHATSAPP - MOBILE
==========================================================*/

@media (max-width:768px){

.whatsapp-contact{

    right:18px;

    bottom:18px;

    width:58px;

    height:58px;

    padding:0;

    border-radius:50%;

    justify-content:center;

    gap:0;

    box-shadow:0 10px 25px rgba(37,211,102,.35);

}

.whatsapp-contact span{

    display:none;

}

.whatsapp-contact i{

    font-size:30px;

}

.whatsapp-contact:hover{

    transform:scale(1.08);

}

}