* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body {
    background-color: #e5e5e5;
}

/* HEADER */
header {
    background: white;
    padding: 15px 40px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.cabecalho {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 80px;
}

/* MENU */
nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-size: 16px;
}

/* HERO */
.hero {
    background-color: #abc3ff;
    display: flex;
    justify-content: center;
    align-items: center;     
    min-height: 100vh;      
    padding: 0 20px;
}

.hero-conteudo {
    background: #0056ff;
    color: white;
    text-align: center;
    padding: 120px 60px;     
    border-radius: 40px;     
    width: 70%;
    max-width: 1000px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-conteudo h1 {
    font-size: 70px;
    margin-bottom: 40px;
    line-height: 1.2;
}

.hero-conteudo p {
    font-size: 30px;
    margin-bottom: 40px;
}

.btn {
    padding: 16px 40px;
    font-size: 18px;
    background-color: white;
    color: #0047ff;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #dfe6ff;
}

/* INFO */
.info {
    padding: 60px 15%;
    text-align: center;
}

.cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    flex: 1 1 250px; /* largura mínima de 250px */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.icone-card {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}


.icone-card-placeholder {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px auto;
    background-color: #e0e0e0; 
    border-radius: 12px;
}


/* CONTATO */
.contato {
    padding: 60px 15%;
    text-align: center;
}

.form-contato {
    background: white;
    max-width: 600px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);

    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-contato input,
.form-contato textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

.form-contato button {
    padding: 14px;
    background-color: #1877f2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.form-contato button:hover {
    background-color: #165dc1;
}


footer {
    background: white;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 -1px 4px rgba(0,0,0,0.1);
}
.mapa
{
    display: flex;
    align-items: center;
    gap: 10px;
}