/* Estilos personalizados */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFBF6;
    /* custom-off-white */
}

.hero-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../assets/egito\ costas.jpg?v=22s123');
    background-size: cover;
    background-position: center 30%;
}

.section-title {
    font-size: 2.5rem;
    /* 40px */
    font-weight: 700;
    color: #3B84B7;
    /* custom-steel-blue */
    text-align: center;
    margin-bottom: 1.5rem;
    /* 24px */
}

.logo {
    margin-top: 7px !important;
    height: 7rem;
}

.section-subtitle {
    font-size: 1.125rem;
    /* 18px */
    color: #475569;
    /* slate-600 */
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    /* 48px */
}

.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    /* 12px */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background-color: #FBA57A;
    color: #FFFBF6;
    padding: 0.75rem 1.5rem;
    /* 12px 24px */
    border-radius: 0.5rem;
    /* 8px */
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #e79061;
    /* Um tom mais escuro do coral */
}

.btn-secondary {
    background-color: #3B84B7;
    /* custom-steel-blue */
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2a6ca1;
    /* Um tom mais escuro do steel blue */
}

/* Mobile menu styles */
.mobile-menu {
    display: none;
}

.payment-icon {
    font-size: 2.5rem;
    /* Tamanho dos ícones de pagamento */
    color: #D2E0E4;
    /* custom-light-blue-gray */
    margin: 0 0.5rem;
    /* Espaçamento entre os ícones */
}

/* Add this new rule or modify an existing one for the email link */
.email-contact-link {
    /* You'll add this class to your <a> tag */
    min-width: 0;
}

@media (max-width: 844px) {

    /* Adjust breakpoint as needed, e.g., 'md' in Tailwind */
    .email-contact-link span {
        font-size: 1.00rem;
    }    
}