/* --- RESET BÁSICO E CONFIGURAÇÕES GLOBAIS --- */
:root {
    --primary-color: #5E62A9;
    --text-dark: #000000;
    --text-light: #999999;
    --background-light: #FFFFFF;
    --background-grey: #F5F5F5;
    --whatsapp-green: #27E800;
    --border-color: rgba(0, 0, 0, 0.1);
}

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

*[aria-disabled="true"] {cursor: not-allowed;pointer-events: none;}

.hide {display: none;}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-light);
    background-image: url(background.jpg);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1820px;
    margin: 0 auto;
    padding: 0 50px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- CABEÇALHO --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 50px!important;
    padding-bottom: 50px!important;
}

.logo img {
    display: block;
}

.main-nav {
    background-color: var(--background-grey);
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--background-grey);
    border-radius: 10px;
    font-size: 20px;
    color: var(--text-dark);
}

/* --- CONTEÚDO PRINCIPAL --- */
main {
    display: flex;
    gap: 100px;
    align-items: center;
    min-height: calc(100vh - 250px); /* Ajuste de altura para centralizar verticalmente */
}

.image-section {
    flex: 0 0 700px; /* Não cresce, não encolhe, base de 700px */
}

.image-section img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 50px;
}

.content-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content-section h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
}

.content-section h1 strong {
    font-weight: 700;
}

.content-section > p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
}

/* --- GRUPO DE CARDS --- */
.card-group {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: rgba(245, 245, 245, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 40px;
    padding: 40px 25px;
    flex: 1;
    min-width: 300px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card h2 {
    color: var(--primary-color);
    font-size: 24px;
}

.whatsapp-btn {
    width: 44px;
    height: 44px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card .address {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.card .phone {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    margin-bottom: 20px;
}

.card .email {
    font-size: 12px;
    color: var(--primary-color);
    text-decoration: underline;
}

/* --- RODAPÉ --- */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px!important;
    padding-bottom: 40px!important;
    font-size: 12px;
    color: var(--text-light);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 1600px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
    main {
        gap: 50px;
    }
    .image-section {
        flex-basis: 500px;
    }
     .image-section img {
        height: 500px;
    }
}

@media (max-width: 1200px) {
    .main-nav, .image-section {
        display: none; /* Esconde a navegação principal em telas menores */
    }
     .card-group {
        flex-wrap: wrap; /* Permite que os cards quebrem a linha */
    }
}


@media (max-width: 992px) {
    main {
        flex-direction: column;
        text-align: center;
    }
    .image-section {
        flex-basis: auto;
        width: 100%;
        max-width: 500px; /* Limita o tamanho da imagem no mobile */
    }
     .image-section img {
        height: auto;
    }
    .content-section {
        align-items: center;
    }
    .content-section > p {
        max-width: 100%;
    }
    .card-group {
        flex-direction: column;
        width: 100%;
        max-width: 400px; /* Limita o tamanho dos cards no mobile */
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}