/* =========================
   PINGA NI MIM
   style.css
========================= */

:root {
    --primary: #0D47A1;
    --primary-dark: #08357a;
    --secondary: #8BC34A;
    --secondary-dark: #72a834;
    --light: #f7f9fc;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --radius: 18px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* =========================
   FORMAS DECORATIVAS
========================= */

.bg-shape {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .12;
}

.bg-shape-top {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: -250px;
    right: -180px;
}

.bg-shape-bottom {
    width: 600px;
    height: 600px;
    background: var(--primary);
    bottom: -300px;
    left: -250px;
}

/* =========================
   CONTAINER
========================= */

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* =========================
   HEADER
========================= */

header {
    padding: 20px 0;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-header {
    height: 100px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
    transition: .3s;
}

nav a:hover {
    color: var(--secondary);
}

/* =========================
   HERO
========================= */

.hero {
    padding: 30px 0;/* 40px;*/
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tagline {
    display: inline-block;
    background: rgba(139,195,74,.12);
    color: var(--secondary-dark);
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 25px;
}

.hero p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-list {
    list-style: none;
    margin-bottom: 20px;
}

.hero-list li {
    margin-bottom: 4px;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    max-width: 850px;
    display: block;
    margin: auto;
}

/* =========================
   BOTÕES
========================= */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: .3s;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary);
    color: white;
}

.btn-secondary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    transform: translateY(-2px);
}

/* =========================
   SEÇÕES
========================= */

.section {
    padding: 50px 0;
}

.section-light {
    background: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-light);
}

.white h2,
.white p {
    color: white;
}

/* =========================
   CARDS
========================= */

.cards {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: .3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card span {
    font-size: 2rem;
}

.card h3 {
    margin: 15px 0;
    color: var(--primary);
}

/* =========================
   VANTAGENS
========================= */

.advantages {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.advantage {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.advantage h3 {
    margin-bottom: 15px;
    color: var(--primary);
}

/* =========================
   PRODUTOS
========================= */

.products {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.products div {
    background: white;
    box-shadow: var(--shadow);
    border-radius: var(--radius);
    padding: 25px;
    text-align: center;
    font-weight: 600;
    transition: .3s;
}

.products div:hover {
    transform: translateY(-4px);
}

/* =========================
   PARCEIROS
========================= */

.partners {
    background: linear-gradient(
        135deg,
        var(--primary),
        #1565c0
    );
    padding: 100px 0;
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin: 50px 0;
}

.partner-benefits div {
    background: rgba(255,255,255,.12);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    font-weight: 600;
}

.center {
    text-align: center;
}

/* =========================
   CTA FINAL
========================= */

.cta {
    padding: 100px 0;
    text-align: center;
}

.cta h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 35px;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #081f46;
    color: white;
    padding: 60px 0;
}

.footer-container {
    text-align: center;
}

.footer-logo {
    height: 90px;
    margin-bottom: 20px;
}

footer a {
    color: var(--secondary);
    text-decoration: none;
}

footer p {
    margin-top: 12px;
}

/* =========================
   RESPONSIVO
========================= */

@media(max-width: 1100px){

    .hero-content,
    .cards,
    .advantages,
    .products,
    .partner-benefits{
        grid-template-columns: repeat(2,1fr);
    }

    .hero h1{
        font-size:3rem;
    }

}

@media(max-width: 768px){

    nav{
        display:none;
    }

    .hero{
        padding-top:40px;
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero h1{
        font-size:2.4rem;
    }

    .section{
        padding:70px 0;
    }

    .cards,
    .advantages,
    .products,
    .partner-benefits{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:2rem;
    }

    .cta h2{
        font-size:2rem;
    }

    .logo-header{
        height:55px;
    }

}

@media(max-width:480px){

    .hero h1{
        font-size:2rem;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0,0,0,.25);

    z-index: 9999;

    transition: .3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
