* {
    font-family: "Space Mono", monospace;
}

body {
    background: linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.50) 100%
    ), #000447;
    color: #fff;
    overflow-x: hidden;
}

/* =======================
   TEXTO BASE
======================= */

p {
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.7;
    font-optical-sizing: auto;
}

.card-body,
.card-body p {
    font-family: "DM Sans", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* =======================
   HIERARQUIA TIPOGRÁFICA
======================= */

h1, h2, h3, h4, h5, h6 {
    font-family: "DM Sans", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.hero-title {
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
}

.section-title {
    font-size: clamp(2rem, 3.2vw, 2.6rem);
}

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

.hero {
    padding: 120px 0 100px;
}

/* =======================
   BOTÕES
======================= */

.gradient-btn {
    border-radius: 12px;
    border: none;
    background: var(--Degrade-Ayla, linear-gradient(
            323deg,
            #6A38FF 0%,
            #0AC0FF 43.31%,
            #00D1AA 87.45%
    ));
    color: white;
    font-weight: 600;
    padding: 0.65rem 1.6rem;
    transition: transform 0.2s ease;
}

.gradient-btn:hover {
    transform: scale(1.04);
    color: #fff;
}

/* =======================
   GRADIENT TEXT
======================= */

.gradient-ayla {
    background: var(--Degrade-Ayla, linear-gradient(
            323deg,
            #6A38FF 0%,
            #0AC0FF 43.31%,
            #00D1AA 87.45%
    ));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =======================
   GLASS / CARDS
======================= */

.glass-bg {
    border-radius: 39px;
    background: linear-gradient(
            180deg,
            rgba(179, 183, 255, 0.20) 0%,
            rgba(107, 110, 153, 0.20) 100%
    );
    backdrop-filter: blur(14px);
}

.glass-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.6rem;
}

.glass-card p {
    font-size: 0.95rem;
}

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

.nav-link {
    color: white;
    font-size: 0.95rem;
}

/* =======================
   SEÇÕES
======================= */

section {
    padding: 4.5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3.5rem 0;
    }
}

/* =======================
   DECORAÇÕES
======================= */

.section-relative {
    position: relative;
    overflow: hidden;
}

.wave {
    position: absolute;
    z-index: -1;
    max-width: 400px;
    opacity: 0.25;
}

.small-blur {
    position: absolute;
    border-radius: 735px;
    background: #000447;
    filter: blur(156px);
    width: 735px;
    height: 706px;
    z-index: -2;
}

.blur {
    position: absolute;
    border-radius: 1818px;
    background: #000447;
    filter: blur(156px);
    width: 1818px;
    height: 1373px;
    z-index: -2;
}

/* =======================
   SOBRE NÓS – BALÃO
======================= */

.about-image-wrapper {
    position: relative;
    display: inline-block;
}



.about-balloon {
    position: absolute;
    top: 32px;
    left: 32px;

    width: 160px;
    height: 160px;

    background: #19C5FF;

    /* agora aponta para a MESMA direção do verde */
    border-radius: 50% 50% 0 50%;

    z-index: 10;
}


/* Mobile */
@media (max-width: 768px) {
    .about-balloon {
        width: 110px;
        height: 110px;
        top: 20px;
        left: 20px;
    }
}






