:root {
    --lighBlue: rgb(64, 196, 255);
    --darkBlue: rgb(10, 59, 82);
    --darkGray: rgb(43, 43, 43);
    --lightGray: rgb(211, 211, 211);
}
.text-blue {color: var(--lighBlue) !important}
.text-gray {color: var(--darkGray) !important}

.bg-blue {
    background-color: var(--lighBlue) !important;
}

.border-blue {
    border-color: var(--lighBlue);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0;
}

header nav a, pessoa a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

header nav a:hover {
    color: rgb(64, 196, 255);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgb(64, 196, 255) 0%, rgb(10, 59, 82) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;

    h1 {
        font-size: 48px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    p {
        font-size: 18px;
        margin-bottom: 30px;
        color: white;
        /* opacity: 0.95; */
    }
}

/* Stats Section */
.stats {
    padding: 60px 20px;
    background-color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-card h3 {
    font-size: 32px;
    color: rgb(64, 196, 255);
    margin: 10px 0;
}

.stat-card p {
    color: #666;
    font-size: 14px;
}

/* Section */
section {
    padding: 60px 20px;
    background-color: white;
    margin: 20px 0;
}

/* section h2 {
    text-align: center;
    color: #333;
    margin-bottom: 40px;
    font-size: 28px;
} */

section p {
    /* text-align: center; */
    color: #666;
    /* margin-bottom: 40px; */
    font-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(64, 196, 255);
    box-shadow: 0 0 4px rgba(255, 175, 47, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-full {
    grid-column: 1 / -1;
}

.btn-primary,
button[type="submit"] {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    background-color: rgb(64, 196, 255);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover,
button[type="submit"]:hover {
    color: white;
    background-color: rgb(10, 59, 82);
}

/* CTA Section */
.cta {
    background-color: rgb(64, 196, 255);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.partner-card {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #f9fafb;
}

/* Contact Section */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
}

.contact-card h3 {
    color: rgb(64, 196, 255);
    margin-bottom: 10px;
}

footer {
    ul {
        li {
            margin-bottom: 5px;

            a {
                color: white;
                font-size: 13px;
            }
        }
    }
}
/* Footer */
footer {
    background-color: var(--darkGray) ;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
    font-size: 14px;
}

footer a {
    color: rgb(64, 196, 255);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 15px;
        margin: 10px 0;
    }

    section h2 {
        font-size: 22px;
    }

    header nav {
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    #contactos .container>div {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .form-grid {
        gap: 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    header nav {
        gap: 10px;
    }

    header nav a {
        font-size: 12px;
    }
}

.loading {
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border: 4pt solid transparent;
    background: linear-gradient(white, white) padding-box, linear-gradient(to top, darkblue -10%, rgb(64 196 255) 90%) border-box;
}

pessoas {
    display: flex;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    width: 100%;
    gap: 20px;
    margin-top: 2rem;
    [class*='item-'] {
        /* display: grid; */
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        grid-template-rows: 260px auto;
        span:first-child {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: center;
            a {
                justify-content: center;
                width: 100%;
                display: flex;
                align-items: center;
                border-radius: 10px;
                height: clamp(321px, 290px, 405px);
                overflow: hidden;
                img {
                    width: 100%;
                    object-fit: cover;
                    height: 100%;
                    transition: transform 300ms ease-in-out;
                }
            }
        }
        &:hover span img {
            transform: scale(1.2) rotate(-10deg);
        }
    }

    .pessoa-detalhe {
        display: flex;
        justify-content: space-between;
    }

    .badge {
        display: flex;
        text-transform: capitalize;
        font-size: 10pt;
        background: #e7e7e7;
        padding: 0 10px;
        border-radius: 30px;
        align-items: center;
        justify-content: center;
        height: 24;
    }
}