html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: #2C3E50;
    background-color: #F9F9F9;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.hero {
    background: linear-gradient(rgba(92, 158, 173, 0.85), rgba(58, 124, 165, 0.85));
    background-size: cover;
    background-position: center;
    min-height: 90vh;
}

.hero video {
    opacity: 0.3;
    /* ajuste entre 0 e 1 conforme desejado */
}

.foto-perfil {
    width: 250px;
    /* ou 200px, ou 300px — depende do tamanho desejado */
    height: 250px;
    overflow: hidden;
    border-radius: 9999px;
    /* equivale a Tailwind `rounded-full` */
    position: relative;
}

.foto-perfil img {
    position: absolute;
    width: auto;
    height: 400px;
    /* > 250px para gerar zoom */
    object-fit: cover;
    object-position: 30%;
    /* horizontal center, vertical um pouco acima */
}


.section-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100px;
}

.about-bg {
    background-color: #EFF7FA;
}

.act-bg {
    background-color: #2C3E50;
}

.btn-primary {
    background-color: #3A7CA5;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #2C3E50;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #3d636e;
    color: white;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #C09A72;
    transform: translateY(-2px);
}

.nav-link {
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #3A7CA5;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.contact-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.mobile-menu.open {
    max-height: 500px;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.testimonial-card {
    border-left: 4px solid #5C9EAD;
    background-color: white;
}
