/* ==========================================================
   01 • IMPORTAÇÃO DAS FONTES
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');


/* ==========================================================
   02 • VARIÁVEIS
========================================================== */

:root {
    --primary: #FF6B35;
    --secondary: #FFD166;
    --accent: #4ECDC4;
    --pink: #FF5DA2;
    --purple: #7B61FF;
    --background: #FFF9F5;
    --white: #FFFFFF;
    --title: #2D3142;
    --text: #5C6470;
    --border: #ECECEC;
    --radius: 24px;
    --shadow: 0 18px 40px rgba(0,0,0,.08);
    --transition: .35s ease;
}


/* ==========================================================
   03 • RESET
========================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope',sans-serif;
    background: var(--background);
    color: var(--text);
    overflow-x: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

section {
    padding: 110px 0;
}


/* ==========================================================
   04 • CONTAINER
========================================================== */

.container {
    width: min(1180px,92%);
    margin: auto;
}


/* ==========================================================
   05 • TÍTULOS
========================================================== */

h1, h2, h3 {
    color: var(--title);
    font-family: 'Baloo 2',cursive;
    line-height: 1.1;
}

h1 {
    font-size: 4.5rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

h3 {
    font-size: 1.5rem;
}

p {
    line-height: 1.8;
    font-size: 1.05rem;
}


/* ==========================================================
   06 • SECTION HEADER
========================================================== */

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 50px;
    background: #FFF;
    color: var(--primary);
    font-weight: 700;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}


/* ==========================================================
   07 • BOTÕES
========================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 38px;
    border-radius: 60px;
    background: var(--primary);
    color: #FFF;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 12px 30px rgba(255,107,53,.25);
}

    .btn-primary:hover {
        transform: translateY(-5px);
        background: #F55A22;
    }
/* ==========================================================
   08 • HEADER
========================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0,0,0,.05);
    transition: var(--transition);
}


/* ==========================================================
   NAVBAR
========================================================== */

.navbar {
    width: min(1180px,92%);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ==========================================================
   LOGO
========================================================== */

.logo img {
    width: 170px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.04);
}


/* ==========================================================
   MENU
========================================================== */

.menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .menu a {
        position: relative;
        font-weight: 700;
        color: var(--title);
        transition: var(--transition);
    }


        /* Linha animada */

        .menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 3px;
            border-radius: 20px;
            background: var(--primary);
            transition: var(--transition);
        }

        .menu a:hover {
            color: var(--primary);
        }

            .menu a:hover::after {
                width: 100%;
            }


/* ==========================================================
   MENU MOBILE
========================================================== */

.hamburguer {
    display: none;
    font-size: 2rem;
    background: none;
    color: var(--title);
}


/* ==========================================================
   HERO
========================================================== */

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
}


    /* Fundo */

    .hero::before {
        content: "";
        position: absolute;
        width: 750px;
        height: 750px;
        border-radius: 50%;
        background: rgba(78,205,196,.10);
        right: -250px;
        top: -180px;
    }

    .hero::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(255,209,102,.18);
        left: -180px;
        bottom: -180px;
    }


/* ==========================================================
   GRID
========================================================== */

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 2;
}


/* ==========================================================
   TEXTO
========================================================== */

.hero-tag {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: #FFF;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.hero h1 {
    margin-bottom: 25px;
}

.hero p {
    max-width: 560px;
    margin-bottom: 40px;
    font-size: 1.15rem;
}


/* ==========================================================
   IMAGEM
========================================================== */

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

    .hero-image img {
        width: 100%;
        max-width: 520px;
        animation: float 5s ease-in-out infinite;
    }


/* ==========================================================
   ANIMAÇÃO
========================================================== */

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==========================================================
   09 • QUEM SOMOS
========================================================== */

.about {
    position: relative;
    background: #FFFFFF;
}


/* ==========================================================
   GRID
========================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}


/* ==========================================================
   IMAGEM
========================================================== */

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        height: 620px;
        object-fit: cover;
        border-radius: 32px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .about-image::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border: 4px dashed var(--secondary);
        border-radius: 32px;
        top: 18px;
        left: 18px;
        z-index: -1;
    }

    .about-image:hover img {
        transform: scale(1.02);
    }


/* ==========================================================
   TEXTO
========================================================== */

.about-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .about-content h2 {
        max-width: 520px;
    }

    .about-content p {
        max-width: 560px;
    }


/* ==========================================================
   DIFERENCIAIS
========================================================== */

.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-top: 20px;
}


/* ==========================================================
   CARD
========================================================== */

.feature-card {
    background: #FFF;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
    transition: var(--transition);
    border: 2px solid transparent;
}

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent);
    }


    /* ==========================================================
   ÍCONES
========================================================== */

    .feature-card i {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--accent);
        color: #FFF;
        font-size: 1.4rem;
        margin-bottom: 18px;
        transition: var(--transition);
    }

    .feature-card:hover i {
        transform: rotate(-10deg) scale(1.08);
        background: var(--primary);
    }


    /* ==========================================================
   TÍTULO
========================================================== */

    .feature-card h3 {
        margin-bottom: 10px;
        font-size: 1.2rem;
    }


    /* ==========================================================
   TEXTO
========================================================== */

    .feature-card p {
        font-size: .95rem;
        line-height: 1.6;
    }

/* ==========================================================
   10 • SERVIÇOS
========================================================== */

.services {
    position: relative;
    background: linear-gradient( 180deg, #FFF, #FFF8F2 );
}


/* ==========================================================
   GRID
========================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 35px;
}


/* ==========================================================
   CARD
========================================================== */

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #FFF;
    box-shadow: 0 18px 40px rgba(0,0,0,.08);
    transition: var(--transition);
    cursor: pointer;
}


    /* ==========================================================
   IMAGEM
========================================================== */

    .service-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: .7s ease;
    }


    /* ==========================================================
   TEXTO
========================================================== */

    .service-card h3 {
        padding: 28px;
        text-align: center;
        font-size: 1.5rem;
    }


    /* ==========================================================
   LINHA DECORATIVA
========================================================== */

    .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient( 90deg, var(--primary), var(--secondary), var(--accent) );
    }


    /* ==========================================================
   OVERLAY
========================================================== */

    .service-card::after {
        content: "Clique para saber mais";
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        padding: 12px 28px;
        border-radius: 50px;
        background: rgba(255,255,255,.95);
        color: var(--title);
        font-weight: 700;
        opacity: 0;
        transition: var(--transition);
    }


    /* ==========================================================
   HOVER
========================================================== */

    .service-card:hover {
        transform: translateY(-12px);
    }

        .service-card:hover img {
            transform: scale(1.08);
        }

        .service-card:hover::after {
            opacity: 1;
        }


    /* ==========================================================
   SOMBRA
========================================================== */

    .service-card:hover {
        box-shadow: 0 30px 60px rgba(0,0,0,.12);
    }

.service-content {
    padding: 30px;
    text-align: center;
}

    .service-content p {
        margin-top: 12px;
        font-size: .95rem;
    }

/* ==========================================================
   11 • MODAL
========================================================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9999;
}

    .modal.active {
        opacity: 1;
        visibility: visible;
    }

.modal-content {
    width: min(650px,92%);
    background: #FFF;
    padding: 50px;
    border-radius: 30px;
    position: relative;
    animation: modalShow .35s ease;
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    font-size: 2rem;
    color: var(--title);
}

@keyframes modalShow {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================
   12 • PARCEIROS
========================================================== */

.partners {
    position: relative;
    background: #FFFFFF;
}


/* ==========================================================
   GRID
========================================================== */

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}


/* ==========================================================
   IMAGEM
========================================================== */

.partners-image {
    position: relative;
}

    .partners-image img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 30px;
        box-shadow: var(--shadow);
        transition: var(--transition);
    }

    .partners-image:hover img {
        transform: scale(1.02);
    }


/* ==========================================================
   CONTEÚDO
========================================================== */

.partners-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

    .partners-content h2 {
        max-width: 500px;
    }

    .partners-content p {
        max-width: 520px;
    }


    /* ==========================================================
   BOTÃO
========================================================== */

    .partners-content .btn-primary {
        width: max-content;
        margin-top: 15px;
    }

/* ==========================================================
   13 • CONTATO
========================================================== */

.contact {
    background: linear-gradient( 180deg, #FFF8F2, #FFFFFF );
}


/* ==========================================================
   GRID
========================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* ==========================================================
   LISTA
========================================================== */

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 35px;
}


/* ==========================================================
   ITEM
========================================================== */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

    .contact-item i {
        width: 58px;
        height: 58px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--primary);
        color: #FFF;
        font-size: 1.3rem;
        flex-shrink: 0;
        transition: var(--transition);
    }

    .contact-item:hover i {
        background: var(--accent);
        transform: rotate(-10deg);
    }

    .contact-item h3 {
        margin-bottom: 6px;
    }


/* ==========================================================
   MAPA
========================================================== */

.contact-map {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .contact-map iframe {
        width: 100%;
        height: 520px;
        border: none;
    }

/* ==========================================================
   14 • FOOTER
========================================================== */

.footer {
    background: #2D3142;
    color: rgba(255,255,255,.85);
    padding: 80px 0 30px;
}


/* ==========================================================
   GRID
========================================================== */

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}


/* ==========================================================
   TÍTULOS
========================================================== */

.footer h3,
.footer h4 {
    color: #FFF;
    margin-bottom: 20px;
}


/* ==========================================================
   LINKS
========================================================== */

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    transition: var(--transition);
}

    .footer-links a:hover {
        color: var(--secondary);
        padding-left: 6px;
    }


/* ==========================================================
   REDES SOCIAIS
========================================================== */

.social-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

    .social-icons a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255,255,255,.10);
        transition: var(--transition);
    }

        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }

    .social-icons i {
        color: #FFF;
        font-size: 1.2rem;
    }


/* ==========================================================
   COPYRIGHT
========================================================== */

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 25px;
    font-size: .95rem;
}

/* ==========================================================
   15 • BOTÃO WHATSAPP
========================================================== */

.whatsapp-button {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 2rem;
    box-shadow: 0 15px 35px rgba(37,211,102,.35);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

    .whatsapp-button:hover {
        transform: scale(1.12);
    }

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,.45);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37,211,102,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* ==========================================================
   16 • ANIMAÇÕES
========================================================== */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }


.fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: .8s ease;
}

    .fade-left.show {
        opacity: 1;
        transform: none;
    }


.fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: .8s ease;
}

    .fade-right.show {
        opacity: 1;
        transform: none;
    }

/* ==========================================================
   17 • SCROLL
========================================================== */

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient( var(--primary), var(--accent) );
    border-radius: 20px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary);
    }


/* ==========================================================
   18 • SELEÇÃO
========================================================== */

::selection {
    background: var(--primary);
    color: #FFF;
}

/* ==========================================================
   19 • RESPONSIVO
========================================================== */

@media(max-width:1024px) {

    .hero-content,
    .about-grid,
    .partners-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}


@media(max-width:768px) {

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .menu {
        display: none;
    }

    .hamburguer {
        display: block;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 150px;
    }

    .hero-image img {
        max-width: 340px;
    }

    .contact-map iframe {
        height: 320px;
    }

    section {
        padding: 80px 0;
    }
}


@media(max-width:480px) {

    .container {
        width: 92%;
    }

    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .btn-primary {
        width: 100%;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
        right: 20px;
        bottom: 20px;
    }
}

/* ==========================================================
   20 • ACABAMENTO
========================================================== */

html {
    scroll-padding-top: 110px;
}

img {
    user-select: none;
    -webkit-user-drag: none;
}

button,
a {
    transition: var(--transition);
}

input,
textarea {
    font-family: inherit;
}

    input:focus,
    textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 5px rgba(255,107,53,.12);
    }