/*==================================================
  AEDUK BRASIL
  STYLE.CSS
  PARTE 1
==================================================*/

/*==========================
RESET
==========================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1f2937;
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
}

/*==========================
VARIÁVEIS
==========================*/

:root {

    --primary: #0F2B8C;
    --primary-dark: #091D62;

    --secondary: #E6B325;

    --text: #1F2937;
    --text-light: #6B7280;

    --background: #FFFFFF;

    --section: #F8FAFC;

    --border: #E5E7EB;

    --success: #25D366;

    --radius: 14px;

    --shadow-sm:
        0 4px 14px rgba(0, 0, 0, .06);

    --shadow:
        0 14px 35px rgba(0, 0, 0, .08);

    --transition: .35s ease;

}

/*==========================
CONTAINER
==========================*/

.container {

    width: min(1180px, 92%);

    margin: auto;

}

/*==========================
TIPOGRAFIA
==========================*/

h1,
h2,
h3,
h4 {

    font-family: 'Sora', sans-serif;

    color: var(--primary-dark);

    font-weight: 700;

    line-height: 1.2;

}

h1 {

    font-size: 3.3rem;

}

h2 {

    font-size: 2.3rem;

}

h3 {

    font-size: 1.25rem;

}

p {

    color: var(--text-light);

    font-size: 1.05rem;

}

.section {

    padding: 90px 0;

}

.section--gray {

    background: #f7f9fc;

}

.section__header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 60px;

}

.section__subtitle {

    display: inline-block;

    color: var(--primary);

    font-weight: 600;

    font-size: .9rem;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 16px;

}

.section__header h2 {

    margin-bottom: 18px;

}

/*==========================
BOTÕES
==========================*/

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 15px 28px;

    border-radius: 10px;

    font-weight: 600;

    transition: var(--transition);

}

.btn-primary {

    background: var(--primary);

    color: #fff;

}

.btn-primary:hover {

    background: var(--primary-dark);

    transform: translateY(-2px);

}

.btn-secondary {

    border: 2px solid var(--primary);

    color: var(--primary);

    background: white;

}

.btn-secondary:hover {

    background: var(--primary);

    color: white;

}

/*==========================
NAVBAR
==========================*/

.nav {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    background: var(--primary);

    border-bottom: none;

    transition: var(--transition);

}

.nav.is-scrolled {

    background: var(--primary-dark);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);

}

.nav__container {

    height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.nav__logo img {

    height: 26px;

}

.nav__menu {

    display: flex;

    align-items: center;

    gap: 35px;

}

.nav__link {

    color: #ffffff;

    font-weight: 500;

    transition: var(--transition);

    position: relative;

}

.nav__link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #ffffff;

    transition: .3s;

}

.nav__link:hover {

    color: #ffffff;

}

.nav__link:hover::after {

    width: 100%;

}

.nav__button:hover {

    background: #EEF4FF !important;

    color: var(--primary-dark) !important;

}

.nav__button {

    margin-left: 15px;

    background: #ffffff !important;

    color: var(--primary) !important;

    border: 2px solid #ffffff;
}

.nav__toggle {

    display: none;

    width: 42px;

    height: 42px;

    background: none;

    border: none;

    cursor: pointer;

}

.nav__toggle span {

    display: block;

    width: 28px;

    height: 2px;

    margin: 6px auto;

    background: var(--primary-dark);

    transition: .3s;

}

/*==========================
HERO
==========================*/

.hero {

    padding-top: 170px;

    padding-bottom: 110px;

}

.hero__container {

    display: grid;

    grid-template-columns: 1fr 520px;

    align-items: center;

    gap: 70px;

}

.hero__badge {

    display: inline-block;

    background: #EEF4FF;

    color: var(--primary);

    padding: 8px 18px;

    border-radius: 50px;

    font-weight: 600;

    margin-bottom: 24px;

}

.hero h1 {

    margin-bottom: 24px;

    max-width: 700px;

}

.hero p {

    max-width: 600px;

    margin-bottom: 36px;

}

.hero__buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

.hero__numbers {

    display: flex;

    gap: 40px;

    margin-top: 55px;

}

.hero__number {

    display: flex;

    flex-direction: column;

}

.hero__number strong {

    font-family: 'Sora';

    color: var(--primary);

    font-size: 1.5rem;

}

.hero__number span {

    color: var(--text-light);

    font-size: .95rem;

}

.hero__image{

    display:flex;

    justify-content:center;

}

.hero__image img{

    width:115%;
    max-width:620px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

/*==================================================
  SOBRE
==================================================*/

.about {

    display: grid;

    grid-template-columns: 1.2fr .8fr;

    gap: 50px;

    align-items: center;

}

.about__content {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.about__content p {

    color: var(--text-light);

    font-size: 1.05rem;

}

.about__card {

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 18px;

    padding: 40px;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

}

.about__card:hover {

    transform: translateY(-6px);

    box-shadow: var(--shadow);

}

.about__card h3 {

    margin-bottom: 18px;

}

.about__card p {

    margin: 0;

}

/*==================================================
  BENEFÍCIOS
==================================================*/

.benefits {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

.benefit-card {

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 35px 30px;

    transition: var(--transition);

}

.benefit-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}

.benefit-card h3 {

    font-size: 1.2rem;

    margin-bottom: 15px;

}

.benefit-card p {

    margin: 0;

}

/*==================================================
  METODOLOGIA
==================================================*/

.methodology {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

.method-card {

    background: #ffffff;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 35px 30px;

    transition: var(--transition);

}

.method-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: transparent;

}

.method-card h3 {

    margin-bottom: 15px;

    color: var(--primary);

}

.method-card p {

    margin: 0;

}

/*==================================================
  CTA
==================================================*/

.cta {

    padding: 100px 0;

    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--primary));

}

.cta__content {

    max-width: 760px;

    margin: auto;

    text-align: center;

}

.cta h2 {

    color: #ffffff;

    font-size: 2.5rem;

    margin-bottom: 25px;

}

.cta p {

    color: rgba(255, 255, 255, .85);

    font-size: 1.1rem;

    margin-bottom: 40px;

}

.cta .btn {

    min-width: 240px;

}

/*==================================================
  TRANSPARÊNCIA
==================================================*/

.narrow {

    max-width: 900px;

    margin: auto;

}

#transparencia p {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 24px;

    font-size: 1.05rem;

}

#transparencia p:last-child {

    margin-bottom: 0;

}

/*==================================================
  ANIMAÇÃO REVEAL
==================================================*/

.reveal {

    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.reveal.is-visible {

    opacity: 1;

    transform: translateY(0);

}

/*==================================================
  FOOTER
==================================================*/

.footer {

    background: #0B173D;

    color: #ffffff;

    padding: 80px 0 25px;

}

.footer__container {

    display: grid;

    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 50px;

    margin-bottom: 50px;

}

.footer__column a i{

    color:var(--secondary);

    width:18px;

    font-size:18px;

}

.footer__brand img {

    height: 48px;

    margin-bottom: 20px;

}

.footer__brand p {

    color: rgba(255, 255, 255, .75);

    max-width: 260px;

}

.footer__column h4 {

    color: #ffffff;

    margin-bottom: 22px;

    font-size: 1rem;

}

.footer__column {

    display: flex;

    flex-direction: column;

    gap: 14px;

}

.footer__column a {


    display:flex;

    align-items:center;

    gap:12px;


}

.footer__column a:hover {

    color: var(--secondary);

}

.footer__column p {

    color: rgba(255, 255, 255, .75);

    margin: 0;

}

.footer__bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding-top: 25px;

    text-align: center;

}

.footer__bottom p {

    color: rgba(255, 255, 255, .55);

    font-size: .95rem;

}

/*==================================================
  WHATSAPP FLUTUANTE
==================================================*/

.whatsapp{

    position:fixed;

    right:28px;

    bottom:28px;

    width:68px;

    height:68px;

    border-radius:50%;

    background:#25D366;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:34px;

    z-index:9999;

    box-shadow:0 12px 30px rgba(37,211,102,.35);

    animation:whatsappPulse 2.2s infinite;

}

.whatsapp.is-visible {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.whatsapp:hover {

    transform: translateY(-4px);

    background: #20bc5a;

}

.whatsapp svg {

    width: 30px;

    fill: #fff;

}

@media(max-width:900px) {

    .nav__toggle {
        display: block;
    }

    /* Ícone hambúrguer branco */
    .nav__toggle span {
        background: #ffffff;
    }

    .nav__menu {

        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;

        background: #ffffff;

        flex-direction: column;
        align-items: flex-start;

        gap: 0;
        padding: 0;

        max-height: 0;
        overflow: hidden;

        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

        transition: .35s;
    }

    .nav__menu.is-open {

        max-height: 520px;
        padding: 20px;

    }

    /* Links azuis no menu branco */
    .nav__link {

        width: 100%;
        padding: 16px 0;

        color: var(--primary);

        border-bottom: 1px solid #ececec;

    }

    .nav__link:hover {

        color: var(--primary-dark);

    }

    .nav__link::after {

        background: var(--primary);

    }

    .nav__button {

        margin: 20px 0 0;
        width: 100%;

    }

}

/*==================================================
  TABLET
==================================================*/

@media(max-width:992px) {

    h1 {

        font-size: 2.7rem;

    }

    h2 {

        font-size: 2rem;

    }

    .hero {

        padding-top: 140px;

    }

    .hero__container {

        grid-template-columns: 1fr;

        gap: 60px;

        text-align: center;

    }

    .hero h1,

    .hero p {

        margin-left: auto;

        margin-right: auto;

    }

    .hero__buttons {

        justify-content: center;

    }

    .hero__numbers {

        justify-content: center;

        flex-wrap: wrap;

    }

    .about {

        grid-template-columns: 1fr;

    }

    .benefits {

        grid-template-columns: repeat(2, 1fr);

    }

    .methodology {

        grid-template-columns: repeat(2, 1fr);

    }

    .footer__container {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*==================================================
  CELULAR
==================================================*/

@media(max-width:768px) {

    .section {

        padding: 70px 0;

    }

    h1 {

        font-size: 2.2rem;

    }

    h2 {

        font-size: 1.8rem;

    }

    .hero {

        padding-top: 130px;

        padding-bottom: 70px;

    }

    .hero__buttons {

        flex-direction: column;

    }

    .hero__buttons .btn {

        width: 100%;

    }

    .hero__numbers {

        display: flex;

        justify-content: space-between;

        align-items: flex-start;

        gap: 12px;

        margin-top: 40px;

    }

    .hero__number {

        flex: 1;

        text-align: center;

    }

    .hero__number strong {

        display: block;

        font-size: 1.8rem;

        margin-bottom: 6px;

    }

    .hero__number span {

        display: block;

        font-size: .95rem;

        line-height: 1.3;

        color: var(--text-light);

    }

    .benefits {

        grid-template-columns: 1fr;

    }

    .methodology {

        grid-template-columns: 1fr;

    }

    .footer__container {

        grid-template-columns: 1fr;

        text-align: center;

        gap: 45px;

    }

    .footer__brand {

        display: flex;

        flex-direction: column;

        align-items: center;

    }

    .footer__brand p {

        max-width: 320px;

    }

    .footer__column {

        align-items: center;

    }

}

/*==================================================
  CELULARES PEQUENOS
==================================================*/

@media(max-width:480px) {

    .container {

        width: 92%;

    }

    h1 {

        font-size: 1.9rem;

    }

    h2 {

        font-size: 1.55rem;

    }

    p {

        font-size: 1rem;

    }

    .btn {

        width: 100%;

    }

    .hero__badge {

        font-size: .8rem;

    }

    .about__card,

    .benefit-card,

    .method-card {

        padding: 28px 22px;

    }

    .cta {

        padding: 70px 0;

    }

    .cta h2 {

        font-size: 1.8rem;

    }

    .cta p {

        font-size: 1rem;

    }

    .whatsapp {

        width: 56px;

        height: 56px;

        right: 18px;

        bottom: 18px;

    }

    .whatsapp svg {

        width: 26px;

    }

}

/*==================================================
  AJUSTES FINAIS
==================================================*/

::selection {

    background: var(--primary);

    color: #ffffff;

}

img {

    user-select: none;

    -webkit-user-drag: none;

}

button {

    border: none;

    outline: none;

}

input:focus,
textarea:focus,
select:focus {

    outline: 2px solid rgba(15, 43, 140, .15);

}

body.menu-open {

    overflow: hidden;

}

.icon-wa {

    width: 20px;

    height: 20px;

    fill: currentColor;

}

.footer__credits {

    margin-top: 10px;

    font-size: .9rem;

    color: rgba(255, 255, 255, .55);

}

.footer__credits a {

    color: #8B5CF6;

    font-weight: 600;

    transition: .3s;

}

.footer__credits a:hover {

    color: #A855F7;

    text-decoration: underline;

}

@keyframes whatsappPulse{

    0%{

        transform:scale(1);

        box-shadow:
            0 0 0 0 rgba(37,211,102,.55);

    }

    70%{

        transform:scale(1.08);

        box-shadow:
            0 0 0 18px rgba(37,211,102,0);

    }

    100%{

        transform:scale(1);

        box-shadow:
            0 0 0 0 rgba(37,211,102,0);

    }

}

.whatsapp:hover{

    animation-play-state:paused;

    transform:scale(1.12);

    background:#1EBE57;

}

.footer__social{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

}

.footer__social a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:20px;

    transition:.35s;

}

.footer__social a:hover{

    background:var(--secondary);

    color:var(--primary-dark);

    transform:translateY(-4px);

}