body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.navbar-brand {
    font-weight: bold;
    color: #dd9894;
}

.navbar-brand:hover {
    color: #c37871;
}

.navbar-nav .nav-link {
    color: #333;
    margin-right: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #dd9894;
}

/* Hero Section */
.hero {
    background-color: #fdf3f2;
    padding: 100px 0;
    position: relative;
}

.hero img {
    animation: fadeIn 1.5s ease-in-out;
}

.hero h1 {
    font-size: 3rem;
    color: #333;
    font-weight: bold;
    animation: slideIn 1.2s ease-in-out;
}

h1 {
    font-size: 3rem;
    color: #333;
    font-weight: bold;
    animation: slideIn 1.2s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero .btn-primary {
    background-color: #dd9894;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary {
    background-color: #dd9894;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
    
.hero .btn-primary:hover {
    background-color: #c37871;
    transform: scale(1.05);
}

/* Sobre Section */
#sobre img {
    animation: fadeIn 1.5s ease-in-out;
}


#sobre h1 {
    font-size: 3rem;
    color: #333;
    font-weight: bold;
    animation: slideIn 1.2s ease-in-out;
}

#sobre h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
}

/* Áreas de Atuação Section */
#atuacao {
    padding: 80px 0;
    background-color: #fdf3f2;
}

#atuacao .areas-grid div {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#atuacao .areas-grid div:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#atuacao .areas-grid div i {
    font-size: 2rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

#atuacao .areas-grid div:hover i {
    color: #dd9894;
}

/* Modalidades Section */
#modalidades {
    background-color: #fdf3f2;
    color: black;
    padding: 80px 0;
}

#modalidades .p-4 {
    border: 1px solid #ffffff;
    transition: transform 0.3s ease;
    
}

#modalidades .p-4:hover {
    transform: scale(1.05);
    background-color:  #dd9894;
}

/* FAQ Section */
#faq .accordion-button {
    font-weight: bold;
    color: #333;
    background-color: #ffffff;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

#faq .accordion-button:hover {
    background-color: #fdf3f2;
    transform: scale(1.02);
}

.faq-item {
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #333;
    color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
