/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap'); */

.cal-sans-regular {
    font-family: "Cal Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    color: #111827;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to right, #02042A, #131359);
    color: white;
    padding: 3rem 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn {
    background-color: white;
    color: #131359;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn:hover {
    background-color: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 4rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    margin-bottom: 1rem;
    color: #2b2ba8;
}

/* WHATSAPP ICON */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px;
    border-radius: 50%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    
}

.whatsapp-float img {
    width: 45px;
    height: 45px;
}

/* MENSAGEM DE FALA "tooltip" */
.whatsapp-tooltip {
    background-color: #ffffff;
    color: #000000;
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 8px;
    position: absolute;
    right: 50px;
    bottom: 50px;
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    animation: showTooltip 1s ease-in-out 5s forwards;
}

@keyframes showTooltip {
    to {
        opacity: 1;
    }
}

/* FINAL DA PAGINA, COPYRIGHT ENTRE OUTROS | NAO ESQUECER DOS ÍCONES*/

footer {
    background-color: #f3f4f6;
    padding: 2.5rem 0;
    color: #374151;
    border-top: 1px solid #e5e7eb;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #111827;
}

.footer-section p {
    margin: 0.4rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-copy {
    width: 100%;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #6b7280;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features {
        flex-direction: column;
        align-items: center;
    }
}