@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #faf7f2;
    color: #333;
}

header {
    background: linear-gradient(135deg, #aec7f8, #3778fd);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    height: auto; /* deixa o header crescer naturalmente */
}


.logo {
    height: 60px; /* tamanho ideal */
    width: auto;
}

.menu-btn {
    background: transparent;
    padding: 6px 10px;
    color: white;
    font-size: 16px;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

.menu-btn:hover {
    opacity: 0.7;
}

.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 175px 80px;
    background: url('../img/layout.jpg') center/cover no-repeat;
    color: white;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    max-width: 600px;
    z-index: 2;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #aec7f8;
    color: #333;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.section {
    padding: 60px 40px;
}

.section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #3778fd;
}

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

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

footer {
    background: #3778fd;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.frase-destaque {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    color: #3778fd;
    max-width: 700px;
    margin: 60px 0;
    padding: 20px 30px;
    border-left: 6px solid #aec7f8; /* cor da barra lateral */
    background: #f5f5f5; /* leve fundo cinza */
    border-radius: 6px;
    text-align: left; /* garante alinhamento */
}

 /*IMAGENS QUE FICAM NO MEIO DOS TEXTOS */

.texto-com-imagem {
    display: flex;
    flex-direction: row-reverse; /* imagem vai para a direita */
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
    padding: 0 40px; /* 🔥 adiciona o mesmo espaçamento lateral */
}

.img-lateral {
    width: 500px;
    border-radius: 8px;
}

.conteudo-texto {
    flex: 1;
}




.contato-botao {
    text-align: center;
    padding: 60px 0;
}

.btn-contato {
    display: inline-block;
    padding: 14px 28px;
    background: #aec7f8;
    color: #333;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-contato:hover {
    background: #3778fd;
}
