/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.card-container {
    background: white;
    width: 950px;
    height: 550px;
    padding: 60px;
    position: relative; /* Necessário para o posicionamento do símbolo */
    border-bottom: 15px solid #00cae3;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden; /* Corta o que sobrar da imagem lateral */
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2; /* Garante que o texto fique acima de qualquer fundo */
}

.main-logo {
    height: 60px;
    width: auto;
    margin-bottom: 35px;
    object-fit: contain;
}

.main-title {
    color: #1a1e26;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.main-title span {
    color: #00cae3;
}

.desc-text {
    color: #444;
    font-size: 17px;
    margin-bottom: 8px;
    max-width: 550px;
}

/* BOTÃO */
.button-wrapper {
    margin-top: 30px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: #00cae3;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
    transition: 0.3s;
}

.cta-button:hover {
    background-color: #00acc1;
    transform: translateY(-2px);
}

.cursor-icon {
    margin-left: 15px;
    font-size: 20px;
}

/* CONTATO */
.contact-footer {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
}

.phone-icon-img {
    width: 50px; /* Ajuste conforme o tamanho original do seu ícone */
    height: 50px;
    margin-right: 15px;
    object-fit: contain;
}

.contact-numbers .label {
    font-size: 14px;
    color: #666;
}

.contact-numbers .numbers {
    font-size: 17px;
    font-weight: 700;
    color: #1a1e26;
}

/* POSICIONAMENTO DA IMAGEM LATERAL (ekazza-body) */
.graphic-side {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 80%; /* Ajuste o tamanho conforme necessário */
    z-index: 1;
}

.ekazza-body-img {
    height: 90%;
    width:80%;
    object-fit: contain;
    /* Se a imagem precisar ficar um pouco para fora como no print: */
    margin-right: -5px; 
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
    .card-container { width: 95%; height: auto; padding: 30px; flex-direction: column; }
    .graphic-side { display: none; } /* Esconde o símbolo no celular para não cobrir o texto */
    .main-title { font-size: 28px; }
}