/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {    
    font-family: 'Montserrat', sans-serif;  
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    scrollbar-width: none;       
    -ms-overflow-style: none;    
}
  
body::-webkit-scrollbar {
    display: none;               
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .hero-banner {
        height: 100vh;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .nav-container {
        width: calc(100% - 20px);
    }
    
    .about {
        padding: 60px 0 40px;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-content {
        padding: 25px;
        margin: 0 10px;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .team {
        padding: 60px 0;
    }
    
    .team h2 {
        font-size: 2rem;
    }
    
    .carousel-track {
        gap: 20px;
        padding: 10px;
    }
}

@media (max-width: 1150px) {
    .structure-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .structure-images {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .structure-images-left {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }
    
    .structure-image img {
        width: 100%;
        height: 100%;

    }
    
    .structure-text {
        padding-left: 0;
        text-align: center;
    }
    
    .structure-text h2 {
        font-size: 2rem;
    }
    
    .structure-text p {
        font-size: 1rem;
    }
    
    .team-member {
        flex: 0 0 calc(100% - 20px);
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-info {
        padding: 20px;
    }
    
    .modal-info h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        height: 70px;
    }
    
    .logo img {
        height: 30px;
    }
    

    
    .about-content {
        padding: 20px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-info h3 {
        font-size: 1.1rem;
    }
    
    .nav-container {
        width: calc(100% - 10px);
    }
    
    .desktop-nav a {
        padding: 15px 20px;
        font-size: 14px;
    }
    
    .structure-text h2 {
        font-size: 1.8rem;
    }
    
    .structure-text p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .structure-images-left {
        flex-direction: column;
        gap: 15px;
    }
    
    .structure-image img {
        width: 100%;
        height: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
}

.whatsapp-button {
    background-color: #BF2025; /* Vermelho */
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-message {
    background-color: #fff;
    color: #333;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    pointer-events: none;
}

.whatsapp-container:hover .whatsapp-message {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-message {
        font-size: 12px;
        padding: 6px 10px;
    }
}