* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* HEADER */
header { padding: 30px 0; }
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo, .logo a {
    font-family: 'Syncopate', sans-serif;
    font-weight: 200;
    font-size: 32px; /* Tamanho exato */
    letter-spacing: -1px;
    text-decoration: none;
    color: #000;
    line-height: 1;
}
.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px; /* Ajuste conforme seu Figma */
    font-weight: 0;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    transition: color 0.3s;
}
.nav-links a:hover { color: #000; }

/* BARRA DE PESQUISA */
.search-section { padding: 40px 0; }

.search-bar {
    background: #000;
    width: 100%;
    max-width: 800px; 
    margin: 0 auto; 
    border-radius: 50px; 
    padding: 10px 30px; /* Reduzi um pouco o padding vertical */
    display: flex; 
    align-items: center; /* Alinha o texto e a lupa no centro vertical */
}

.search-bar input {
    background: transparent; /* Remove o fundo branco */
    border: none;            /* Remove a borda padrão */
    color: white;           /* Cor do texto que você digita */
    flex: 1;                /* Faz o campo ocupar todo o espaço restante */
    padding: 10px 0;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    outline: none;          /* Remove aquela linha azul ao clicar */
}

/* Cor do texto de exemplo (placeholder) */
.search-bar input::placeholder {
    color: #666;
}

.search-icon {
    cursor: pointer; 
    margin-left: 15px; /* Espaço entre o texto e a lupa */
    transition: transform 0.2s ease;
}

/* TÍTULOS */
.main-title-section {
    text-align: center;
    padding: 80px 0 60px;
}
.main-title-section h1 {
    font-size: 48px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.main-title-section p {
    color: #888;
    font-size: 14px;
}

/* GRID DE CARDS */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}
.card {
    display: flex;
    flex-direction: column;
}
.card-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px -10px rgba(0, 114, 255, 0.2);
    transition: transform 0.3s ease;
}
.card:hover .card-image {
    transform: translateY(-5px);
}
.card-content h3 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
}

/* SEÇÃO DE TEXTO (CONDUTA) */
.conduct-section {
    margin-bottom: 120px;
    max-width: 1000px;
}
.conduct-section h2 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
}
.conduct-section p {
    font-size: 14px;
    color: #555;
    text-align: justify;
    line-height: 1.9;
}

/* RODAPÉ */
footer {
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid #f0f0f0;
}
.footer-links { width: 35%; }
.footer-links .plus {
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    font-weight: 300;
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    font-size: 11px;
    font-weight: 700;
    color: #999;
    transition: 0.3s;
    text-transform: uppercase;
}
.footer-links ul li a:hover { color: #000; }

/* NEWSLETTER */
.newsletter-box {
    background: #f7f7f9;
    padding: 50px;
    border-radius: 8px;
    width: 55%;
}
.newsletter-box h4 {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.input-group {
    display: flex;
    background: white;
    border: 1px solid #e5e5e5;
    padding: 5px;
    border-radius: 4px;
}
.input-group input {
    border: none;
    padding: 15px;
    flex: 1;
    outline: none;
    font-size: 14px;
}
.input-group button {
    background: black;
    color: white;
    border: none;
    width: 50px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s;
}
.input-group button:hover { background: #333; }
.disclaimer {
    font-size: 10px;
    color: #aaa;
    margin-top: 15px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .cards-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 60px; }
    footer { flex-direction: column; gap: 60px; }
    .footer-links, .newsletter-box { width: 100%; }
    .nav-links { display: none; }
}
.content-about {
    max-width: 900px;
    margin: 60px auto;
    text-align: center;
}

.content-about h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 30px;
}

.content-about h2 {
    font-size: 28px;
    font-weight: 900;
    margin: 40px 0 20px;
}

.content-about p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}