@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Variáveis CSS */
:root {
    --primary-color: #2563eb;
    --primary-color-dark: #1e40af;
    --secondary-color: #00ff00;
    --dark-bg: #000000;
    --dark-bg-2: #1a1a1a;
    --dark-bg-3: #2a2a2a;
    --light-text: #ffffff;
    --light-text-2: #cccccc;
    --accent-color: #2592eb;
    --font-primary: 'Roboto', sans-serif;
    --font-secondary: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
}

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; 
  transition: opacity 0.5s ease;
}

canvas {
      position: fixed;
      top: 0;
      left: 0;
      z-index: -1;
    }

.logo-animation {
  color: #1094ae; 
  font-family: "Raleway", sans-serif;
  font-size: 4rem;
  letter-spacing: 5px;
  animation: netflix-intro 3s forwards;
}

@keyframes netflix-intro {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

body {
    font-family: var(--font-primary);
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 45px;
    margin-left: 10px;
}

.section-header h2 {
    font-family: var(--font-secondary);
    font-size: 32px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.section-header span {
    color: #3b82f6;
}

.header-line {
    width: 100px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 0 auto;
    position: relative;
}

.header-line::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 4px;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn i {
    margin-left: 10px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--primary-color-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border: 1px solid rgba(56, 189, 248, 0.5);
}


.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Partículas e Overlay */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -10;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 30, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 34, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    opacity: 0.3;
}

.space-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    display: flex;
    justify-content: center;
}

/* Container centralizado */
.nav-container {
    margin-top: 20px;
    padding: 10px 40px;
    border-radius: 40px;
    
    /* vidro + blur */
    background: rgba(0, 10, 30, 0.4);
    backdrop-filter: blur(10px);

    /* borda glow azul */
    border: 1px solid rgba(0, 170, 255, 0.2);
    
    /* glow externo */
    box-shadow: 
        0 0 10px rgba(0, 170, 255, 0.2),
        inset 0 0 10px rgba(0, 170, 255, 0.1);
}

/* Menu */
.nav-menu {
    display: flex;
    gap: 40px;
}

/* Links */
.nav-menu a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #cfe9ff;
    text-decoration: none;
    position: relative;
    transition: 0.3s;
}

/* Pontinhos entre itens */
.nav-menu li {
    position: relative;
}

.nav-menu li::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #00aaff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00aaff;
}

.nav-menu li:last-child::after {
    display: none;
}

/* Hover futurista */
.nav-menu a:hover {
    color: #00aaff;
    text-shadow: 0 0 8px #00aaff;
}

/* Item ativo (HOME) */
.nav-menu a.active {
    color: #ffffff;
    text-shadow: 0 0 10px #00aaff;
}

/* Linha superior fina (igual da imagem) */
.space-navbar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 80%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,170,255,0.6),
        transparent
    );
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('../img/background.jpeg') center/cover no-repeat;
    overflow: hidden;
    min-height: 100vh;
    justify-content: center; 
    text-align: center;
}

/* OVERLAY ESTILO ESPACIAL */
.hero-overlay {
   position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(0,0,0,0.85) 0%,
            rgba(0,0,0,0.6) 40%,
            rgba(0,0,0,0.2) 70%,
            transparent 100%
        );
}

/* CONTEÚDO */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;   
    justify-content: center;
    text-align: center;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #ffffff;

    position: relative;
    z-index: 1;
}

.hero-text h1::before {
    content: "Arthur Demétrio"; /* mesmo texto */
    
    position: absolute;
    left: 0;
    top: 0;

    color: #00e5ff;

    filter: blur(18px);
    opacity: 0.9;

    z-index: -1;
    transform: scale(0.9);
}

.hero-text span {
    color: #4cc9f0;
}

.subtitle {
    margin-top: 10px;
    letter-spacing: 4px;
    color: #4cc9f0;
    font-weight: 600;
    font-size: 1.5rem;
}

.description {
    margin-top: 10px;
    color: #aaa;
    max-width: 500px;
}

/* TAGLINE */
.hero-tagline {
    font-size: 1.1rem;
    color: #cbd5f5;
    margin-bottom: 30px;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
   padding: 12px 32px;
    border-radius: 10px;

    background: linear-gradient(135deg, #1e5d8a, #25aceb);
    color: #fff;

    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border: 1px solid rgba(0, 170, 255, 0.3);

    box-shadow:
        0 0 15px rgba(0, 170, 255, 0.3),
        inset 0 0 10px rgba(0, 170, 255, 0.2);

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.4),
        transparent
    );

    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 120%;
}

/* HOVER */
.btn-primary:hover {
    transform: translateY(-2px);

    box-shadow:
        0 0 25px rgba(0, 170, 255, 0.6),
        inset 0 0 15px rgba(0, 170, 255, 0.3);
}

.btn-outline {
    padding: 12px 32px;
    border-radius: 10px;

    background: rgba(0, 10, 30, 0.4);
    backdrop-filter: blur(10px);

    color: #4cc9f0;

    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    border: 1px solid rgba(0, 170, 255, 0.4);

    box-shadow:
        inset 0 0 10px rgba(0, 170, 255, 0.2);

    transition: 0.3s ease;
}

/* HOVER */
.btn-outline:hover {
    color: #fff;

    border: 1px solid rgba(0, 170, 255, 0.8);

    box-shadow:
        0 0 20px rgba(0, 170, 255, 0.4),
        inset 0 0 15px rgba(0, 170, 255, 0.3);

    transform: translateY(-2px);
}

/* CARDS CONTAINER */
.hero-cards {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

/* CARD */
.card {
    flex: 1;
    padding: 30px;
    border-radius: 16px;

    background: rgba(10, 25, 50, 0.4);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(59, 130, 246, 0.2);

    /* glow interno + externo */
    box-shadow:
        inset 0 0 20px rgba(59, 130, 246, 0.1),
        0 0 20px rgba(0, 0, 0, 0.5);

    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* LINHA SUPERIOR GLOW */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #4cc9f0,
        transparent
    );
    opacity: 0.6;
}

/* TEXTO */
.card h2 {
    font-size: 2rem;
    color: #4cc9f0;
}

.card p {
    margin-top: 10px;
    color: #aaa;
}

/* HOVER PROFISSIONAL */
.card:hover {
    transform: translateY(-8px) scale(1.02);

    border: 1px solid rgba(76, 201, 240, 0.6);

    box-shadow:
        0 0 25px rgba(76, 201, 240, 0.2),
        inset 0 0 25px rgba(76, 201, 240, 0.15);
}

.space-card {
    width: 260px;
    padding: 55px;
    border-radius: 12px;

    /* fundo */
    background: linear-gradient(
        180deg,
        rgba(5, 15, 30, 0.9),
        rgba(2, 10, 20, 0.95)
    );

    /* borda glow */
    border: 1px solid rgba(0, 170, 255, 0.2);

    /* glow externo */
    box-shadow:
        0 0 20px rgba(0, 170, 255, 0.15),
        inset 0 0 20px rgba(0, 170, 255, 0.05);

    color: white;
    font-family: 'Raleway', sans-serif;

    position: relative;
    overflow: hidden;
}

/* brilho inferior */
.space-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #00aaff,
        transparent
    );
    opacity: 0.7;
}

/* topo (ícone + número) */
.card-top {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* ícone */
.icon {
    font-size: 28px;
    color: #00aaff;
    text-shadow: 0 0 10px #00aaff;
}

/* número */
.card-top h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* linha divisória */
.divider {
    margin: 15px 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #00aaff,
        transparent
    );
    opacity: 0.6;
}

/* textos */
.card-text {
    text-align: center;
}

.card-text h3 {
    margin: 2px 0;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #ccc;
}

.card-text .highlight {
    color: #00aaff;
}

/* hover suave */
.space-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 0 30px rgba(0, 170, 255, 0.3),
        inset 0 0 25px rgba(0, 170, 255, 0.1);
}

.icon img {
    width: 86px;
    height: 86px;
    object-fit: contain;

    /* glow azul */
    filter: 
        drop-shadow(0 0 6px #00aaff)
        drop-shadow(0 0 12px #00aaff);

    opacity: 0.9;
}

#img-alvo {
    height: 98px;
    width: 98px;
}

/*Títuulo Sections*/

.title-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;

    position: relative;
    z-index: 1;
}

.title-text h1::before {
    content: "ABOUT ME"; /* mesmo texto */
    
    position: absolute;
    left: 0;
    top: 0;

    color: #00e5ff;

    filter: blur(18px);
    opacity: 0.9;

    z-index: -1;
    transform: scale(0.9);
}

.title-text span {
    color: #4cc9f0;
}

/* Sobre Section */

.sobre {
    display: flex;
    min-height: 100vh;
    overflow: hidden;
    align-items: center;
}

.sobre-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    z-index: 3;
    padding: 40px 0;
}

.sobre-left {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
    margin-left: 150px;
}

.sobre-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #38bdf8, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sobre-description {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 30px;
}

.sobre-topicos {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.topico {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.topico img {
    width: 85px;
    filter: drop-shadow(0 0 10px rgba(0,170,255,0.5));
}

.topico h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.topico p {
    margin: 5px 0 0;
    color: #94a3b8;
    font-size: 0.95rem;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 10px;
    border: 1px solid rgba(0,170,255,0.5);
    color: #38bdf8;
    text-decoration: none;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    width: fit-content;
}

.btn-outline:hover {
    background: rgba(0,170,255,0.1);
    box-shadow: 0 0 20px rgba(0,170,255,0.4);
}

.sobre-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
     margin-top: 80px;
     margin-right: 150px;
}

.sobre-right img {
    width: 400px;
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(0,170,255,0.3),
        0 0 80px rgba(0,170,255,0.1);
    transition: 0.4s;
}

.sobre-right img:hover {
    transform: scale(1.03);
}

.section-header {
    text-align: left;
    margin-bottom: 50px;
}

.header-line {
    margin-left: 0;
}

.sobre-text {
    flex: 1;
}

.sobre-highlight {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #3b82f6, #38bdf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sobre-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--light-text-2);
}

.header-line {
    width: 80px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    border-radius: 5px;
    animation: lineGrow 1.2s ease forwards;
}

@keyframes lineGrow {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

.sobre-text {
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #38bdf8;

    background: rgba(0, 170, 255, 0.08);
    border: 1px solid rgba(0, 170, 255, 0.3);

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;

    /* glow base */
    box-shadow: 0 0 10px rgba(0, 170, 255, 0.3);
    position: relative;
}

/* HOVER NEON FORTE */
.icon:hover {
    transform: translateY(-6px) scale(1.05);

    color: #ffffff;

    box-shadow:
        0 0 15px rgba(0, 170, 255, 0.6),
        0 0 30px rgba(0, 170, 255, 0.5),
        0 0 60px rgba(0, 170, 255, 0.3);

    border-color: rgba(0, 170, 255, 0.8);
}

.icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.2);
    filter: blur(15px);
    opacity: 0;
    transition: 0.3s;
}

.icon:hover::before {
    opacity: 1;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background-color: var(--dark-bg-2);
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
    flex: 1;
    margin: 0 10px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px #2564eb1d;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.image-container {
    position: relative;
    width: 400px;
    height: 300px;
}

.image-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    overflow: hidden;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.status-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.95rem;
    color: #94a3b8;
}

/* localização */
.location {
    display: flex;
    align-items: center;
    gap: 5px;
}

.location i {
    color: #38bdf8;
    filter: drop-shadow(0 0 6px rgba(0,170,255,0.6));
}

/* divisor */
.divider {
    opacity: 0.5;
}

/* status */
.status {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* bolinha animada */
.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;

    box-shadow: 
        0 0 8px #22c55e,
        0 0 15px #22c55e;

    animation: pulse 1.5s infinite;
}

/* animação */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.top-left {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: -2px;
    right: -2px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: -2px;
    left: -2px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--dark-bg-2), var(--dark-bg-3));
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.tech-overlay::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 0, 0, 0.1) 10px,
        rgba(255, 0, 0, 0.1) 20px
    );
    animation: move-bg 20s linear infinite;
}

@keyframes move-bg {
    0% {
        transform: translate(-10%, -10%);
    }
    100% {
        transform: translate(10%, 10%);
    }
}

/* --- SEÇÃO HARDSKILLS --- */
    .hardskills-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 70px;
        margin-top: 60px;

    }

    /* LADO ESQUERDO */
    .hardskills-left {
        flex: 1;
        padding-left: 150px;
    }

    /* LADO DIREITO */
    .hardskills-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    @media (max-width: 1000px) {
    .hardskills-wrapper {
        flex-direction: column;
    }

    #orbit-container {
        width: 350px;
        height: 350px;
    }
}

    /* ÓRBITA RESPONSIVA */
    #orbit-container {
        width: 500px;
        height: 500px;
    }
    .conteudo-hardskills {
        margin-top: 40px;
    }

    .hardskill-content {
        display: grid;
        gap: 25px;
        margin-top: 40px;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    } 

    .hardskill-content.hidden {
        opacity: 0;
        transform: translateY(20px);
    }

    .hardskill-content:not(.hidden) {
        opacity: 1;
        transform: translateY(0);
        transition: 0.4s ease;
    }

    .categorias {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 12px;
        max-width: 1200px;
        margin: 30px 0;
        padding-bottom: 50px;
    }

    .categoria-item {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;

        height: auto; 
        min-width: unset;
        max-width: unset;

        padding: 10px 18px;

        font-size: 13px;
        border-radius: 8px;
        line-height: 1.2; 

        cursor: pointer;
        transition: all 0.3s easy;

        white-space: normal;
        background: rgba(15, 23, 42, 0.6);
        backdrop-filter: blur(6px);
        border: 1px solid rgba(59,130,246,0.2);
    }

    .categoria-item::after {
        content: "";
        position: absolute;
        bottom: -5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #3b82f6, #38bdf8);
        transition: 0.3s;
        transform: translateX(-50%);
        display: none;
    }

    .categoria-item:hover {
        background: rgba(59,130,246,0.15);
        transform: translateY(-2px);
    }


   .categoria-item.active {
        background: linear-gradient(90deg, #3b82f6, #38bdf8);
        box-shadow: 
            0 0 10px rgba(59,130,246,0.5),
            0 0 25px rgba(56,189,248,0.2);
    }

    .categoria-item.active::after {
        width: 100%;
    }

    .categoria-item.active {
        background: linear-gradient(90deg, #3b82f6, #38bdf8);
        color: white;
        border-radius: 5px;
    }

    .hidden {
        display: none;
    }

   .logo-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
     background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.95),
        rgba(2, 6, 23, 0.9)
    );

    border: 1px solid rgba(59,130,246,0.2);

    backdrop-filter: blur(10px);

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

    transition: all 0.4s ease;

    overflow: hidden;
}

.logo-item::before {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at top left,
        rgba(56,189,248,0.25),
        transparent 60%
    );

    opacity: 0;
    transition: 0.4s;
}


.logo-item:hover::before {
    opacity: 1;
}

.logo-item::after {
    content: "";
    position: absolute;
    inset: -1px;

    border-radius: 16px;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(56,189,248,0.5),
        transparent
    );

    opacity: 0;
    transition: 0.4s;
}

.logo-item:hover::after {
    opacity: 1;
    filter: blur(8px);
}

.hardskill-content .icon-blue {
    font-size: 3rem;
    color: #38bdf8;
    text-shadow:
        0 0 8px rgba(56,189,248,0.6),
        0 0 20px rgba(59,130,246,0.3);
}

/*

.icon-blue{
    font-size: 3rem;

    color: #38bdf8;

    text-shadow:
        0 0 8px rgba(56,189,248,0.6),
        0 0 20px rgba(59,130,246,0.3);

    transition: 0.3s;
}

.icon-blue:hover {
    transform: scale(1.15);
}
    */

.logo-item p {
    margin-top: 12px;
    font-size: 14px;
    color: #cbd5f5;
    letter-spacing: 0.5px;
}

/* --- LINHAS VERTICAIS (Esquerda e Direita) --- */
.logo-item span.border-v::before,
.logo-item span.border-v::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, #9acdff, #2b5ce2);
  transition: height 0.8s ease;
}

.logo-item span.border-v::before { left: 0; bottom: 0; }
.logo-item span.border-v::after { right: 0; top: 0; }

/* --- ATIVAÇÃO DAS LINHAS NO HOVER --- */
.logo-item:hover::before,
.logo-item:hover::after {
  width: 100%;
}

.logo-item:hover span.border-v::before,
.logo-item:hover span.border-v::after {
  height: 100%;
}

/* 
.icon-blue:hover {
  animation: gradienteMove 2s linear infinite;
  transform: scale(1.1);
}
  */

.logo-item span {
  font-weight: bold;
  font-size: 1.1rem;
  color: #fff;
  white-space: nowrap;
}

@keyframes gradienteMove {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}


/* --- SEÇÃO PROJETOS --- */
.projetos-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 70px;
  margin-top: 60px;
  align-items: center;
  width: 100%;
}

.conteudo-projetos {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 383px));
    justify-content: center;
    gap: 25px;
}

.project-card {
    background: #09050d;
    border-radius: 11px;
    overflow: hidden;
    position: relative;
    cursor: pointer;

    border: 1px solid rgba(255,255,255,0.06);
    box-shadow:
        0 10px 30px rgba(0,0,0,0.45),
        0 0 0 rgba(51, 0, 255, 0);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: 28px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(162, 0, 255, 0.35), rgba(255, 0, 85, 0.18), rgba(255,255,255,0.06));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.project-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(140, 0, 255, 0.28);
    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(144, 0, 255, 0.12),
        0 0 50px rgba(72, 0, 255, 0.08);
}

.project-card::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    background: radial-gradient(circle, rgba(136, 0, 255, 0.22), transparent 70%);
    pointer-events: none;
    opacity: 0.8;
    transition: 0.4s ease;
}

.project-card:hover::after {
    transform: scale(1.1);
    opacity: 1;
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #1e0b20;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.project-card:hover img {
    transform: scale(1.08);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(9, 5, 13, 0.1) 0%, rgba(10, 5, 13, 0.18) 30%, rgba(11, 5, 13, 0.82) 100%);
    pointer-events: none;
}

.project-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 3;

    background: rgba(14, 10, 18, 0.92);
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

.project-content {
    position: relative;
    background: #07050d;
    padding: 34px 28px 24px;
}

.project-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.project-content h3 {
    margin: 0;
    color: #f8fafc;
    font-size: 1.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.project-arrow span {
    font-size: 1.35rem;
}

.project-card:hover {
    border-color: rgba(162, 0, 255, 0.35);
    box-shadow: 0 0 18px rgba(123, 0, 255, 0.12);
}

.project-card:hover .project-arrow span {
    transform: translateX(4px);
}

.project-content p {
    margin: 0 0 26px;
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 95%;
}

/* ===== FOOTER ===== */
.project-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===== TECH ICONS ===== */
.project-techs {
    display: flex;
    align-items: center;
}

.tech-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;

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

    background: #1f1a24;
    border: 4px solid #120b19;

    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    font-size: 1.45rem;

    position: relative;
    transition: transform 0.25s ease;
}

.project-techs i {
    font-size: 1.45rem;
}

/* deixa eles bem juntinhos / sobrepostos */
.tech-icon + .tech-icon {
    margin-left: -10px;
}

.tech-icon:hover {
    transform: translateY(-3px);
    z-index: 5;
}

/* ===== BUTTON ===== */
.btn-ver-mais {
    background: transparent;
    border: none;
    padding: 0;

    color: #6200ff;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;

    cursor: pointer;
    transition: color 0.25s ease, transform 0.25s ease;
}

.btn-ver-mais:hover {
    color: #b067f9;
    transform: translateX(2px);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .projetos-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 220px;
    }

    .project-content {
        padding: 30px 22px 22px;
    }

    .project-content h3 {
        font-size: 1.6rem;
    }

    .project-content p {
        font-size: 0.95rem;
    }

    .project-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.85);

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

    z-index: 999;
}

/* ===== TABS ===== */
.modal-tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0 20px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(168, 56, 248, 0.5);
    color: #d8cbe1;
    border: 1px solid rgba(110, 56, 248, 0.15);
    border-radius: 10px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: 0.3s ease;
    margin-bottom: 20px;
}

.tab-btn:hover {
    color: #fff;
    border-color: rgba(168, 56, 248, 0.5);
    box-shadow: 0 0 12px rgba(110, 56, 248, 0.15);
}

.tab-btn.active {
    background: rgba(98, 56, 248, 0.12);
    color: #c238f8;
    border-color: rgba(117, 56, 248, 0.5);
    box-shadow: 0 0 14px rgba(133, 56, 248, 0.18);
}

.modal-tab-content {
    margin-top: 10px;
}

.project-section {
    margin-top: 22px;
}

.project-section h3 {
    font-size: 0.95rem;
    color: #8838f8;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.tab-list {
    padding-left: 18px;
    margin: 0;
}

.tab-list li {
    margin-bottom: 10px;
    color: #a794b8;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ===== MODAL BOX ===== */
.modal-content {
    background: #020617;
    padding: 30px;
    border-radius: 16px;
    min-height: 70vh;
    max-width: 1300px;
    width: 85%;
    position: relative;
    border: 1px solid rgba(156, 59, 246, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    animation: modalFade 0.3s ease;
    overflow: hidden;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== CLOSE BUTTON ===== */
.close {
    position: absolute;
    top: 15px;
    right: 20px;

    font-size: 24px;
    color: #fff;

    cursor: pointer;
}

/* ===== MODAL BODY ===== */
.modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    height: 100%;
    grid-template-columns: 1.3fr 1fr;
}

.project-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.project-meta span {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(110, 56, 248, 0.1);
    color: #8538f8;
    border: 1px solid rgba(152, 56, 248, 0.3);
}

/* ===== FEATURES ===== */
.project-features {
    margin-top: 20px;
}

.project-features ul {
    padding-left: 18px;
}

.project-features li {
    margin-bottom: 6px;
    color: #a594b8;
    font-size: 0.85rem;
}


/* ===== CAROUSEL ===== */
.carousel {
    flex: 1;
    display: flex;
    flex-direction: column; 
    gap: 20px;
}

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

.carousel-main img {
    width: 500px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;

    border: 1px solid rgba(162, 59, 246, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.carousel-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 260px;
    overflow-y: auto;
}

.carousel-thumbs img {
    width: 80px;
    height: 60px;
    object-fit: cover;

    border-radius: 6px;
    cursor: pointer;

    opacity: 0.5;
    border: 2px solid transparent;

    transition: 0.3s;
}

.carousel-thumbs img.active {
    opacity: 1;
    border-color: #7238f8;
}

.carousel-thumbs img:hover {
    opacity: 1;
    transform: scale(1.05);
}

#carousel-techs {
    margin-top: 15px;
    margin-left: 65px;
}



/* ===== MODAL INFO ===== */
.modal-info {
    flex: 1;
    overflow-y: auto;
    padding-right: 6px;
}

.modal-info h2 {
    color: #fff;
    margin-bottom: 15px;
}

.modal-info p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #fff;
}

.btn-video {
    display: inline-block;
    margin-top: 20px;
    margin-left: 65px;
    padding: 12px 18px;
    width: 170px;

    background: linear-gradient(135deg, #cb38f8, #440fd6);
    color: white;

    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;

    transition: 0.3s;
}

.btn-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}


/* ===== TECH TAGS ===== */

.tech-title {
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #38bdf8;
    letter-spacing: 1px;
}

.techs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 8px;

    padding: 6px 10px;
    border-radius: 8px;

    background: rgba(15,23,42,0.8);
    border: 1px solid rgba(56,189,248,0.2);

    font-size: 0.8rem;
    color: #e2e8f0;

    transition: 0.3s;
}

   

/* Contato Section */
.contato-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contato-form {
    flex: 1;
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 40px;
    border-radius: 16px;

    border: 1px solid rgba(59,130,246,0.15);

    box-shadow: 
        0 10px 40px rgba(0,0,0,0.5),
        inset 0 0 20px rgba(59,130,246,0.05);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
   width: 100%;
    padding: 14px 16px;

    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 8px;

    color: #fff;
    font-size: 0.95rem;

    transition: 0.3s;
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.input-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
    display: none;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid rgba(59,130,246,0.6);

    box-shadow: 
        0 0 0 2px rgba(59,130,246,0.2),
        0 0 15px rgba(59,130,246,0.2);
}

.form-group input:focus + .input-line,
.form-group textarea:focus + .input-line {
    width: 100%;
}

.contato-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 16px;

    border-radius: 12px;

    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(59,130,246,0.1);

    transition: 0.3s;
}

.info-item:hover {
    transform: translateY(-3px);

    border: 1px solid rgba(59,130,246,0.4);

    box-shadow: 
        0 10px 30px rgba(59,130,246,0.15);
}

.info-item svg {
    min-width: 45px;
    height: 45px;

    padding: 10px;

    border-radius: 50%;

    background: rgba(59,130,246,0.1);
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--dark-bg-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-text h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-text a {
    color: #94a3b8;
    font-size: 0.9rem;
    transition: 0.3s;
}

.info-text a:hover {
    color: #38bdf8;
}

.info-text p {
    color: var(--light-text-2);
}

.social-media {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg-2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.btn-contact {
    margin-top: 10px;
    width: 100%;

    padding: 14px;

    border-radius: 10px;
    border: none;

    background: linear-gradient(90deg, #3b82f6, #38bdf8);
    color: white;
    font-weight: 500;

    cursor: pointer;
    transition: 0.3s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 10px 20px rgba(59,130,246,0.3),
        0 0 10px rgba(56,189,248,0.2);
}

/* Footer */
footer {
    background-color: var(--dark-bg-2);
    padding: 80px 0 20px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo h2 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--light-text-2);
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-nav h3,
.footer-services h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-nav ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-services ul li a {
    color: var(--light-text-2);
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--dark-bg-3);
}

.footer-bottom p {
    color: var(--light-text-2);
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .sobre-content,
    .contato-content {
        flex-direction: column;
    }
    
    .sobre-image {
        margin-top: 50px;
    }
    
    .stats-container {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-text p {
        margin: 0 auto 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--dark-bg);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-logo p {
        margin: 0 auto;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-social {
        margin-top: 20px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .tech-circle {
        width: 250px;
        height: 250px;
    }
    
    .circle-inner {
        width: 120px;
        height: 120px;
    }
    
    .stat-item {
        flex: 0 0 100%;
    }
    
    .contato-form {
        padding: 30px 20px;
    }
}


/* Time Section */
.time-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.time-item {
    background-color: var(--dark-bg-2);
    border-radius: 5px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.time-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px #051e5523;
}

.time-photo {
    width: 90px;
    height: 90px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-bg-3);
}

.time-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.time-item h3 {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    margin-bottom: 6px;
    margin-top: 8px;
}

.cargo {
    color: var(--primary-color);
    font-size: 0.97rem;
    margin-bottom: 10px;
}

.descricao {
    color: var(--light-text-2);
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.time-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px; /* Altere para left: 32px; se quiser no lado esquerdo */
    z-index: 9999;
    background: #25d366;
    color: #fff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.17);
    transition: background 0.2s, transform 0.2s;
}

    .whatsapp-float:hover {
        background: #1ebc59;
        transform: scale(1.08);
        color: #fff;
    }
