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

/* =========================
   VARIABLES
========================= */
:root {
    --bg: #0B0B0F;
    --bg-light: #111118;
    --primary: #8B5CF6;
    --secondary: #6366F1;
    --text: #FFFFFF;
    --text-muted: #A1A1AA;
    --border: #1F1F23;
}

/* =========================
   BODY
========================= */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(11, 11, 15, 0.6);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
}

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

.logo {
    font-weight: 700;
    letter-spacing: 1px;
}

/* MENU */
.menu {
    display: flex;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--text);
}

/* BOTÓN NAV */
.btn-nav {
    padding: 10px 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-nav:hover {
    transform: translateY(-2px);
}

/* =========================
   HERO
========================= */
.hero {
    position: relative;
    min-height: 85vh;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

/* GLOW BACKGROUND */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139,92,246,0.25) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    filter: blur(100px);
}

.hero::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99,102,241,0.25) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    filter: blur(100px);
}

/* GRID */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

/* LEFT */
.hero-left {
    z-index: 2;
}

/* BADGE */
.badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* TITLE */
.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* GRADIENT TEXT */
.hero span {
    background: linear-gradient(135deg, #a78bfa, #6366f1);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
}

/* TEXT */
.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* PRIMARY BUTTON */
.btn-primary {
    padding: 14px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

/* SECONDARY BUTTON */
.btn-secondary {
    padding: 14px 24px;
    border-radius: 10px;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

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

/* =========================
   HERO RIGHT (MOCKUP)
========================= */
.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* MOCKUP */
.mockup {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
    animation: floatMockup 6s ease-in-out infinite;
}

/* FLOAT SUAVE MOCKUP */
@keyframes floatMockup {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* FLOATING CARDS */
.floating-card {
    position: absolute;
    width: 130px;
    animation: float 6s ease-in-out infinite;
}

.floating-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* POSICIONES */
.card1 {
    top: 20%;
    left: -40px;
}

.card2 {
    bottom: 10%;
    right: -40px;
    animation-delay: 2s;
}

/* FLOAT GENERAL */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* =========================
   PLACEHOLDER
========================= */
.placeholder {
    padding: 120px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

/* =========================
   MOBILE (ARREGLADO PRO)
========================= */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        min-height: auto;                 /* 🔥 elimina altura forzada */
        padding: 90px 0 30px;             /* menos espacio abajo */
        display: flex;
        align-items: center;
    }

    /* GRID */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* LEFT */
    .hero-left {
        text-align: center;
        max-width: 100%;
    }

    /* BADGE */
    .badge {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    /* TITLE */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    /* TEXT */
    .hero p {
        font-size: 0.95rem;
        padding: 0 10px;
        margin-bottom: 25px;
    }

    /* BUTTONS */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: 10px;
    }

    /* PRIMARY */
    .btn-primary {
        width: 100%;
        max-width: 300px;
        padding: 14px;
    }

    /* SECONDARY */
    .btn-secondary {
        width: auto;
        padding: 12px 20px;
    }

    /* 🔥 IMPORTANTE: ocultamos visual pesado */
    .hero-right {
        display: none;
    }

    /* 🔥 GLOW MÁS SUTIL EN MOBILE */
    .hero::before {
        width: 300px;
        height: 300px;
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
        filter: blur(80px);
    }

    .hero::after {
        width: 250px;
        height: 250px;
        bottom: -50px;
        right: -50px;
        filter: blur(80px);
    }

}

.logos {
    padding: 30px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.logos p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* FILA */
.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos-row img {
    height: 35px;           /* antes 25px */
    opacity: 0.9;           /* más visibles */
    filter: none;           /* 🔥 quita el gris */
    transition: 0.3s ease;
}

/* HOVER PRO */
.logos-row img:hover {
    transform: translateY(-3px) scale(1.05);
    opacity: 1;
}
/* =========================
   SERVICES SECTION
========================= */
.services {
    padding: 50px 0;
    background: linear-gradient(135deg, #0B0B0F, #0f172a);
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* LEFT */
.services-left h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.services-left p {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* RIGHT */
.services-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ITEM */
.service-item {
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

/* HEADER */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.service-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
}

.service-header span {
    font-size: 1.5rem;
    color: var(--text-muted);
}

/* CONTENT */
.service-content {
    max-height: 0;
    overflow: hidden;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: 0.3s ease;
}

/* ACTIVE */
.service-item.active .service-content {
    max-height: 100px;
    margin-top: 10px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .services {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-left h2 {
        font-size: 2.2rem;
    }

}
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: white;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu {
        display: none;
    }

    .btn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    background: #0B0B0F;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
    gap: 20px;

    transform: translateY(-100%);
    opacity: 0;
    transition: 0.3s ease;
    z-index: 999;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

/* ACTIVO */
.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

/* =========================
   ECOSYSTEM SECTION
========================= */
.ecosystem {
    position: relative;
    padding: 20px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
        rgba(139,92,246,0.10),
        transparent 40%),
        #0B0B0F;
}

/* GRID */
.ecosystem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* =========================
   LEFT
========================= */
.ecosystem-left {
    position: relative;
    z-index: 2;
}

/* TAG */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;
    border-radius: 999px;

    background: rgba(139,92,246,0.08);
    border: 1px solid rgba(139,92,246,0.2);

    color: #A78BFA;
    font-size: 0.85rem;
    font-weight: 500;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}

/* TITLE */
.ecosystem-left h2 {
    font-size: 3.3rem;
    line-height: 1.15;
    margin-bottom: 25px;
    max-width: 600px;
}

/* TEXT */
.ecosystem-left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.9;
    max-width: 540px;
    margin-bottom: 40px;
}

/* =========================
   STATS
========================= */
.ecosystem-stats {
    display: flex;
    gap: 18px;
}

/* CARD */
.stat-card {
    padding: 24px;
    border-radius: 22px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    backdrop-filter: blur(14px);

    min-width: 180px;

    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139,92,246,0.3);
}

/* NUMBER */
.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
}

/* TEXT */
.stat-card span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* =========================
   RIGHT
========================= */
.ecosystem-right {
    position: relative;
    height: 600px;

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

/* =========================
   CENTER CIRCLE
========================= */
.center-circle {
    width: 190px;
    height: 190px;
    border-radius: 50%;

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

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    box-shadow:
        0 0 100px rgba(139,92,246,0.45);

    z-index: 3;

    animation: pulseGlow 4s ease-in-out infinite;
}

.center-circle span {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* =========================
   ECO CARDS
========================= */
.eco-card {
    position: absolute;

    width: 160px;

    padding: 14px 16px;

    border-radius: 20px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    display: flex;
    align-items: center;
    gap: 12px;

    transition: 0.35s ease;

    animation: floating 6s ease-in-out infinite;
}

/* HOVER */
.eco-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139,92,246,0.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}

/* ICON */
.eco-card img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* TEXT */
.eco-card span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* =========================
   POSITIONS
========================= */
.shopify {
    top: 40px;
    left: 80px;
}

.mercadolibre {
    top: 90px;
    right: 40px;
    animation-delay: 1s;
}

.meta {
    left: 0;
    bottom: 180px;
    animation-delay: 2s;
}

.google {
    right: 0;
    bottom: 180px;
    animation-delay: 3s;
}

.analytics {
    bottom: 40px;
    left: 120px;
    animation-delay: 1.5s;
}

.falabella {
    bottom: 40px;
    right: 120px;
    animation-delay: 2.5s;
}

/* =========================
   LINES
========================= */
.line {
    position: absolute;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            rgba(139,92,246,0),
            rgba(139,92,246,0.35),
            rgba(139,92,246,0)
        );

    z-index: 1;
}

.line1 {
    width: 180px;
    top: 150px;
    left: 170px;
    transform: rotate(18deg);
}

.line2 {
    width: 180px;
    top: 180px;
    right: 150px;
    transform: rotate(-18deg);
}

.line3 {
    width: 180px;
    bottom: 170px;
    left: 120px;
    transform: rotate(-18deg);
}

.line4 {
    width: 180px;
    bottom: 170px;
    right: 120px;
    transform: rotate(18deg);
}

/* =========================
   ANIMATIONS
========================= */
@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }

}

@keyframes pulseGlow {

    0% {
        box-shadow:
            0 0 60px rgba(139,92,246,0.30);
    }

    50% {
        box-shadow:
            0 0 100px rgba(139,92,246,0.50);
    }

    100% {
        box-shadow:
            0 0 60px rgba(139,92,246,0.30);
    }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .ecosystem {
        padding: 70px 0;
    }

    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* LEFT */
    .ecosystem-left {
        text-align: center;
    }

    .ecosystem-left h2 {
        font-size: 2.2rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .ecosystem-left p {
        margin: 0 auto 25px;
        font-size: 0.95rem;
        line-height: 1.7;
        max-width: 95%;
    }

    /* STATS */
    .ecosystem-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .stat-card {
        min-width: 140px;
        padding: 18px;
    }

    .stat-card h3 {
        font-size: 1.6rem;
    }

    /* RIGHT */
    .ecosystem-right {
        height: 340px;
        transform: scale(0.75);
        margin-top: -30px;
    }

    /* CENTER */
    .center-circle {
        width: 130px;
        height: 130px;
    }

    .center-circle span {
        font-size: 1rem;
    }

    /* CARDS */
    .eco-card {
        width: 120px;
        padding: 10px;
    }

    .eco-card img {
        width: 22px;
        height: 22px;
    }

    .eco-card span {
        font-size: 0.75rem;
    }

    /* LINES */
    .line {
        display: none;
    }

}
/* =========================
   SERVICES PREMIUM
========================= */
.services-premium {
    position: relative;
    padding: 30px 0;
    overflow: hidden;

    background:
        radial-gradient(
            circle at top right,
            rgba(139,92,246,0.08),
            transparent 35%
        ),
        #0B0B0F;
}

/* =========================
   TOP CONTENT
========================= */
.services-top {
    text-align: center;
    margin-bottom: 70px;
}

/* TAG */
.services-top .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(139,92,246,0.08);

    border:
        1px solid rgba(139,92,246,0.2);

    color: #A78BFA;

    font-size: 0.85rem;
    font-weight: 500;

    margin-bottom: 25px;

    backdrop-filter: blur(10px);
}

/* TITLE */
.services-top h2 {
    font-size: 2.5rem;
    line-height: 1.2;

    max-width: 750px;

    margin: 0 auto 25px;
}

/* TEXT */
.services-top p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 1rem;
    line-height: 1.8;
}

/* =========================
   GRID
========================= */
.services-cards {
    display: grid;

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

    gap: 24px;
}

/* =========================
   CARD
========================= */
.premium-card {
    position: relative;

    min-height: 320px;

    padding: 32px;

    border-radius: 28px;

    background:
        rgba(255,255,255,0.03);

    border:
        1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    overflow: hidden;

    transition: 0.35s ease;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* REMOVE LARGE CARDS */
.premium-card.large {
    grid-column: span 1;
}

/* HOVER */
.premium-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(139,92,246,0.35);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35);
}

/* GLOW EFFECT */
.premium-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background:
        radial-gradient(
            circle,
            rgba(139,92,246,0.15),
            transparent 70%
        );

    top: -100px;
    right: -100px;

    opacity: 0;

    transition: 0.4s ease;
}

.premium-card:hover::before {
    opacity: 1;
}

/* =========================
   ICON
========================= */
.card-icon {
    width: 58px;
    height: 58px;

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

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(139,92,246,0.2),
            rgba(99,102,241,0.2)
        );

    border:
        1px solid rgba(139,92,246,0.2);

    font-size: 1.5rem;

    margin-bottom: 24px;
}

/* =========================
   TITLE
========================= */
.premium-card h3 {
    font-size: 1.35rem;
    line-height: 1.3;

    margin-bottom: 16px;
}

/* =========================
   TEXT
========================= */
.premium-card p {
    color: var(--text-muted);

    line-height: 1.8;

    font-size: 0.95rem;

    margin-bottom: 28px;
}

/* =========================
   TAGS
========================= */
.card-tags {
    display: flex;
    flex-wrap: wrap;

    gap: 10px;
}

/* TAG */
.card-tags span {
    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.05);

    border:
        1px solid rgba(255,255,255,0.06);

    color: var(--text-muted);

    font-size: 0.8rem;

    transition: 0.3s ease;
}

/* TAG HOVER */
.card-tags span:hover {
    border-color:
        rgba(139,92,246,0.35);

    color: white;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 992px) {

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

}

@media (max-width: 768px) {

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

    /* TOP */
    .services-top {
        margin-bottom: 45px;
    }

    .services-top h2 {
        font-size: 2.1rem;
        line-height: 1.25;

        max-width: 95%;
    }

    .services-top p {
        font-size: 0.95rem;
        line-height: 1.7;

        max-width: 95%;
    }

    /* GRID */
    .services-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    /* CARD */
    .premium-card {
        min-height: auto;

        padding: 26px;
    }

    /* ICON */
    .card-icon {
        width: 52px;
        height: 52px;

        font-size: 1.3rem;
    }

    /* TITLE */
    .premium-card h3 {
        font-size: 1.2rem;
    }

    /* TEXT */
    .premium-card p {
        font-size: 0.92rem;
    }

    /* TAGS */
    .card-tags span {
        font-size: 0.75rem;
    }

}
/* =========================
   CLIENTES
========================= */

.clientes-section{
    padding: 120px 0;
    background: #050505;
}

.clientes-title{
    font-size: 52px;
    color: white;
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.clientes-subtitle{
    color: rgba(255,255,255,.6);
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 60px;
    font-size: 18px;
}

.clientes-grid{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cliente-card{
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    border-radius: 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    transition: .4s ease;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.cliente-card:hover{
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.05);
}

.cliente-card::after{
    content: "↗";
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255,255,255,.5);
    font-size: 22px;
    transition: .3s ease;
}

.cliente-card:hover::after{
    transform: translate(4px,-4px);
    color: white;
}

.cliente-logo{
    min-width: 140px;
}

.cliente-logo img{
    width: 140px;
    object-fit: contain;
}

.cliente-content h3{
    color: white;
    font-size: 32px;
    margin-bottom: 16px;
}

.cliente-content p{
    color: rgba(255,255,255,.7);
    line-height: 1.8;
    max-width: 700px;
    font-size: 16px;
}

.resultado{
    display: inline-block;
    margin-top: 24px;
    padding: 12px 18px;
    background: white;
    color: black;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

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

    .clientes-title{
        font-size: 36px;
    }

    .clientes-subtitle{
        font-size: 16px;
    }

    .cliente-card{
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 24px;
    }

    .cliente-logo{
        min-width: auto;
    }

    .cliente-logo img{
        width: 110px;
    }

    .cliente-content h3{
        font-size: 28px;
    }

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

.footer{
    background: #050505;
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-top{
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo{
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.footer-brand p{
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 28px;
}

.footer-badge{
    display: inline-flex;
    align-items: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(124,77,255,.12);
    border: 1px solid rgba(124,77,255,.2);
    color: #9b7cff;
    font-size: 14px;
    font-weight: 500;
}

.footer-links h4,
.footer-contact h4{
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a{
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: .3s ease;
}

.footer-links a:hover{
    color: white;
}

.footer-contact p{
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-bottom{
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,.4);
    font-size: 14px;
}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer{
        padding: 80px 0 30px;
    }

    .footer-top{
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-logo{
        font-size: 28px;
    }

}
/* =========================
   WHATSAPP FLOAT
========================= */

.whatsapp-float{
    position: fixed;
    right: 24px;
    bottom: 24px;

    width: 68px;
    height: 68px;

    border-radius: 50%;
    background: #25D366;

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

    box-shadow: 0 10px 30px rgba(37,211,102,.35);

    z-index: 999;

    transition: .3s ease;
}

.whatsapp-float:hover{
    transform: translateY(-6px) scale(1.05);
}

.whatsapp-float img{
    width: 34px;
    height: 34px;
}
.whatsapp-float{
    animation: floatWhatsapp 3s ease-in-out infinite;
}

@keyframes floatWhatsapp{

    0%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-6px);
    }

    100%{
        transform: translateY(0);
    }

}