@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,400,700,&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Old+Standard+TT:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --c1: #070A1A;
    --c2: #14184A;
    --c3: #1C2280;
    --c4: #3A3BE9;
    --bg-deep: #0e2a3a;
    /* azul profundo direita */
    --bg-sky: #cfe6ef;
    /* céu claro esquerda */
    --bg-horizon: #5aa0c0;
    /* transição médio */
    --spark: #ff7a2a;
    /* laranja das faíscas */
    --white: #ffffff;
    --deep: #0f2b3a;
    /* azul escuro base */
    --sky: #9fc4d6;
    /* azul claro */
    --cream: #f3e3c9;
    /* luz no topo-direito */
    --pink: #e8a7b6;
    /* poeira rosada */
    --blue: #315e79;
    /* poeira azul */
    --colorOrange: #f58031;
    /* Cor Título: Laranja*/
    --dark-blue: #000b3d;
    --blue-menu: #17364a;
    --wa-green: #25D366;
    --wa-dark: #075E54;
    --radius: 18px;
    --shadow: 0 12px 30px rgba(0, 0, 0, .22);



}



@font-face {
    font-family: "TT Norms";
    font-weight: 300;
    font-style: normal;
    font-display: swap;
    src: url("../fonts/TTNorms-Medium.woff") format("woff");
}

@font-face {
    font-family: "Cocomat Pro";
    src: url("../fonts/CocomatPro-Light.woff2") format("woff2"),
        url("../fonts/CocomatPro-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cocomat Pro medium";
    src: url("../fonts/CocomatPro-Medium.woff2") format("woff2"),
        url("../fonts/CocomatPro-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cocomat Pro";
    src: url("../fonts/CocomatPro-Black.woff2") format("woff2"),
        url("../fonts/CocomatPro-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}



html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body {
    height: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Questrial", sans-serif;
    color: #ffffff;
    background: #0f0f10;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
    font-style: normal;
}


/* Overlay para o menu mobile */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    /* Abaixo do menu de navegação */
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease-in-out;
}

body.nav-open::before {
    opacity: 1;
}

/* Global section styles (from LandingPage.css) */
section {
    /*min-height: 94vh;*/
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* Default for desktop */
}

@media (max-width:768px) {
    section {
        padding: 80px 20px 40px;
        min-height: auto;
        overflow: visible;
        /* Allow scrolling on mobile */
        min-height: 94vh;
    }
}

@media (max-width:480px) {
    section {
        padding: 70px 15px 30px
    }
}

/* Componente Global: Botão CTA */
.cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 3.5rem;
    min-width: 360px;
    min-height: 64px;
    border-radius: 9999px;
    color: #fff;
    font: 500 30px/1.1 "TT Norms", sans-serif;
    text-decoration: none;
    background:
        linear-gradient(100deg, var(--c1) 0%, var(--c2) 30%, var(--c3) 60%, var(--c4) 100%);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(255, 255, 255, .02);
    position: relative;
    overflow: hidden;
    /* para o efeito do ::before */
    transition: transform .15s ease, filter .15s ease, background-position .4s ease;
    background-size: 150% 100%;
    /* permite “deslizar” o gradiente no hover */
    background-position: 100% 50%;
}

/* vinheta sutil nas bordas para imitar a profundidade da imagem */
.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(120% 140% at 0% 50%, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 55%),
        radial-gradient(120% 140% at 100% 50%, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
    border-radius: inherit;
    mix-blend-mode: soft-light;
}

/* estados */
.cta:hover {
    background-position: 0% 50%;
    filter: saturate(1.05);
}

.cta:active {
    transform: translateY(1px) scale(.99);
}

/* --- 2. Navegação --- */
/* Navigation (from Navigation.css) */
.fixed-navigation {

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #c5d7d9;
    width: 100vw;


}

.center {
    display: flex;
    alignment-baseline: ideographic;
    padding: 1rem 0.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    justify-content: space-between;
    gap: 0 32px;

    @media (max-width: 900px) {
        padding: 0rem 1.2rem;
        gap: 0;
        justify-content: space-around;

    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 6px;
    /* Ajuste para aproximar menu e logo */
}

/* Desktop - normal */
.header-right {
    display: flex;
    gap: 14px;
    align-items: center;
}

/* Mobile - esconde no topo */
@media (min-width: 600px) {
    .nav-item-mobile {
        display: none;
    }
}

@media (max-width: 600px) {
    .header-right {
        display: none !important;
    }

    .nav-item-mobile {
        display: block;
    }

    .menu-mobile .menu-actions {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: 8px;
    }

    .menu-mobile .menu-actions a {
        display: block;
        padding: 12px 20px;
        color: #fff;
        text-decoration: none;
        background: #2a385e;
        margin-bottom: 6px;
        border-radius: 7px;
        text-align: center;
        font-weight: bold;
    }
}


.nav-brand .nav-logo {
    height: auto;
    width: auto;
    max-width: 110px;
}

.nav-menu {
    display: flex;
    gap: 12px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 28px;
    /* espaço entre os links */
    margin: 0;

    @media screen and (max-width: 900px) {
        gap: 8px;


    }
}

.nav-item {
    color: var(--blue-menu);
    /* azul escuro do texto */
    font: 500 16px/1.3;
    text-decoration-thickness: 2px;
    /* espessura do sublinhado */
    text-underline-offset: 2px;
    /* distância do sublinhado ao texto */
    text-decoration-color: currentColor;
    /* sublinhado na mesma cor */
    background: none;
    border: none;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px)
}

.nav-item.active {
    color: #0C9CF3
}

.nav-cta-button {
    background: var(--dark-blue);
    color: #fff;
    border: none;
    padding: 0.75rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    transition: box-shadow 0.3s ease, transform 0.3s ease;

    @media screen and (max-width: 900px) {
        font-size: 0.6em;
        padding: auto;

    }
}

.nav-cta-button:hover {

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), 0 1.5px 6px rgba(0, 0, 0, 0.23);
    /* sombra para profundidade */
    transform: scale(1.08);
    /* zoom leve para destacar */
}


.nav-cta .nav-item {
    color: var(--blue-menu);
    text-decoration: none;
    margin-right: 15px;
}

@media(max-width:768px) {
    .fixed-navigation {
        padding: 0.75rem 1rem
    }

    .nav-menu {
        display: none
    }

    .nav-cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem
    }
}

/* Mobile menu toggle */
.nav-toggle {
    display: none;
    background: none;
    border: 0;
    color: #000;
    font-size: 1.4rem;
    cursor: pointer
}

.nav-close {
    /* Esconde o botão de fechar por padrão */
    display: none;
}

.hamburger {
    display: inline-block
}

@media(max-width:768px) {
    .nav-toggle {
        display: block
    }

    .nav-menu {
        position: fixed;
        top: 64px;
        /* Altura da barra de navegação */
        left: 0;
        right: 0;
        background: #c5d7d9;
        padding: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: transform .3s ease-in-out, opacity .3s ease-in-out;
        z-index: 1001;
        /* Garante que o menu fique sobre o overlay */
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
        color: var(--white);
        background: none;
        border: none;
    }

    body.nav-open .nav-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto
    }

    .nav-item {
        width: 100%;
        text-align: left;
        padding: 12px;
        border-radius: 8px;
        color: #0f0f10;
    }

    .nav-menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
}


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

    position: relative;
    width: 100%;
    height: 100vh;
    /* troque para a altura desejada */
    overflow: hidden;

    background-size: cover;
    background-image: url(../img/widoing/1.jpg);

    @media(max-width:768px) {
        align-items: center;
        /* Centraliza o conteúdo verticalmente */
        padding-top: 100px;
        /* Reduz o espaço para o header */
        padding-bottom: 60px;
        /* Espaço inferior */
        height: auto;
        /* Altura automática para se ajustar ao conteúdo */
        min-height: 99vh;
        /* Garante uma altura mínima agradável */
    }


}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;

}

.hero-text {
    flex: 1;
    max-width: 520px
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--dark-blue);
    line-height: 1.05;
    margin-bottom: 2.8rem;

}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #f7971e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    color: var(--colorOrange);
}

.hero-characters {

    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    position: absolute;
    max-width: 600px;
    top: 0;
    right: 0;

    @media (max-width: 600px) {
        top: 250px;
    }


}

.hero-characters .icon-one,
.hero-characters .icon-two {

    max-width: 70%;
}

.hero-characters img {
    max-width: 102%;
}

@media(max-width:768px) {
    .hero-characters img {
        bottom: -31px;
        top: auto;
        max-width: 70%;

    }

    .about-section {
        padding: 0rem 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 1rem;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start !important;
        align-items: center;
        padding-top: 20px;
        min-height: 60vh;
        margin-top: 0 !important;

    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        /* Aumenta o espaço antes do botão */
    }

    .hero-background-gradient {
        width: 80%;
        border-radius: 0 0 0 30%
    }
}

@media(max-width:480px) {
    .hero-title {
        font-size: 1.4rem
    }

    .hero-characters {
        position: initial;
    }
}

@media (orientation: landscape) and (max-height: 480px) {

    /* Ajuste para celulares deitados evitando sobreposição no herói */
    .hero-section {
        min-height: auto;
        height: auto;
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1.5rem;
        gap: 1.5rem;
    }

    .hero-text {
        max-width: 55%;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        margin-bottom: 1.5rem;
    }

    .hero-characters {
        position: static;
        max-width: 40%;
        flex: 1;
        gap: 1rem;
    }

    .hero-characters .icon-one,
    .hero-characters .icon-two,
    .hero-characters img {
        max-width: 100%;
    }

    .cta {
        min-width: 220px;
        padding: 1rem 2.4rem;
        font-size: 1.1rem;
    }
}

/* --- 4. Seção Sobre Nós (About) --- */
/* About (from AboutSection.css) */
.about-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: visible;
    background-image: url(../img/widoing/2.jpg);
    background-size: cover;
}

.about-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    gap: 2rem
}

.about-text {
    flex: 1;
    max-width: 520px;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 6.5rem;
}

.about-title {
    padding-left: 1.6rem;
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.about-title span {
    color: var(--colorOrange);
    ;
}

.content-about-description {
    @media(max-width:768px) {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

.about-description {
    padding: 0.6rem 1.6rem;
}

.about-description p {
    color: var(--dark-blue);
    font-size: 1.05rem;
    line-height: 1.6
}

/* --- 5. Seção Recursos (Features) --- */
/* Features (from FeaturesSection.css) */
.features-section {
    position: relative;
    width: 100%;
    background-image: url(../img/widoing/3.jpg);
    padding: 5rem 1rem;
    background-size: cover;
    background-repeat: no-repeat;
}

.features-content {
    width: 100%;
    max-width: 1200px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: auto;

    @media (max-width:768px) {
        min-height: 100vh;
    }
}

.features-header {
    margin-bottom: 5rem;
    text-align: center;
}

@media (max-width:768px) {
    .features-header {
        margin-bottom: 2rem;
        /* Reduce margin for mobile */
    }
}

.features-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--dark-blue);
    line-height: 1.1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.features-title span {
    color: var(--colorOrange);
    ;
}

.features-title .highlight {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, #ff6b35 0%, #f7971e 100%)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 2rem;
    text-align: right;
}

/* Ilustração na seção de recursos (features) */
.features-section {
    position: relative;
}

.features-illustration {
    position: absolute;
    right: -3%;
    bottom: -5%;
    z-index: 3;
    pointer-events: none;
    max-width: 320px;
}

.features-illustration img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1024px) {
    .features-illustration {
        max-width: 240px;
        right: 2%;
        bottom: 4%;
    }
}

@media (max-width: 768px) {

    /* Esconder a ilustração em telas pequenas para evitar sobreposição */
    .features-illustration {
        display: block;
        max-width: 120px;
        right: 0;
        bottom: 0%;
    }
}

@media(max-width:768px) {
    .features-section {
        padding: 2rem 0
    }

    .features-title {
        text-align: center;
        font-size: 2.2rem
    }

    .features-grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        /* espaço entre os cards */
    }


    .feature-card {
        text-align: center
    }
}


.feature-card .feature-icon {
    display: flex;
    margin-bottom: 45px;
    height: 50px;
}

/* --- 6. Seção Organize --- */
.organize-section {
    position: relative;
    overflow: hidden;
    background: url(../img/widoing/4.jpg);
    background-size: cover;
}

.organize-center {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    gap: 2rem;
}

.content-tex {
    margin: clamp(40px, 8vw, 140px) 0 clamp(40px, 6vw, 100px);
}

.organize-title {
    font-size: 3.5rem;
    font-weight: 100;
    color: var(--dark-blue);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
    padding-left: 0.9rem;
}

.organize-title span {
    color: var(--colorOrange);
    ;
}

.organize-description {
    color: var(--dark-blue);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 2rem 0 2rem;
    padding-left: 0.9rem;
}

.organize-content {
    width: min(560px, 70vw);
    /*height:min(600px, 70vh);*/
}

.benefits-content {
    padding: 9.5rem 1.5rem 2rem 1.5rem;
}

.benefit-item {
    padding-bottom: 2.5rem;
}

.benefit-item h3 {
    padding-bottom: 0.4rem;
    font-size: 25px;
    margin: 0;
}

.benefit-item p {
    font-size: 15px;
    margin: 5px 0px;
}

@media (max-width: 900px) {
    .organize-center {
        flex-direction: column;
        padding: 0 1rem;
        gap: 1rem;
    }

    .content-tex {
        text-align: center;
        margin: 2rem 0;
    }

    .organize-content {
        width: 100%;
        height: auto;
        margin: 0;
    }

    .panel {
        height: 46vh;
    }
}

@media (max-width: 600px) {
    .organize-title {
        font-size: 2.5rem;
    }
}

@media(max-width:768px) {
    .about-title {
        font-size: 1.5rem;
        padding-top: 0.2rem;
        margin-top: 0;
    }
}

/* --- 7. Seção Comunidade --- */
/* Testimonials (from TestimonialsSection.css) */
.testimonials-section {
    background-image: url('../img/widoing/6.jpg');
    background-size: cover;
    background-position: center;
    background-color: #0a141c;
    position: relative;
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
}


.testimonials-content {
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: #000;
    line-height: 1.2;
    margin-bottom: 4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.1) 60%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.testimonial-avatar {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.testimonial-body {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.testimonial-name {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.testimonial-role {
    font-weight: 400;
    opacity: 0.9;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media(max-width:768px) {
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .testimonials-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .testimonial-card {
        text-align: center;
        align-items: center;
    }
}

/* --- 8. Seção Depoimentos (Testimonials) --- */
.community-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 28px;
    background: rgba(255, 255, 255, .06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .35), inset 0 0 60px rgba(0, 0, 0, .15);
    backdrop-filter: blur(14px) saturate(110%);
    -webkit-backdrop-filter: blur(14px) saturate(110%);
    padding: 3.5rem 1.5rem;


}

.community-mockup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .75), 0 30px 60px rgba(255, 255, 255, .08) inset;
    outline: 1px solid rgba(255, 255, 255, .08);
    outline-offset: -1px;

}


/* Community (from CommunitySection.css) */
.community-section {
    height: 100vh;
    position: relative;
    /*min-height:100vh;*/
    padding: 2rem 2rem 0rem 2rem;
    overflow: hidden;
    background:
        /* luz quente no topo-direito */
        radial-gradient(900px 650px at 92% 10%, var(--cream) 0%, rgba(243, 227, 201, .65) 35%, transparent 60%),
        /* gradiente geral azul */
        linear-gradient(180deg, #4e8398 0%, #2f4a58 20%, #56859e 45%, #244b61 70%, var(--deep) 100%);
    /* camada base azul por segurança */
    background-color: var(--deep);
    display: flex;
    flex-direction: column;
    /* Faz os elementos ficarem empilhados em coluna */
    align-items: flex-start;
    /* Opcional: alinha à esquerda */
}

/* ===== POEIRA / SPRAY DIAGONAL ===== */
.community-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* névoa rosada da esquerda + azul da direita em diagonal */
    background:
        conic-gradient(from 210deg at 36% 34%, rgba(232, 167, 182, .55), rgba(232, 167, 182, .08) 38%, transparent 42% 100%),
        conic-gradient(from 30deg at 78% 28%, rgba(49, 94, 121, .55), rgba(49, 94, 121, .08) 35%, transparent 45% 100%),
        /* partículas maiores */
        radial-gradient(2.6px 2.6px at 28% 38%, rgba(255, 255, 255, .55) 50%, transparent 51%),
        radial-gradient(2.2px 2.2px at 33% 42%, rgba(232, 167, 182, .65) 50%, transparent 51%),
        radial-gradient(2.2px 2.2px at 40% 48%, rgba(255, 255, 255, .45) 50%, transparent 51%),
        radial-gradient(2.2px 2.2px at 74% 36%, rgba(255, 255, 255, .45) 50%, transparent 51%),
        /* ruído fino */
        radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, .25) 50%, transparent 51%),
        radial-gradient(1px 1px at 35% 64%, rgba(232, 167, 182, .35) 50%, transparent 51%),
        radial-gradient(1px 1px at 76% 46%, rgba(255, 255, 255, .25) 50%, transparent 51%);
    background-repeat: no-repeat;
    /* recorta em faixa diagonal (esq-baixo → dir-cima) */
    mask-image: linear-gradient(120deg, transparent 18%, #000 35%, #000 78%, transparent 95%);
    -webkit-mask-image: linear-gradient(120deg, transparent 18%, #000 35%, #000 78%, transparent 95%);
    filter: blur(.15px);
    pointer-events: none;
}

/* granulação leve global para dar “cinza do pó” */
.community-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, .06) 50%, transparent 51%),
        radial-gradient(1px 1px at 70% 40%, rgba(0, 0, 0, .06) 50%, transparent 51%);
    background-size: 600px 600px, 700px 700px;
    mix-blend-mode: soft-light;
    pointer-events: none;
}




.community-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
    gap: 2rem;
    margin: 0 auto;
}

.community-text {
    flex: 1;
    max-width: 520px
}

.community-title {
    font-size: 3.5rem;
    font-weight: 200;
    color: #fff;
    line-height: 1.1;
    margin: 1.4rem;
    letter-spacing: 1.5px;
    text-align: center;
    width: 100%;
    @media(min-width:1100px) {
        padding-top: 15px;
    }
}

.community-title h2 {
    font-weight: 200;
    margin: 0;
    padding: 0;
}

.community-badge {

    font-size: 2rem;
}

.badge-label {

    color: var(--colorOrange);
    ;
    padding: .4rem 0rem;
    border-radius: 20px;
    font-weight: 600;

}

.badge-highlight {

    color: #fff;
    padding: .4rem 0rem;
    font-weight: 700;
    text-transform: uppercase
}

.community-description {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 7rem;
}

.community-section .cta {
    text-transform: uppercase;
}

.community.img {
    position: relative;
    bottom: -81px;
    align-self: flex-end;
}

.community-device {
    width: 300px;
    height: auto;
    border-radius: 20px;

}

/* --- 9. Seção CTA Final --- */
.about-mockup {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem
}

.about-device {
    width: 100%;
    ;
    height: auto;
}

@media(max-width:768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 80px 20px;
    }

    .about-mockup {
        padding-top: 2rem;
    }

    .about-device {
        max-width: 200px;
        height: auto;
    }

    .about-text {
        padding-top: 0;
        padding-bottom: 2rem;
    }

    .about-description {
        padding: 0.1rem 1rem;
        margin-bottom: 0.1rem;
    }
}

@media (orientation: landscape) and (max-height: 480px) {
    .about-section {
        min-height: auto;
        padding: 70px 20px 40px;
    }

    .about-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 40px 24px;
        gap: 1.5rem;
    }

    .about-text {
        max-width: 55%;
        padding: 0;
    }

    .about-title {
        padding-left: 0;
        font-size: clamp(2rem, 3vw, 2.4rem);
        text-align: left;
    }

    .about-description {
        padding: 0;
    }

    .about-description p {
        font-size: 0.95rem;
    }

    .about-mockup {
        padding-top: 0;
        flex: 1;
    }

    .about-device {
        max-width: 240px;
    }
}

.cta-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: url(../img/widoing/7.jpg);
    background-size: auto;
    background-repeat: no-repeat;

}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 3rem 2rem;
    gap: 2rem;
    margin: 0 auto
}

.cta-content a {
    font-size: 17px;
}

.cta-text {
    flex: 1;
    max-width: 520px
}

.cta-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--dark-blue);
    line-height: 1.05;
    margin-bottom: 1rem
}

.cta-description {
    color: var(--dark-blue);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.cta-mockup {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center
}

.cta-device {
    width: 100%;

    height: auto;

    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45)
}

@media(max-width:768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem
    }

    .cta-device {
        max-width: 300px
    }
}

/* --- 10. Rodapé (Footer) --- */

.main-footer {
    background-color: var(--c2);
    color: #ffffff;
    padding: 3rem 0 0;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-about {
    max-width: 400px;
}

.footer-brand img {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
    margin-bottom: 1rem;
}

.footer-address {
    color: var(--white);
    font-size: 1rem;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-contact-info {
    max-width: 400px;
}

.footer-contact-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-email {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.footer-email:hover {
    text-decoration: underline;
}

.social-icon {
    color: var(--white);
    width: 30px;
    height: 30px;
}

.footer-bottom {
    background-color: var(--c1);
    padding: 1.5rem 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    text-decoration: underline;
}

.footer-copyright {
    color: var(--white);
    font-size: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-description {
        max-width: none;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-legal {
        justify-content: center;
        order: 2;
    }

    .footer-copyright {
        order: 3;
    }

    .footer-social {
        order: 1;
    }
}

@media (max-width: 1024px) {
    /* No specific changes for 1024px needed with flexbox */
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 0.5rem;
        align-items: anchor-center;
    }

    .footer-bottom-content {
        padding: 0 0.5rem;
    }
}

/* --- 11. Utilitários e Animações --- */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Atrasos para animações em sequência */
.reveal-on-scroll.delay-1 {
    transition-delay: 0.2s;
}

.reveal-on-scroll.delay-2 {
    transition-delay: 0.4s;
}

.reveal-on-scroll.delay-3 {
    transition-delay: 0.6s;
}

.reveal-on-scroll.delay-4 {
    transition-delay: 0.8s;
}

.reveal-on-scroll.delay-5 {
    transition-delay: 1s;
}

/* Botão voltar ao topo */
#back-to-top {
    position: fixed;
    right: 20px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--c4), var(--c3));
    color: #fff;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    z-index: 1200;
}

#back-to-top.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 480px) {
    #back-to-top {
        right: 12px;
        bottom: 18px;
        width: 44px;
        height: 44px;
    }
}

/* Estilo do Card de Recurso (Feature) */
.feature-card {
    position: relative;
    width: 357px;
    /* ajuste */
    padding: 22px 24px 26px;
    border-radius: 22px;
    /* raio grande p/ “pílula quadrada” */
    color: #fff;
    background:
        radial-gradient(120% 100% at 50% 0%,
            rgba(255, 255, 255, .28) 0%,
            rgba(255, 255, 255, .14) 40%,
            rgba(255, 255, 255, .06) 68%,
            rgba(255, 255, 255, .02) 100%),
        /* brilho interno */
        rgba(255, 255, 255, .06);
    /* base leitosa */
    backdrop-filter: blur(8px) saturate(125%);
    -webkit-backdrop-filter: blur(8px) saturate(125%);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, .28),
        /* sombra base */
        inset 0 1px 0 rgba(255, 255, 255, .25);
    /* highlight no topo */
}

/* traço branco translúcido + glow externo arredondado */
.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    /* espessura do traço */
    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .85),
            rgba(255, 255, 255, .45) 60%,
            rgba(255, 255, 255, .25));
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    /* mostra só “a borda” */
    box-shadow: 0 0 40px rgba(255, 255, 255, .25);
    /* glow suave ao redor */
    pointer-events: none;
}

/* vinheta arredondada para dar volume nas bordas */
.feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 100% at 50% 0%,
            rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 60%);
    mix-blend-mode: screen;
    pointer-events: none;
}

/* Tipografia opcional */
.feature-card h3 {
    margin: 0 0 12px;
    font: 700 18px/1.25 system-ui, Segoe UI, Roboto, Arial, sans-serif;
    margin: 12px 0 0;
    text-align: left;
    padding-left: 10px;
}

.feature-card p {
    margin: 10px 15px;
    opacity: .92;
    line-height: 1.6;
    text-align: left;

}


@media (max-width: 1024px) {

    /* Tablet: ajusta largura para ocupar mais espaço na tela */
    .feature-card {
        width: 90%;
        padding: 15px;
        margin-top: 15px;
        justify-items: center;
    }
}

@media (max-width: 600px) {

    /* Mobile: card 100% da largura e mais espaçado */
    .feature-card {
        width: 96%;
        padding: 12px;
        border-radius: 8px;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
    }

}

@media(max-width:768px) {
    .community-section {
        padding: 40px 20px 40px;
        min-height: auto;
    }

    .community-content {
        flex-direction: column;
        text-align: center;
        padding: 2px 20px 40px;
        /*max-width: 80vw;*/
        gap: 0;
        /* Remove o gap para permitir a sobreposição */
    }

    .community-title h2 {
        font-size: 2rem !important;
        margin-bottom: 1.5rem;
    }

    .community-badge {
        font-size: 1.5rem;
    }

    .community-description {
        margin-bottom: 2rem;
    }

    .community.img {
        position: relative;
        /* Permite o posicionamento relativo */
        align-self: center;
        /* Mantém o alinhamento central */
        margin-top: -60px;
        /* Move a imagem para cima, sobrepondo o card */
        z-index: 10;
        /* Garante que a imagem fique na frente */
    }

    .community-device {
        width: 240px
    }



    .cta {
        font-size: 19px;
        min-width: 200px;
    }

    .about-description p {
        padding: 0;
        margin: 0;
    }
}


/* ===== Botão flutuante ===== */
.wa-launcher {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    cursor: pointer;
    background-color: #D0E1FC;
    border: 1px solid #D0E1FC;
}

.widoing-chat {
    width: 70px;
    height: auto;
}

.wa-launcher:hover {
    border: 1px solid rgba(9, 0, 133, 0.45);
    box-shadow: 0 0 0 3px rgba(9, 0, 133, 0.45);
}


/* ===== Overlay + modal ===== */
.wa-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .28);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
}

.wa-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.wa-modal {
    position: fixed;
    right: 20px;
    bottom: 100px;
    width: 360px;
    height: 520px;
    /* quadrado retangular estilo chat */
    max-width: calc(100vw - 24px);
    max-height: calc(100vh - 140px);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    z-index: 10000;
    transform: translateY(16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
}

.wa-modal.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* Cabeçalho com “X” */
.wa-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    background: #0b556a;
    color: #fff;
}

.wa-header .title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.wa-header .status {
    font-size: .8rem;
    opacity: .85;
}

.wa-close {
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.wa-close:hover {
    background: rgba(255, 255, 255, .12);
}

.wa-close:focus-visible {
    outline: 3px solid rgba(255, 255, 255, .45);
}

/* Iframe ocupa o corpo */
.wa-body {
    position: relative;
}

.wa-body iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: #f5f5f5;
}

/* ===== Responsivo ===== */
@media (max-width: 480px) {
    .wa-modal {
        right: 12px;
        left: 12px;
        bottom: 90px;
        width: auto;
        height: 70vh;
        border-radius: 16px;
    }

    .wa-launcher {
        right: 12px;
        bottom: 12px;
        width: 56px;
        height: 56px;
    }
}