@import url('https://fonts.googleapis.com/css2?family=Anton&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&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* Fundo da página */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background-image: url('../IMG/fundo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(0, 0, 0);  
    background-attachment: fixed; 
}
html {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

/* Estilização do conteúdo principal */


/* ------------------------------------------------------------------- */

:root {
    --bg: #0b0d12;
    --card: #121622;
    --text: #e6e9ef;
    --muted: #9aa4b2;
    --brand: #6ea8fe;
    --shadow: 0 10px 30px rgba(0,0,0,.35);
    --radius: 16px;
    --cor1: #191E29;
    --cor2: #132d46;
    --cor3: #01c38d;
    --cor4: #696e79;
    --cor5: #ffffff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;

    color: var(--text);
    line-height: 1.6;
}

header {
    padding: 15px 15px;
    background-color: var(--cor1);
    color: white;
}
.logo{
    display: flex;
    align-items: center; 
}
.logo img {
    height: 35px;
    padding-right: 25px;
}
.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.menu {
    list-style: none;
    display: flex;
    gap: 30px;
}
.menu a {
    font-family: "Poppins", serif;
    font-size: 20px;
    font-weight: 200;
    color: white;
    text-decoration: none;
    transition: color 0.3s;    
}
.menu a:hover {
    color: var(--cor3);
}




.container-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HERO */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-text h1 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
}

.hero-text h1 span {
    color: var(--cor3);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--muted);
}

.cta .btn {
    text-decoration: none;
    display: inline-block;
    background: var(--cor3);
    color: white;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    transition: filter 0.2s;
    margin-right: 12px;
}

.cta .btn:hover {
    filter: brightness(1.1);
}

.btn.secondary {
    background: transparent;
    border: 1px solid var(--cor3);
    color: var(--cor3);
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* BENEFÍCIOS */
.benefits h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-bottom: 24px;
    color: var(--text);
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background-color: rgba(44, 114, 142, 0.1);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0px 12px var(--cor3);
}

.card h3 {
    color: var(--cor3);
    margin-bottom: 10px;
}

.card p {
    color: var(--muted);
}
.hero-text .miniico img {
    
    width: 45px;
    margin-right: 12px;
    margin-bottom: 20PX;
}
/* RESPONSIVO */
@media(max-width:900px){
  .hero {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 500px) {

/*--------------------------CABEÇALHO*/
header {
    padding: 10px 10px;
    background-color: var(--cor1);
    color: white;
}
.logo{
    display: flex;
    align-items: center; 
}
.logo img {
    height: 20px;
    padding-right: 15px;
}
.menu {
    list-style: none;
    display: flex;
    gap: 15px;
}
.menu a {
    font-family: "Poppins", serif;
    font-size: 12px;
    font-weight: 200;
    color: white;
    text-decoration: none;
    transition: color 0.3s;    
}
}