@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #f4f4f1;
    color: #1d1d1d;
    overflow-x: hidden;
}

:root {
    --verde: #19853B;
    --verde2: #76A930;
    --claro: #f6f5f1;
}

/* NAVBAR */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 250px;
    object-fit: contain;
}



.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--verde);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--verde);
    left: 0;
    bottom: -5px;
    transition: .3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 10%;
    background: var(--claro);
}

F .hero-text {
    flex: 1;
}

.hero-text {
    max-width: 900px;
    margin: auto;
}

.hero-text h1 {
    font-size: 78px;
    line-height: 1.1;
    color: var(--verde);

    margin-bottom: 30px;
}

.hero-text p {
    font-size: 20px;
    color: #444;
    max-width: 700px;
    margin: auto;
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn {
    background: var(--verde);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 16px;
    transition: .4s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    background: #29513d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60px;
    height: 100%;
    background: rgba(255, 255, 255, .4);
    transform: skewX(-25deg);
    transition: .8s;
}

.btn:hover::before {

    left: 130%;
}


/* GERAL */

section {
    padding: 120px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 45px;
    color: var(--verde);
    margin-bottom: 15px;
}

.section-title p {
    color: white;
}

/* SOBRE */

#sobre {
    background: var(--verde2);
}

.about {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.about img {
    width: 100%;
    max-width: 380px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.about-text h3 {
    font-size: 38px;
    margin-bottom: 20px;
    margin-top: 0;
    color: white;
}

.section-title2 p {
    text-align: justify;
}

.about-text p {
    line-height: 1, 7;
    font-size: 20px;
    color: white;
}

/* GRID */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARDS */

.card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card i {
    font-size: 40px;
    color: var(--verde2);
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--verde);
}

.card p {
    color: #666;
    line-height: 1.7;
}

.card-ben {
    background: white;
    padding: 35px;
    border-radius: 25px;
    transition: .4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.card-ben:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-ben i {
    font-size: 40px;
    color: var(--verde2);
    margin-bottom: 20px;
}

.card-ben h3 {
    margin-bottom: 15px;
    color: var(--verde);
}

.card-ben p {
    color: #666;
    line-height: 1.7;
    text-align: justify;
}

/* PRODUTOS */

#produtos {
    background: var(--claro);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* BENEFÍCIOS */

#beneficios {
    background: var(--verde2);
}

#beneficios .card h3 {
    color: var(--verde2) !important;
}

#beneficios .card p {
    color: #222 !important;
}

#beneficios .card i {
    color: var(--verde) !important;
}

#beneficios .card-ben h3 {
    color: var(--verde2) !important;
}

#beneficios .card-ben p {
    color: #222 !important;
}

#beneficios .card-ben i {
    color: var(--verde) !important;
}

/* =========================
    BENEFÍCIOS - EFEITO ZOOM
========================= */

#beneficios .card-ben {
    overflow: hidden;
    position: relative;
}

#beneficios .card-ben h3,
#beneficios .card-ben p,
#beneficios .card-ben i {
    transition: 0.4s ease;
}

/* EFEITO AO PASSAR O MOUSE */

#beneficios .card-ben:hover h3 {
    transform: scale(1.08);
}

#beneficios .card-ben:hover p {
    transform: scale(1.04);
}

#beneficios .card-ben:hover i {
    transform: scale(1.18) rotate(5deg);
}

/* CERTIFICADOS */

#certificados {
    background: var(--claro);
}

.testimonial {
    text-align: center;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: auto;
    margin-bottom: 20px;
}

/* CONTATO */

#contato {
    background: var(--verde2);
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h3 {
    color: #4b4b4b !important;
}

.contact-box p {
    color: #222 !important;
}

form {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 12px;
    background: #f1f1f1;
    font-family: 'Montserrat';
}

textarea {
    resize: none;
    height: 140px;
}

/* FOOTER */

footer {
    background: var(--claro);
    padding: 70px 10% 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* CONTAINER */

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;

    margin-bottom: 40px;
}

/* BOX */

.footer-box {
    flex: 1;
    min-width: 280px;
}

/* LOGO */

.footer-logo {
    width: 260px;
    margin-bottom: 20px;
}

/* SLOGAN */

.footer-slogan {
    color: #555;
    line-height: 1.8;
    max-width: 450px;
    font-size: 15px;
}

/* TÍTULO */

.footer-box h3 {
    color: var(--verde);
    margin-bottom: 20px;
    font-size: 26px;
}

/* TEXTOS */

.footer-box p {
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

/* ÍCONES */

.footer-box i {
    color: var(--verde);
    font-size: 18px;
}

/* COPYRIGHT */

.footer-copy {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 25px;

    text-align: center;

    color: #666;

    font-size: 14px;
}

/* RESPONSIVO */

@media(max-width:900px) {

    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-logo {
        width: 200px;
    }

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text p {
        font-size: 17px;
    }

}



/* RESPONSIVO */

@media(max-width:900px) {

    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 45px;
    }

    .about {
        flex-direction: column;
    }

    .contact {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

}

/* =========================
    PRODUTOS NOVOS
========================= */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: #f7f7f7;
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    font-size: 34px;
    color: var(--verde);
    margin-bottom: 5px;
}

.product-info span {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--verde2);
    font-weight: 600;
    font-size: 18px;
}

.product-info p {
    color: #666;
    line-height: 1.8;
}

/* RESPONSIVO */

@media(max-width:1100px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:700px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
    TEXTOS BRANCOS
========================= */

#sobre .section-title h2,
#beneficios .section-title h2,
#contato .section-title h2,
#sobre h3,
#beneficios h3,
#contato h3 {
    color: white;
}

#sobre .section-title p,
#beneficios .section-title p,
#contato .section-title p,
#sobre p,
#beneficios p,
#contato p {
    color: #eeeeee;
}

/* =========================
    ÁREAS CLARAS
========================= */

#produtos .section-title h2,
#certificados .section-title h2 {
    color: var(--verde);
}

#produtos .section-title p,
#certificados .section-title p {
    color: #555;
}

/* =========================
    CERTIFICADOS
========================= */

.certificados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: center;
    justify-items: center;
}

/* CARD CERTIFICADO */

.certificado {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 25px;
    padding: 18px;
    transition: 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.certificado img {
    width: 95%;
    height: 95%;
    object-fit: contain;
    transition: 0.4s ease;
}

/* EFEITO HOVER */

.certificado:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border: 2px solid var(--verde);
    box-shadow: 0 20px 35px rgba(25, 133, 59, .15);
}

.certificado:hover img {
    transform: scale(1.12);
}

/* CENTRALIZAR ÚLTIMO */

.ultimo-certificado {
    grid-column: 2 / 4;
}

/* RESPONSIVO */

@media(max-width:1000px) {
    .certificados-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .ultimo-certificado {
        grid-column: auto;
    }
}

@media(max-width:700px) {
    .certificados-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .certificado {
        width: 170px;
        height: 170px;
    }

}

@media(max-width:500px) {
    .certificados-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
    WHATSAPP FIXO
========================= */

.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: 0.4s ease;
    animation: float 2.5s ease-in-out infinite;
}

/* ÍCONE */

.whatsapp-button i {
    color: white;
    font-size: 38px;
}

/* HOVER */

.whatsapp-button:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* ANIMAÇÃO */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

/* RESPONSIVO */

@media(max-width:700px) {
    .whatsapp-button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button i {
        font-size: 32px;
    }
}

/* =========================
    GRID RESPONSIVO
========================= */

@media(max-width:1000px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:700px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
    PRODUTOS - EFEITO ZOOM
========================= */

.product-card {
    overflow: hidden;
    position: relative;
}

/* IMAGEM */

.product-card img {
    transition: 0.5s ease;
}

/* TEXTOS */

.product-info h3,
.product-info span,
.product-info p {
    transition: 0.4s ease;
}

/* HOVER CARD */

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ZOOM IMAGEM */

.product-card:hover img {
    transform: scale(1.08);
}

/* ZOOM TÍTULO */

.product-card:hover h3 {
    transform: scale(1.08);
}

/* ZOOM SUBTÍTULO */

.product-card:hover span {
    transform: scale(1.05);
}

/* ZOOM TEXTO */

.product-card:hover p {
    transform: scale(1.03);
}

/* =========================
    PÁGINA OBRIGADO
========================= */

.obrigado {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--verde2);
}

.obrigado-card {
    margin-top: 110px;
    width: 100%;
    max-width: 700px;
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.obrigado-card i {
    font-size: 70px;
    color: var(--verde);
    margin-bottom: 20px;
}

.obrigado-card h1 {
    color: var(--verde);
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.obrigado-card p {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.navbar-obrigado {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background: white;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

/* =========================
   SOFTCANN
========================= */

#softcann {
    background: var(--claro);
    padding: 100px 10%;
}

#softcann .container {
    display: flex;
    justify-content: center;
}

.softcann-image {
    flex: 1;
}

.softcann-image img {
    width: 100%;
    max-width: 420px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.softcann-content {
    max-width: 900px;
    margin: 0 auto;
}

.softcann-content h2 {
    color: var(--verde);
    margin-bottom: 25px;
}

.softcann-content p {
    color: #444;
    font-size: 17px;
    line-height: 2;
    text-align: justify;
    margin-bottom: 20px;
}

/* =========================
    LOGO SOFTCANN
========================= */

.softcann-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

/* =========================
    QUEM SOMOS
========================= */

.sobre-content {
    max-width: 900px;
    margin: 0 auto;
}

.sobre-content p {
    color: white;
    font-size: 17px;
    line-height: 2;
    text-align: justify;
}

.about-text2 {
    max-width: 900px;
}

.about-text2 h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: white;
}

.about-text2 p {
    font-size: 17px;
    line-height: 2;
    text-align: justify;
    margin-bottom: 20px;
    color: white;
}

.about2 {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.about2 img {
    max-width: 380px;
    border-radius: 25px;
    object-fit: cover;
}

/* NAVBAR SCROLL */

.navbar {
    transition: .4s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}





#sobre,
#beneficios,
#contato {
    position: relative;
    overflow: hidden;
}

#sobre::before,
#beneficios::before,
#contato::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    background: rgba(255, 255, 255, 0.08);

    border-radius: 45% 55% 65% 35%;

    top: -250px;
    right: -250px;

    animation: floatShape 12s ease-in-out infinite;
}

#sobre::after,
#beneficios::after,
#contato::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(255, 255, 255, 0.05);

    border-radius: 60% 40% 30% 70%;

    bottom: -200px;
    left: -150px;

    animation: floatShape 15s ease-in-out infinite reverse;
}

@keyframes floatShape {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}




.back-to-top {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: white;
    color: var(--verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: var(--verde);
    color: white;
}

