:root {
    --dark: #16495a;
    --dark2: #123f4f;
    --blue: #254bb6;
    --blue-deep: #2f45c2;
    --cream: #79a4e6;
    --pink: #5b8eec;
    --lightblue: #557ce6;
    --purple: #86c3e4;
    --text: #2b2b2b;
    --muted: #6b6b6b;
}

@font-face {
    font-family: 'FatherGalaxy';
    src: url('./assets/fonts/FatherGalaxy-Regular.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Fredoka', 'Segoe UI', Arial, sans-serif;
    font-weight: 500;
    color: var(--text);
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    padding: 13px 26px;
    border-radius: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(22, 73, 90, 0.28);
}

.btn.outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn.outline:hover {
    background: var(--dark);
    color: #fff;
}

.btn.light {
    background: #dcf1fb;
    color: var(--dark);
}

.btn.light:hover {
    background: var(--dark);
    color: #fff;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--blue-deep);
    display: flex;
    align-items: center;
    gap: 6px;
}

nav ul {
    display: flex;
    gap: 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #333;
}

nav ul li {
    position: relative;
    cursor: pointer;
    transition: color 0.2s ease;
}

nav ul li::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: var(--blue-deep);
    transition: width 0.25s ease;
}

nav ul li:hover {
    color: var(--dark);
}

nav ul li:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-actions .btn {
    padding: 11px 22px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    padding: 6px;
}

.menu-toggle svg,
.menu-toggle i {
    width: 26px;
    height: 26px;
}

.hero-wrap {
    background: linear-gradient(180deg, var(--cream) 0%, var(--pink));
    position: relative;
    overflow: hidden;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 20px;
    padding: 70px 0 60px;
    position: relative;
}

.hero-logo {
    width: min(470px, 100%);
    height: auto;
    margin: -34px auto -14px;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 7px 12px rgba(18, 61, 116, .24));
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text p {
    color: rgb(211, 229, 255);
    font-size: 18px;
    font-weight: 500;
    max-width: 340px;
    margin-bottom: 28px;
}

.hero-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-blob {
    background: var(--blue);
    width: 480px;
    height: 420px;
    max-width: 100%;
    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.hero-blob img {
    width: 400px;
    max-width: 80%;
    object-fit: contain;
    filter:
        saturate(1.9) drop-shadow(-2px -2px 0 rgba(255, 255, 255, 0.151)) drop-shadow(-3px -3px 3px rgba(255, 255, 255, 0.3)) drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.45)) drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.25));
}

.floaty {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.paw {
    position: absolute;
    font-size: 26px;
    opacity: 0.7;
}

.wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: -2px;
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 70px;
}

.section-heading {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid var(--dark);
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 34px;
}

.services {
    padding: 70px 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.service-card {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 30px 10px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
    background: var(--cream);
}

.service-card.active {
    background: var(--cream);
}

.service-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.service-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2;
}

.listen {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.listen-img-wrap {
    position: relative;
    background-color: #21814c;
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    max-width: 100%;
}

.listen-img-wrap img {
    width: 320px;
    max-width: 75%;
    border-radius: 20px;
    filter:
        saturate(1.2) drop-shadow(-2px -2px 0 rgba(255, 255, 255, 0.418)) drop-shadow(-3px -3px 3px rgba(255, 255, 255, 0.3)) drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.45)) drop-shadow(4px 4px 15px rgba(0, 0, 0, 0.25));
}

.play-btn {
    position: absolute;
    top: 40px;
    right: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
    cursor: pointer;
}

.listen-text h2 {
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.listen-text p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 26px;
    max-width: 460px;
}

.products-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 16px;
}

.products-head h3 {
    font-size: 27px;
    font-weight: 700;
}

.products {
    padding: 40px 0 80px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    text-align: left;
}

.product-img {
    background: var(--pink);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    margin-bottom: 18px;
    overflow: hidden;
}

.product-card:nth-child(2) .product-img {
    background: var(--blue);
}

.product-card:nth-child(3) .product-img {
    background: var(--lightblue);
}

.product-img img {
    max-height: 190px;
    width: auto;
}

.product-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card p {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.buy-btn {
    display: inline-block;
    padding: 10px 22px;
    border: 2px solid var(--dark);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.buy-btn:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-2px);
}

.conversation {
    background: linear-gradient(180deg, #eaf6fb, #f5fbfe);
    position: relative;
    overflow: hidden;
}

.conv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.conv-text h2 {
    font-size: 29px;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 18px;
    max-width: 440px;
}

.conv-text p {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 26px;
    max-width: 420px;
    line-height: 1.8;
}

.conv-img {
    display: flex;
    justify-content: center;
}

.conv-img img {
    max-height: 460px;
    width: auto;
}

.customers {
    padding: 80px 0 50px;
    text-align: center;
}

.customers .section-heading {
    text-align: left;
}

.customers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 40px;
}

.customer-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 340px;
    cursor: pointer;
}

.customer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.customer-card:hover img {
    transform: scale(1.08);
}

.customer-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(15, 60, 72, 0.92));
    color: #fff;
    padding: 22px 18px 16px;
    text-align: left;
}

.customer-info h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.customer-info p {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
    margin-bottom: 8px;
}

.rating {
    font-size: 13px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.newsletter {
    background: linear-gradient(180deg, #eaf6fb, #dcf1fb);
    text-align: center;
    padding: 60px 0;
}

.newsletter h3 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 26px;
}

.newsletter-form {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-family: 'Fredoka', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.ip-box {
    max-width: 520px;
    margin: 18px auto 0;
    background: #fff;
    border-radius: 10px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
    gap: 10px;
    flex-wrap: wrap;
}

footer {
    background: #fff;
    padding: 50px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 36px;
}

.footer-col h5 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col p {
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.social-icons span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}

.social-icons span:hover {
    background: var(--dark);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom ul {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-bottom ul li {
    cursor: pointer;
    transition: color 0.2s ease;
}

.footer-bottom ul li:hover {
    color: var(--dark);
}

@media(max-width:900px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 50px;
    }

    .hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-logo { width: min(430px, 94%); margin-top: -30px; }

    .hero-img-wrap {
        order: -1;
        margin-bottom: 10px;
    }

    .hero-blob {
        width: 320px;
        height: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .listen {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 50px 0;
    }

    .listen-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .listen-img-wrap {
        height: 320px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .conv-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .conv-text h2,
    .conv-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .conv-img img {
        max-height: 320px;
    }

    .customers-grid {
        grid-template-columns: 1fr;
    }

    .customers .section-heading {
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 20;
    }

    nav.open {
        max-height: 320px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    nav ul li {
        padding: 14px 24px;
        color: var(--dark);
    }

    nav ul li::after {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

@media(max-width:600px) {
    .container {
        padding: 0 18px;
    }

    header {
        padding: 18px 0;
    }

    .header-actions .btn {
        padding: 9px 14px;
        font-size: 12px;
    }

    .hero-logo { width: min(360px, 94%); margin-top: -22px; margin-bottom: -6px; }

    .hero-text p {
        font-size: 15px;
    }

    .hero-blob {
        width: 240px;
        height: 220px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .service-card {
        padding: 20px 8px;
        font-size: 13px;
    }

    .listen-text h2 {
        font-size: 24px;
    }

    .products-head h3 {
        font-size: 22px;
    }

    .conv-text h2 {
        font-size: 22px;
    }

    .customer-card {
        height: 280px;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 10px;
        gap: 8px;
    }

    .newsletter-form input {
        width: 100%;
        text-align: center;
    }

    .newsletter-form .btn {
        width: 100%;
        justify-content: center;
    }

    .ip-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .footer-bottom ul {
        justify-content: center;
    }
}

@media(max-width:400px) {
    .hero-logo { width: min(315px, 96%); }

    .hero-blob {
        width: 200px;
        height: 190px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    background:
        radial-gradient(circle at 10% 15%, rgba(85, 124, 230, .07), transparent 25%),
        #fff;
}

.hero-wrap {
    background:
        radial-gradient(circle at 78% 25%, rgba(255,255,255,.18), transparent 25%),
        linear-gradient(135deg, #79a4e6 0%, #5b8eec 48%, #3e61d4 100%);
}

header {
    z-index: 30;
}

.logo {
    text-shadow: 0 3px 12px rgba(47,69,194,.12);
}

nav ul li a {
    display: inline-block;
}

nav ul li a:focus-visible,
.footer-bottom a:focus-visible,
.btn:focus-visible,
.buy-btn:focus-visible,
.copy-ip:focus-visible {
    outline: 3px solid rgba(47,69,194,.35);
    outline-offset: 4px;
    border-radius: 6px;
}

.hero-text p {
    text-shadow: 0 2px 8px rgba(20,50,100,.12);
}

.hero .btn {
    box-shadow: 0 10px 25px rgba(22,73,90,.18);
}

.service-card,
.product-card,
.customer-card,
.status-card {
    box-shadow: 0 8px 30px rgba(25, 55, 90, .055);
}

.service-card {
    border-color: rgba(47,69,194,.08);
}

.service-card:hover {
    box-shadow: 0 18px 35px rgba(47,69,194,.13);
}

.products {
    padding-top: 55px;
}

.products-head {
    align-items: center;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(85,124,230,.1);
    color: var(--blue-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
}

.availability-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9aa8c7;
}

.status-card {
    min-height: 210px;
    border: 1px solid rgba(47,69,194,.1);
    border-radius: 24px;
    padding: 38px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.98), rgba(234,246,251,.92));
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.status-card::after {
    content: "EM BREVE";
    position: absolute;
    right: -34px;
    top: 28px;
    transform: rotate(35deg);
    padding: 8px 42px;
    background: rgba(85,124,230,.1);
    color: var(--blue-deep);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.status-card h4 {
    font-size: 21px;
    margin-bottom: 8px;
}

.status-card p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 650px;
    font-size: 14px;
}

.status-icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(85,124,230,.12);
    color: var(--blue-deep);
}

.status-icon svg {
    width: 30px;
    height: 30px;
}

.status-card.centered {
    min-height: 270px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.status-card.centered p {
    max-width: 620px;
}

.status-card.centered::after {
    display: none;
}

#destaques {
    padding-bottom: 75px;
}

.conversation {
    box-shadow: inset 0 1px 0 rgba(47,69,194,.04), inset 0 -1px 0 rgba(47,69,194,.04);
}

.ip-box {
    border: 1px solid rgba(47,69,194,.08);
}

.copy-ip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 0;
    border-radius: 8px;
    padding: 9px 13px;
    background: #eef3ff;
    color: var(--blue-deep);
    font: 700 12px 'Fredoka', sans-serif;
    cursor: pointer;
    transition: .2s ease;
}

.copy-ip svg {
    width: 15px;
    height: 15px;
}

.copy-ip:hover {
    background: var(--blue-deep);
    color: #fff;
    transform: translateY(-1px);
}

.copy-ip.copied {
    background: #dff7eb;
    color: #19734b;
}

.footer-top {
    grid-template-columns: 1.35fr 1fr 1fr 1fr;
}

.footer-brand p {
    max-width: 260px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.footer-col small {
    display: block;
    margin-top: 10px;
    color: #9a9a9a;
    font-size: 11px;
}

.footer-status {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #f3f5f9;
    color: #7a8494;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .7px;
}

.social-icons span {
    user-select: none;
}

.disabled-social {
    opacity: .65;
    cursor: default !important;
}

.footer-bottom a {
    transition: color .2s ease;
}

.footer-bottom a:hover {
    color: var(--dark);
}

@media(max-width:900px) {
    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .status-card {
        padding: 30px 24px;
    }
}

@media(max-width:600px) {
    .products-head {
        align-items: flex-start;
    }

    .status-card {
        flex-direction: column;
        text-align: center;
    }

    .status-card::after {
        display: none;
    }

    .status-card h4 {
        font-size: 18px;
    }

    .copy-ip {
        width: 100%;
        justify-content: center;
    }
}

[hidden] { display: none !important; }

.account-menu { position: relative; }
.account-avatar {
    width: 42px; height: 42px; padding: 0; overflow: hidden; cursor: pointer;
    border: 2px solid #fff; border-radius: 50%; background: #254bb6;
}
.account-avatar img { width: 100%; height: 100%; object-fit: cover; }
.account-dropdown {
    position: absolute; z-index: 20; top: calc(100% + 10px); right: 0; min-width: 145px;
    overflow: hidden; border-radius: 10px; background: #fff; box-shadow: 0 10px 28px #123f4f55;
}
.account-dropdown a, .account-dropdown button {
    display: block; width: 100%; padding: 11px 14px; border: 0; background: #fff;
    color: var(--text); text-align: left; font: inherit; cursor: pointer;
}
.account-dropdown a:hover, .account-dropdown button:hover { background: #eef1f6; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-deep); font-size: 11px; font-weight: 700; letter-spacing: 1.4px; }
.light-eyebrow { color: #e8f5ff; }
.light-eyebrow span, .online-dot { width: 8px; height: 8px; border-radius: 50%; background: #6bf0a2; box-shadow: 0 0 0 4px rgba(107,240,162,.18); }
.hero-text .eyebrow { margin-bottom: 16px; }
.hero-actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.hero .btn svg, .btn svg { width: 16px; height: 16px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-deep); font-size: 14px; font-weight: 700; transition: gap .2s ease; }
.text-link:hover { gap: 11px; }
.text-link svg { width: 16px; height: 16px; }
.light-link { color: #fff; }
.hero-img-wrap { min-height: 420px; }
.hero-chip { position: absolute; z-index: 2; padding: 10px 15px; border: 1px solid rgba(255,255,255,.55); border-radius: 12px; background: rgba(255,255,255,.88); box-shadow: 0 12px 24px rgba(18,63,79,.18); color: var(--dark); font-size: 13px; font-weight: 700; }
.chip-one { top: 14%; right: 0; }.chip-two { bottom: 15%; left: 1%; }
.quick-join { position: relative; z-index: 4; margin-top: -35px; }
.quick-join-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 30px; border: 1px solid rgba(47,69,194,.1); border-radius: 18px; background: #fff; box-shadow: 0 14px 35px rgba(26,61,104,.12); }
.quick-join-inner > div { display: grid; gap: 3px; }.quick-join strong { color: var(--dark); font-size: 20px; }.quick-join small { color: var(--muted); font-size: 12px; }
.server-state { display: inline-flex; align-items: center; gap: 8px; color: #28734d; font-size: 13px; font-weight: 700; }.server-state svg { width: 15px; height: 15px; }
.section-space { padding: 86px 0; }.section-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 42px; margin-bottom: 38px; }.section-intro .section-heading { margin-bottom: 12px; }.section-intro h2, .products h2 { color: var(--dark); font-size: 32px; line-height: 1.2; }.section-intro > p { max-width: 390px; color: var(--muted); font-size: 14px; line-height: 1.8; }.section-intro.centered { display: block; text-align: center; }
.services { padding-bottom: 44px; }.services-grid { grid-template-columns: repeat(5, 1fr); }.service-card { min-height: 200px; padding: 28px 16px; }.service-card h3 { margin-bottom: 8px; color: var(--dark); font-size: 16px; }.service-card p { color: var(--muted); font-size: 12px; line-height: 1.5; }.service-card:hover { background: #f2f6ff; }
.listen .section-heading { margin-bottom: 14px; }.feature-list { display: grid; gap: 10px; margin: 0 0 28px; }.feature-list span { display: flex; align-items: center; gap: 9px; color: #40556e; font-size: 13px; }.feature-list svg { width: 16px; height: 16px; padding: 2px; border-radius: 50%; background: #ddf5e7; color: #268450; }
.how-to { padding-top: 40px; }.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: steps; }.steps-grid article { position: relative; padding: 29px; border-radius: 18px; background: #f7faff; border: 1px solid rgba(47,69,194,.08); }.steps-grid article > span { color: #9aabe0; font-size: 13px; font-weight: 700; }.steps-grid article > svg { display: block; width: 32px; height: 32px; margin: 24px 0 16px; color: var(--blue); }.steps-grid h3 { margin-bottom: 7px; color: var(--dark); font-size: 18px; }.steps-grid p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.products { padding-top: 40px; }.products-head { margin-bottom: 28px; }.status-card { min-height: 170px; }.status-card h3 { color: var(--dark); font-size: 20px; margin-bottom: 6px; }
.flipped { transform: rotate(180deg); margin-bottom: -2px; }.cta-strip { padding: 56px 0; color: #fff; background: linear-gradient(135deg, #183b96, #315fd2); }.cta-strip .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }.cta-strip h2 { margin-top: 10px; font-size: 31px; }.cta-strip .btn { flex-shrink: 0; }
.footer-col { display: grid; align-content: start; gap: 10px; }.footer-col h3 { color: var(--dark); font-size: 15px; margin-bottom: 4px; }.footer-col > a { color: #48607a; font-size: 13px; }.footer-col > a:hover { color: var(--blue); }.footer-button { display: inline-flex; align-items: center; gap: 5px; margin-top: 4px; color: var(--blue-deep) !important; font-weight: 700; }.footer-button svg { width: 14px; }.footer-bottom > div { display: flex; gap: 18px; }
.page-header { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }.page-header nav { position: static; transform: none; }.page-hero { margin-top: 32px; padding: 84px 0; color: #fff; background: linear-gradient(135deg, #315fd2, #6d99e8); }.page-hero h1 { max-width: 670px; margin: 12px 0 15px; font-family: 'FatherGalaxy', 'Fredoka', sans-serif; font-size: 55px; line-height: 1.1; text-shadow: 0 3px 10px rgba(17,45,100,.2); }.page-hero p { max-width: 580px; color: #edf5ff; font-size: 17px; line-height: 1.6; }.rules-hero { background: linear-gradient(135deg, #1d5378, #397dba); }.support-hero { background: linear-gradient(135deg, #404dc0, #8072df); }.content-section { padding: 80px 40px; }
.guide-layout { display: grid; grid-template-columns: 220px 1fr; align-items: start; gap: 75px; }.side-nav { position: sticky; top: 24px; display: grid; gap: 12px; padding: 20px; border-radius: 14px; background: #f6f9ff; }.side-nav strong { color: var(--dark); margin-bottom: 4px; }.side-nav a { color: var(--muted); font-size: 14px; }.side-nav a:hover { color: var(--blue); }.guide-content { display: grid; gap: 70px; max-width: 760px; }.guide-content h2, .faq-section h2 { margin: 0 0 22px; color: var(--dark); font-size: 29px; }.guide-content p { color: var(--muted); line-height: 1.8; }.number-list { display: grid; gap: 16px; margin: 0 0 24px; list-style: none; counter-reset: guide; }.number-list li { position: relative; display: grid; gap: 3px; padding: 18px 18px 18px 62px; border-radius: 13px; background: #f8faff; counter-increment: guide; }.number-list li::before { content: counter(guide); position: absolute; top: 18px; left: 18px; display: grid; width: 28px; height: 28px; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-size: 12px; font-weight: 700; }.number-list strong { color: var(--dark); }.number-list span { color: var(--muted); font-size: 13px; line-height: 1.5; }.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }.info-cards article { padding: 20px; border: 1px solid #e5ecfb; border-radius: 15px; }.info-cards svg { width: 26px; color: var(--blue); }.info-cards h3 { margin: 15px 0 7px; color: var(--dark); font-size: 16px; }.info-cards p { font-size: 12px; }.inline-link { color: var(--blue); font-weight: 700; }
.rules-note, .support-notice { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 34px; padding: 20px; border-radius: 14px; background: #edf5ff; color: #45617d; font-size: 14px; line-height: 1.6; }.rules-note svg, .support-notice svg { flex-shrink: 0; width: 21px; color: var(--blue); }.rules-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }.rules-grid article { min-height: 190px; padding: 27px; border: 1px solid #e7edf8; border-radius: 17px; }.rules-grid span { color: var(--blue); font-size: 13px; font-weight: 700; }.rules-grid h2 { margin: 13px 0 10px; color: var(--dark); font-size: 20px; }.rules-grid p { color: var(--muted); font-size: 13px; line-height: 1.7; }.rules-cta { display: flex; justify-content: space-between; align-items: center; gap: 22px; margin-top: 45px; padding: 30px; border-radius: 18px; background: #183b96; color: #fff; }.rules-cta h2 { margin-bottom: 5px; font-size: 22px; }.rules-cta p { color: #e6efff; font-size: 13px; }.rules-cta .btn { background: #fff; color: var(--blue-deep); }
.status-page { max-width: 1000px; }.status-overview { display: flex; align-items: center; gap: 25px; margin-bottom: 28px; padding: 35px; border-radius: 20px; background: #f5f9ff; }.status-orb { display: grid; width: 74px; height: 74px; flex-shrink: 0; place-items: center; border-radius: 50%; background: #e0f8e9; }.status-orb .online-dot { width: 20px; height: 20px; }.status-overview h2 { margin: 7px 0; color: var(--dark); font-size: 26px; }.status-overview p { color: var(--muted); line-height: 1.6; }.status-details { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }.status-details article { display: grid; align-content: start; gap: 8px; min-height: 200px; padding: 25px; border: 1px solid #e5ecf7; border-radius: 17px; }.status-details svg { width: 26px; color: var(--blue); }.status-details span { margin-top: 8px; color: var(--muted); font-size: 12px; }.status-details strong { color: var(--dark); font-size: 16px; }.status-details p { color: var(--muted); font-size: 12px; line-height: 1.5; }.plain-copy { width: fit-content; padding: 0; border: 0; background: none; color: var(--blue); font: 700 12px 'Fredoka', sans-serif; cursor: pointer; }.plain-copy svg { display: inline; width: 13px; vertical-align: middle; }.status-help { display: flex; align-items: center; gap: 18px; margin-top: 25px; padding: 25px; border-radius: 17px; background: #fff9e9; }.status-help > svg { flex-shrink: 0; width: 30px; color: #bb8b13; }.status-help h2 { margin-bottom: 5px; color: var(--dark); font-size: 18px; }.status-help p { color: var(--muted); font-size: 13px; line-height: 1.5; }.status-help > div:last-child { display: grid; flex-shrink: 0; gap: 8px; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }.support-card { min-height: 220px; padding: 27px; border: 1px solid #e3eafa; border-radius: 18px; transition: transform .2s ease, box-shadow .2s ease; }.support-card:hover { transform: translateY(-5px); box-shadow: 0 14px 25px rgba(30,67,130,.1); }.support-card > svg { width: 32px; color: var(--blue); }.support-card h2 { margin: 19px 0 8px; color: var(--dark); font-size: 19px; }.support-card p { min-height: 40px; color: var(--muted); font-size: 13px; line-height: 1.5; }.support-card span { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--blue); font-size: 13px; font-weight: 700; }.support-card span svg { width: 15px; }.faq-section { max-width: 800px; margin: 80px auto; }.faq-section .section-heading { margin-bottom: 12px; }.faq-section details { border-bottom: 1px solid #e4e9f2; }.faq-section summary { padding: 20px 4px; color: var(--dark); font-weight: 700; cursor: pointer; }.faq-section details p { padding: 0 4px 20px; color: var(--muted); font-size: 14px; line-height: 1.6; }.support-notice { max-width: 800px; margin: 0 auto; }.support-notice h2 { margin-bottom: 4px; color: var(--dark); font-size: 18px; }.support-notice p { font-size: 13px; }.compact-footer { padding: 22px 0; background: #f6f9ff; border: 0; }.compact-footer .container { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }.compact-footer div div { display: flex; gap: 18px; }
@media(max-width:900px) { .quick-join-inner, .section-intro, .cta-strip .container { align-items: flex-start; flex-direction: column; }.services-grid { grid-template-columns: repeat(3, 1fr); }.guide-layout { grid-template-columns: 1fr; gap: 30px; }.side-nav { position: static; grid-template-columns: repeat(2, 1fr); }.rules-grid, .status-details { grid-template-columns: 1fr 1fr; }.support-grid { grid-template-columns: 1fr; }.support-card { min-height: 0; }.page-header nav { position: absolute; }.hero-img-wrap { min-height: 320px; } }
@media(max-width:600px) { .page-header { margin-top: 8px; padding: 13px 16px; }.page-hero { margin-top: 22px; padding: 60px 0; }.page-hero h1 { font-size: 39px; }.page-hero p { font-size: 15px; }.quick-join { margin-top: -20px; }.quick-join-inner { padding: 20px; gap: 17px; }.server-state { align-self: stretch; }.section-space, .content-section { padding: 55px 18px; }.section-intro h2, .products h2 { font-size: 26px; }.services-grid, .steps-grid, .info-cards, .rules-grid, .status-details { grid-template-columns: 1fr; }.services-grid { gap: 13px; }.service-card { min-height: 0; }.side-nav { grid-template-columns: 1fr; }.guide-content { gap: 48px; }.rules-cta, .status-overview, .status-help { align-items: flex-start; flex-direction: column; }.status-help > div:last-child { grid-template-columns: 1fr 1fr; }.cta-strip h2 { font-size: 25px; }.compact-footer .container { gap: 12px; flex-direction: column; align-items: center; }.hero-chip { font-size: 11px; }.chip-one { right: -5px; }.chip-two { left: -5px; }.hero-actions { justify-content: center; } }

.page-header {
    min-height: 76px;
    margin-top: 18px;
    padding: 15px 20px;
}

.page-header .header-actions .btn {
    padding: 11px 22px;
}

.page-header .logo {
    font-size: 24px;
}

.site-header {
    min-height: 76px;
    margin-top: 18px;
    padding: 15px 20px;
    width: calc(100% - 80px);
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.hero-wrap .container > .site-header {
    width: 100%;
}

.site-header .logo {
    gap: 10px;
    font-size: 24px;
}

.site-header .logo span {
    display: block;
    padding-top: 4px;
    line-height: 1;
}

.logo-mark {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    object-fit: contain;
    border-radius: 10px;
}

.page-hero .eyebrow {
    color: #f1f7ff;
}

.page-hero .eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #fff;
}

.page-hero h1,
.page-hero p {
    text-shadow: 0 2px 12px rgba(9, 27, 70, .18);
}

.quick-join .eyebrow,
.status-overview .eyebrow {
    color: #254bb6;
}

.footer-col h3,
.footer-col > a,
.footer-brand p {
    opacity: 1;
}

@media(max-width:600px) {
    .page-header {
        min-height: 68px;
        margin-top: 10px;
        padding: 12px 16px;
    }

    .site-header {
        min-height: 68px;
        margin-top: 10px;
        padding: 12px 16px;
        width: calc(100% - 36px);
    }

    .hero-wrap .container > .site-header {
        width: 100%;
    }

    .site-header .logo {
        font-size: 21px;
    }

    .logo-mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
}

.hero-blob {
    animation: blob-float 6s ease-in-out infinite;
}

.hero-chip {
    animation: chip-bob 3.4s ease-in-out infinite;
}

.chip-two {
    animation-delay: -1.7s;
}

.online-dot {
    animation: online-pulse 2s ease-in-out infinite;
}

.bee-divider {
    position: relative;
    left: 50%;
    width: 100vw;
    max-width: none;
    height: 112px;
    margin: -14px 0 8px -50vw;
    overflow: hidden;
    pointer-events: none;
}

.bee-divider svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.bee-route {
    fill: none;
    stroke: #90a9e7;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 3 10;
    animation: dash-flight 1.5s linear infinite;
}

.bee-body { fill: #f7bd27; stroke: #563e22; stroke-width: 2.5; }
.bee-stripe { fill: none; stroke: #563e22; stroke-width: 4; stroke-linecap: round; }
.bee-head { fill: #f7bd27; stroke: #563e22; stroke-width: 2.5; }
.bee-eye, .bee-smile, .bee-antenna { fill: none; stroke: #563e22; stroke-width: 2.2; stroke-linecap: round; }
.bee-eye { fill: #563e22; }
.bee-wing { fill: rgba(234, 250, 255, .95); stroke: #75abd0; stroke-width: 2; transform-box: fill-box; transform-origin: center; }
.wing-left { animation: wing-left .16s ease-in-out infinite alternate; }
.wing-right { animation: wing-right .16s ease-in-out infinite alternate; }

.section-space,
.quick-join,
.conversation,
.cta-strip {
    transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.3,1);
}

.will-reveal {
    opacity: 0;
    transform: translateY(26px);
}

.will-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card,
.steps-grid article,
.featured-card,
.support-card {
    transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.steps-grid article:hover,
.featured-card:hover {
    transform: translateY(-7px) rotate(-.45deg);
    box-shadow: 0 18px 30px rgba(36, 75, 158, .15);
}

.conv-img img {
    animation: panel-float 5.5s ease-in-out infinite;
}

@keyframes blob-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-13px) rotate(1.3deg); }
}

@keyframes chip-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

@keyframes online-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(107,240,162,.18); }
    50% { box-shadow: 0 0 0 8px rgba(107,240,162,0); }
}

@keyframes dash-flight {
    to { stroke-dashoffset: -26px; }
}

@keyframes wing-left {
    to { transform: rotate(-22deg) translateY(-2px); }
}

@keyframes wing-right {
    to { transform: rotate(22deg) translateY(-2px); }
}

@keyframes panel-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media(max-width:600px) {
    .bee-divider {
        display: none;
    }
}

@media(prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

header {
    margin-top: 12px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.46);
    border-radius: 18px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 10px 28px rgba(24,50,115,.14);
    backdrop-filter: blur(10px);
}

header .logo, footer .logo { font-family: 'FatherGalaxy', 'Fredoka', sans-serif; color: #183b96; }
header nav ul { color: #173f70; font-size: 14px; }
header nav ul li:hover { color: #254bb6; }
header nav ul li::after { background: #254bb6; }
header .btn { letter-spacing: .5px; }

footer { background: linear-gradient(180deg, #f8fbff, #edf4ff); border-top: 1px solid rgba(47,69,194,.1); }
footer .footer-col p, footer .footer-brand p, footer .footer-bottom { color: #48607a; }

.conv-text .section-heading { display: inline-block; margin-bottom: 12px; }
.conv-img img { width: min(100%, 520px); max-height: none; filter: drop-shadow(0 18px 26px rgba(37,75,182,.2)); }

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
    text-align: left;
}
.featured-card {
    position: relative;
    overflow: hidden;
    padding: 28px 22px 22px;
    border: 1px solid rgba(47,69,194,.12);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, #eff5ff);
    box-shadow: 0 10px 24px rgba(25,55,90,.08);
    text-align: center;
}
.featured-card > img { width: 96px; height: 96px; margin: 0 auto 12px; image-rendering: pixelated; }
.featured-card h4 { color: var(--dark); font-size: 20px; margin-bottom: 4px; }
.featured-card p { color: var(--blue-deep); font-size: 13px; margin-bottom: 17px; }
.featured-position { position: absolute; top: 14px; left: 14px; color: #fff; background: var(--blue); border-radius: 999px; padding: 4px 9px; font-weight: 700; font-size: 12px; }
.featured-stats { display: flex; justify-content: center; gap: 12px; color: var(--muted); font-size: 12px; }
.featured-loading { grid-column: 1 / -1; padding: 30px; color: var(--muted); text-align: center; }
@media (max-width: 700px) { .featured-grid { grid-template-columns: 1fr; } }
@media (min-width: 901px) {
    header nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media(max-width:900px) {
    .hero-logo { width: 320px; }
}

@media(max-width:600px) {
    .hero-logo { width: 240px; margin-bottom: 16px; }
}

@media(max-width:400px) {
    .hero-logo { width: 190px; }
}

/* ================================================================
   CANDLEMC — linguagem visual do mundo
   Superficies simples, cores de bioma e sombras retas evocam a
   interface de Minecraft sem transformar o site em uma caricatura.
   ================================================================ */
:root {
    --ink: #1c2b50;
    --forest: #244aaf;
    --moss: #4d78d7;
    --grass: #8eb4ff;
    --sand: #f5f8ff;
    --paper: #ffffff;
    --dirt: #29417e;
    --ember: #f0a841;
    --line: #d6e0f4;
    --dark: var(--forest);
    --blue: var(--moss);
    --blue-deep: var(--forest);
    --muted: #62708d;
    --cream: #527fe0;
    --pink: #264da4;
}

body { background: var(--sand); color: var(--ink); }
body::selection { background: #d9e99a; color: var(--ink); }
.container { max-width: 1120px; }

/* Barra superior: uma ferramenta, não um card de produto. */
header {
    margin-top: 0;
    padding: 18px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}
header .logo, footer .logo { color: #fff; letter-spacing: .5px; }
header nav ul { gap: 26px; color: #e8efff; font-size: 13px; }
header nav ul li::after { background: var(--grass); }
header nav ul li:hover { color: #fff; }
.header-actions .btn, .btn {
    padding: 12px 16px;
    border: 2px solid rgba(31, 48, 20, .68);
    border-radius: 4px;
    background: var(--ember);
    box-shadow: 3px 3px 0 rgba(20, 34, 18, .75);
    color: #1e2716;
    font-size: 12px;
    letter-spacing: .65px;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(20, 34, 18, .75); }

/* Hero: cenário do mundo, não um banner corporativo. */
.hero-wrap {
    overflow: hidden;
    background-color: #315ebd;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 72% 18%, rgba(159, 200, 255, .28), transparent 24rem),
        linear-gradient(135deg, #527fe0, #264da4 72%);
    background-size: 28px 28px, 28px 28px, auto, auto;
}
.hero { min-height: 530px; gap: 36px; padding: 52px 0 46px; }
.hero-text { align-items: flex-start; text-align: left; }
.hero-logo {
    width: min(460px, 100%);
    margin: -35px 0 -24px -21px;
    mix-blend-mode: normal;
    filter: drop-shadow(5px 7px 0 rgba(20, 53, 126, .32));
}
.light-eyebrow { color: #eef5ff; }
.light-eyebrow > span { background: var(--grass); }
.hero-text p { max-width: 410px; color: #e8f1ff; font-size: 17px; line-height: 1.65; }
.hero-actions { justify-content: flex-start; }
.light-link { color: #eff5ff; }.light-link:hover { color: var(--grass); }
.hero-img-wrap { justify-content: flex-end; }
.hero-blob {
    width: 420px; height: 410px;
    border: 2px solid rgba(220, 234, 255, .45);
    border-radius: 28px 12px 28px 12px;
    background: rgba(115, 157, 237, .5);
    background-image: none;
    box-shadow: 13px 13px 0 rgba(23, 53, 120, .24);
}
.hero-blob::before { content: "SOBREVIVÊNCIA • PVP • ECONOMIA"; position: absolute; top: 13px; left: 14px; color: #eaf2ff; font-size: 10px; font-weight: 700; letter-spacing: .9px; }
.wave-divider { display: none; }

/* IP sempre à vista e copiável, como deveria ser em um servidor. */
.quick-join { position: relative; z-index: 2; margin: -2px 0 0; padding: 20px 0; background: #1e3d8e; color: #f4f8ff; }
.quick-join-inner { gap: 20px; }.quick-join strong { color: #fff; font-size: 22px; }.quick-join small { color: #cbdcff; }
.quick-join .eyebrow { color: #a8c5ff; }.copy-ip { border: 2px solid #a8c5ff; border-radius: 7px; background: transparent; color: #f7faff; box-shadow: none; }.copy-ip:hover { transform: none; background: rgba(168,197,255,.14); }
.server-state { color: #d6e5ff; }.server-state svg { color: inherit; }

/* Conteúdo: blocos de mapa, não cartões com vidro e gradiente. */
.section-space { padding: 82px 0; }.section-heading { border: 0; padding: 0; color: var(--moss); font-size: 11px; letter-spacing: 1.4px; }.section-heading::before { content: "// "; color: var(--ember); }
.section-intro, .products-head { align-items: end; border-bottom: 2px solid var(--line); padding-bottom: 20px; }.section-intro h2, .products h2, .listen h2, .how-to h2, .customers h2 { color: var(--forest); font-size: clamp(29px, 4vw, 48px); line-height: 1.05; max-width: 650px; }.section-intro p { color: var(--muted); line-height: 1.65; }
.services-grid { gap: 14px; border: 0; }.service-card { min-height: 190px; padding: 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: 0 5px 14px rgba(38,76,160,.06); }.service-card:hover { transform: translateY(-3px); background: #f9fbff; box-shadow: 0 10px 20px rgba(38,76,160,.12); }.service-icon { width: 40px; height: 40px; border-radius: 10px; background: #e5eeff; color: var(--forest); }.service-card h3 { margin-top: 18px; color: var(--forest); }.service-card p { color: var(--muted); line-height: 1.5; }

.listen { align-items: stretch; gap: 0; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: 0 12px 28px rgba(38,76,160,.08); }.listen-img-wrap { min-height: 100%; border-radius: 0; background: #9bbcf3; }.listen-text { padding: 52px; }.listen-text p { color: var(--muted); line-height: 1.7; }.feature-list span { color: var(--forest); }.feature-list svg { border-radius: 50%; background: #e5eeff; color: var(--forest); }.outline { background: transparent; color: var(--forest); border-color: var(--forest); box-shadow: none; }
.bee-divider { display: none; }

.how-to .section-intro.centered { margin: 0 auto 34px; }.steps-grid { gap: 14px; }.steps-grid article { min-height: 230px; padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: none; }.steps-grid article > span { color: var(--ember); }.steps-grid article > svg { color: var(--forest); }.steps-grid h3 { color: var(--forest); }.steps-grid p { color: var(--muted); line-height: 1.6; }.steps-grid article:hover { transform: translateY(-4px); box-shadow: 0 12px 22px rgba(38,76,160,.12); }

.status-card { border: 2px dashed #c6b897; border-radius: 3px; background: #fff8e9; box-shadow: none; }.status-card::after { display: none; }.status-icon { border-radius: 3px; background: #f5d781; color: var(--dirt); }.status-card h3 { color: var(--forest); }.status-card p { color: var(--muted); }

.conversation { background: #e7efff; }.conv-grid { padding: 75px 0; }.conv-text h2 { color: var(--forest); font-size: clamp(31px, 4vw, 48px); }.conv-text p { color: #526789; line-height: 1.65; }.conv-img { border: 1px solid #bcd0f6; border-radius: 16px; background: #f8fbff; padding: 10px; box-shadow: 0 14px 24px rgba(38,76,160,.12); }.conv-img img { animation: none; filter: none; }
.featured-grid { gap: 12px; }.featured-card { border: 1px solid var(--line); border-radius: 14px; background: var(--paper); box-shadow: none; }.featured-card:hover { transform: translateY(-4px); box-shadow: 0 12px 22px rgba(38,76,160,.12); }.featured-position { border-radius: 8px; background: var(--forest); }.featured-card h4 { color: var(--forest); }.featured-card p { color: var(--moss); }

.cta-strip { padding: 54px 0; background: var(--dirt); }.cta-strip h2 { color: #fff; }.cta-strip .btn.light { border-color: #dfeaff; background: #dfeaff; color: #233e81; }
footer { background: #1d397f; border: 0; } footer .footer-col h3 { color: #fff; } footer .footer-col a, footer .footer-brand p, footer .footer-col p, footer .footer-bottom { color: #d5e2ff; } footer .footer-col a:hover, footer .footer-button { color: #fff0a8 !important; } footer .footer-bottom { border-color: rgba(240,245,255,.18); }

/* Páginas internas usam os mesmos elementos, sem virar um segundo site. */
.page-header { background: var(--paper); border: 2px solid var(--line); border-radius: 3px; box-shadow: 5px 5px 0 #d9ceb9; }.page-header .logo { color: var(--forest); }.page-header nav ul { color: var(--forest); }.page-hero, .rules-hero, .support-hero { background: var(--forest); }.page-hero h1 { font-family: 'FatherGalaxy', 'Fredoka', sans-serif; }.content-section { background: var(--sand); }

@media (max-width: 900px) {
    .hero { min-height: 0; padding: 32px 0 48px; }.hero-text { align-items: center; text-align: center; }.hero-logo { margin-left: 0; }.hero-actions { justify-content: center; }.hero-img-wrap { display: none; }.hero-text p { max-width: 480px; }.services-grid { grid-template-columns: repeat(2, 1fr); }.listen { grid-template-columns: 1fr; }.listen-img-wrap { min-height: 310px; }.listen-text { padding: 38px; }
}
@media (max-width: 600px) {
    header { padding: 15px 0; }.header-actions .btn { box-shadow: none; }.hero-logo { width: min(340px, 100%); margin-top: -22px; margin-bottom: -10px; }.hero-text p { font-size: 15px; }.hero-actions { gap: 16px; }.quick-join-inner { align-items: flex-start; }.quick-join strong { font-size: 18px; }.services-grid { grid-template-columns: 1fr; }.section-space { padding: 58px 0; }.listen-text { padding: 28px 22px; }.steps-grid { grid-template-columns: 1fr; }.featured-grid { grid-template-columns: 1fr; }
}

/* Direção visual inspirada na clareza e energia de hosts de Minecraft:
   azul vivo, hero ilustrado, textos grandes e navegação sem ruído. */
:root { --ink: #152445; --forest: #155be8; --moss: #377cf0; --grass: #a9c8ff; --sand: #fff; --paper: #fff; --dirt: #123b9e; --ember: #ffbd38; --line: #e3ebfa; --muted: #627398; }
body { background: #fff; }
header { position: relative; z-index: 3; padding: 22px 0; }
header .logo, footer .logo { color: #fff; font-size: 24px; }
header nav ul { gap: 28px; color: #fff; font-weight: 700; }
header nav ul li::after { display: none; }
header nav a:hover { color: #cfe0ff; }
.header-actions .btn { border: 0; border-radius: 10px; background: #ffbd38; box-shadow: none; color: #18213a; padding: 12px 18px; }
.header-actions .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(3, 29, 96, .25); }

.hero-wrap { background: #0966f2; background-image: radial-gradient(circle at 77% 45%, #5696ff 0 12%, transparent 12.2%), radial-gradient(circle at 77% 45%, rgba(255, 197, 62, .96) 0 21%, transparent 21.2%), linear-gradient(180deg, #0b72ff, #0752d0); }
.hero-wrap::before, .hero-wrap::after { content: ""; position: absolute; z-index: 0; border-radius: 20px; background: rgba(150, 195, 255, .22); }.hero-wrap::before { top: 73px; left: 19%; width: 200px; height: 37px; box-shadow: 445px 40px 0 rgba(150,195,255,.18), 180px 160px 0 rgba(150,195,255,.16); }.hero-wrap::after { right: -50px; bottom: 45px; width: 44%; height: 88px; border-radius: 44px 0 0 0; background: #5d2bd5; box-shadow: inset 0 15px rgba(255,255,255,.05); }
.hero { position: relative; z-index: 1; min-height: 585px; padding: 48px 0 80px; grid-template-columns: 1.05fr .95fr; }
.hero-text { align-items: flex-start; text-align: left; }.hero-logo { width: min(520px, 108%); margin: -42px 0 -27px -33px; filter: drop-shadow(0 8px 0 rgba(10,42,121,.17)); }
.hero-text p { max-width: 460px; color: #e7f0ff; font-size: 19px; }.hero-actions { justify-content: flex-start; }.hero-actions .btn { min-width: 178px; border-radius: 9px; }.light-link { color: #fff; font-weight: 700; }
.hero-img-wrap { align-self: end; height: 475px; }.hero-blob { width: 100%; height: 100%; border: 0; border-radius: 0; background: transparent; box-shadow: none; overflow: visible; }.hero-blob::before { content: ""; }.hero-blob img { position: relative; z-index: 2; width: min(440px, 96%); max-width: none; filter: drop-shadow(16px 19px 0 rgba(8,41,112,.23)); }

.quick-join { position: relative; z-index: 4; width: min(1040px, calc(100% - 36px)); margin: -35px auto 0; padding: 20px 27px; border-radius: 15px; background: #fff; color: var(--ink); box-shadow: 0 12px 30px rgba(14,55,150,.18); }.quick-join strong { color: #155be8; }.quick-join small { color: var(--muted); }.quick-join .eyebrow { color: #377cf0; }.copy-ip { border: 1px solid #bdd2fa; border-radius: 8px; color: #155be8; background: #f5f8ff; }.copy-ip:hover { background: #eaf1ff; }.server-state { color: #377cf0; }

.section-space { padding: 100px 0; }.section-heading { color: #377cf0; }.section-heading::before { content: none; }.section-intro, .products-head { border: 0; padding-bottom: 0; }.section-intro h2, .products h2, .listen h2, .how-to h2, .customers h2 { color: #152445; font-size: clamp(31px, 4.2vw, 51px); letter-spacing: -.8px; }.section-intro p { max-width: 390px; }
.services-grid { margin-top: 40px; gap: 18px; }.service-card { min-height: 205px; border: 1px solid #e4ecfa; border-radius: 16px; box-shadow: 0 7px 18px rgba(25,80,176,.06); }.service-card:hover { border-color: #cbdcff; background: #fff; box-shadow: 0 14px 28px rgba(25,80,176,.12); }.service-icon { background: #eaf1ff; color: #155be8; }.service-card h3 { color: #152445; }
.listen { border: 0; border-radius: 22px; box-shadow: 0 15px 36px rgba(25,80,176,.1); }.listen-img-wrap { background: #e8f1ff; }.listen-text { padding: 58px; }.feature-list svg { background: #e3edff; color: #155be8; }.outline { border: 1px solid #155be8; border-radius: 9px; color: #155be8; }
.steps-grid { gap: 18px; }.steps-grid article { border: 1px solid #e4ecfa; border-radius: 16px; }.steps-grid article > span { color: #377cf0; }.steps-grid article > svg { color: #155be8; }.steps-grid h3 { color: #152445; }
.conversation { background: linear-gradient(135deg, #eff5ff, #dceaff); }.conv-grid { padding: 96px 0; }.conv-text h2 { color: #152445; }.conv-img { border: 0; border-radius: 18px; box-shadow: 0 18px 36px rgba(25,80,176,.17); }.featured-card { border: 1px solid #e4ecfa; border-radius: 16px; }.featured-position { background: #155be8; }.status-card { border: 1px solid #e4ecfa; border-radius: 16px; background: #f8fbff; }.status-icon { background: #e7f0ff; color: #155be8; }
.cta-strip { background: linear-gradient(120deg, #135be5, #4d7de4); }.cta-strip .btn.light { background: #ffbd38; color: #18213a; border: 0; border-radius: 9px; }
footer { background: #123b9e; } footer .footer-col a, footer .footer-brand p, footer .footer-col p, footer .footer-bottom { color: #d7e5ff; }

@media (max-width: 900px) { .hero-wrap::before, .hero-wrap::after { display: none; }.hero { min-height: 0; padding: 38px 0 76px; }.hero-text { align-items: center; text-align: center; }.hero-logo { width: min(480px, 105%); margin-left: 0; }.hero-img-wrap { display: none; }.quick-join { width: calc(100% - 32px); }.listen-text { padding: 40px; } }
@media (max-width: 600px) { header nav ul { color: #152445; }.hero { padding-top: 18px; }.hero-logo { width: min(365px, 108%); margin-top: -24px; }.hero-text p { font-size: 16px; }.quick-join { margin-top: -20px; padding: 20px; }.section-space { padding: 66px 0; }.listen-text { padding: 30px 22px; }.conv-grid { padding: 66px 0; } }

/* Nas páginas internas o cabeçalho fica sobre o fundo claro, com contraste próprio. */
.page-header.site-header{min-height:86px;margin:0 auto;padding:0;border:1px solid #dce7fb;border-radius:0;background:#fff;box-shadow:0 8px 20px rgba(21,91,232,.07)}
.page-header.site-header .logo{color:#155be8;font-family:FatherGalaxy,Fredoka,sans-serif}.page-header.site-header nav ul{color:#24385e}.page-header.site-header nav a:hover{color:#155be8}.page-header.site-header .header-copy-ip{display:inline-flex;align-items:center;gap:7px;padding:10px 13px;border:1px solid #bdd2fa;border-radius:9px;background:#f5f8ff;color:#155be8;cursor:pointer;font:700 13px Fredoka,sans-serif;transition:transform .2s,background .2s}.page-header.site-header .header-copy-ip:hover{background:#eaf1ff;transform:translateY(-2px)}.page-header.site-header .header-copy-ip i{width:15px}.page-header.site-header .menu-toggle{color:#155be8}
@media(max-width:900px){.page-header.site-header nav.open{top:70px;right:0}.page-header.site-header nav.open ul{color:#152445}}
@media(max-width:600px){.page-header.site-header{min-height:72px;padding:0 10px}.page-header.site-header .logo{font-size:20px}.page-header.site-header .header-copy-ip{padding:10px}.page-header.site-header .header-copy-ip span{display:none}.page-header.site-header .header-actions{gap:7px}.page-header.site-header .header-actions .btn{padding:10px 11px;font-size:11px}}

/* Títulos internos mais abertos: evitam o aspecto pesado da fonte de logo. */
.page-header.site-header{padding-left:14px;padding-right:14px}.page-hero h1,.panel-hero h1{font-family:Fredoka,'Segoe UI',Arial,sans-serif!important;font-weight:600!important;letter-spacing:-.45px!important;text-shadow:none!important}
