* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #4C6FFF, #7F56DA);
    color: #fff;
}

/* HEADER */
.header {
    width: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.header_container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

/* HERO */
.hero_section {
    max-width: 1200px;
    margin: auto;
    padding: 140px 20px 60px;
    text-align: center;
}

.hero_text h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero_text p {
    max-width: 800px;
    margin: auto;
    font-size: 17px;
    color: #f0f0f0;
    line-height: 1.6;
}

/* CARDS */
.cards_container {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 60px;
}

.card {
    width: 320px;
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(76, 111, 255, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.35s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 40px rgba(127, 86, 218, 0.35);
}

/* LOGO CIRCULAR */
.logo_circle {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    background: #E0E7FF;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo_circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* BOTÃO */
.visit_btn {
    margin-top: 25px;
    padding: 14px 45px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #4C6FFF, #7F56DA);
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(76, 111, 255, 0.3);
}

.visit_btn:hover {
    background: linear-gradient(135deg, #7F56DA, #4C6FFF);
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(127, 86, 218, 0.35);
}

/* FOOTER */
.footer {
    margin-top: 80px;
    padding: 25px;
    text-align: center;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    font-size: 14px;
    color: #fff;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .cards_container {
        flex-direction: column;
        gap: 40px;
    }
}
