/* Reset e estilos globais */
:root {
    --primary-color: #2347af;
    --primary-light: #e6f2ff;
    --secondary-color: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Barra de navegação */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

.navbar-logo img {
    height: 40px;
    width: auto;
}

/* Menu para desktop */
.nav-desktop {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin-left: 25px;
}

.nav-link {
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mega menu para desktop */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100vw;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    display: none;
    z-index: 999;
    left: 50%;
    transform: translateX(-50%);
}

.mega-menu.active {
    display: block;
}


.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--medium-gray);
}
.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50vw;
    width: 200vw;
    height: 100%;
    background-color: var(--white);
    z-index: -1;
}
.mega-menu-links {
    list-style: none;
    padding: 0;
}

.mega-menu-links li {
    margin-bottom: 8px;
}

.mega-menu-links a {
    color: var(--secondary-color);
    display: block;
    padding: 5px 0;
    transition: var(--transition);
}

.mega-menu-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Botão mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
}

/* Menu mobile */
.nav-mobile {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--primary-color);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
}

.nav-mobile.active {
    transform: translateX(0);
}

.mobile-links {
    list-style: none;
    padding: 20px;
}

.mobile-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-link {
    display: block;
    padding: 15px 0;
    font-weight: 500;
}

/* Submenu mobile */
.mobile-submenu-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: inherit;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
}

.mobile-submenu-trigger::after {
    content: '+';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.mobile-submenu-trigger.active::after {
    content: '-';
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu.active {
    max-height: 1000px;
}

.mobile-submenu li {
    margin-bottom: 5px;
}

.mobile-submenu a {
    display: block;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
}

.mobile-submenu a:hover {
    color: var(--white);
}

/* Conteúdo de exemplo para visualização */
.hero {
    height: 100vh;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
}
/* Reset and global styles */
:root {
    --primary-color: #2347af;
    --primary-light: #e6f2ff;
    --secondary-color: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --dark-gray: #495057;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark-gray);
    margin-bottom: 40px;
    max-width: 700px;
}
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    background: #25d366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.whatsapp-btn i {
    font-size: 32px;
}

/* Animação personalizada para o botão */
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2347af;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    color: white;
}

.nav-link {
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(219, 219, 219);
    transition: var(--transition);
}

.nav-link:hover:after {
    width: 100%;
}

/* Mega Dropdown Menu */
.mega-dropdown-wrapper {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.mega-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    max-height: 400px;
    background-color: var(--white);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    z-index: 999;
    overflow-y: auto;
}

.mega-dropdown-wrapper:hover .mega-dropdown-content {
    display: block;
}

.mega-dropdown-content::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--white);
}

.mega-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
}

.dropdown-column h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.dropdown-column a {
    padding: 8px 0;
    color: var(--secondary-color);
    transition: var(--transition);
}

.dropdown-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.mobile-menu-btn {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: relative;
}
.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn[aria-expanded="true"] .menu-icon {
    display: none;
}

.mobile-menu-btn[aria-expanded="true"] .close-icon {
    display: block;
}

.menu-icon, .close-icon {
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}
/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url('img/bg1.png') no-repeat center center / cover;
    background-color: black;
    color: var(--white);
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    background-position: center top;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About Section */
.about {
    background-color: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image {
    margin-left: 160px;
    margin-top: -150px;
    overflow: hidden;
    width: 80%;
}

.btn-area {
    display: flex;
    gap: 30px;
    align-items: center;
    text-align: center;
}

/* Testimonials Section */
.testimonials {
    background-color: #2347af;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--dark-gray);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.section-titletestimon {
    color: white;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subtitletestimo {
    font-size: 1.25rem;
    font-weight: 400;
    color: rgb(177, 177, 177);
    margin-bottom: 40px;
    max-width: 700px;
}

/* Regulators Section */
.regulators {
    background-color: #2347af;
    padding: 30px 0;
}

.regulators-carousel {
    position: relative;
    max-width: 800px;
    margin: 20px auto 0;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    gap: 20px;
}

.carousel-slide {
    flex: 0 0 calc(50% - 10px);
    min-width: 0;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease;
}

.carousel-slide:hover {
    transform: scale(1.05);
}

.regulator-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-slide:hover .regulator-logo {
    filter: grayscale(0);
    opacity: 1;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* News Section */
.news {
    background-color: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.news-card {
    display: block;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.news-image-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.news-excerpt {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.news-button-container {
    text-align: center;
    margin-top: 50px;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer Section */
.footer {
    background-color: #2347af;
    color: var(--white);
    padding: 60px 0 30px;
    margin-bottom: -26px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-about {
    max-width: 300px;
}

.footer-links h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links {
    margin-top: 30px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 25px;
    margin-left: 50px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card:nth-child(1) {
    animation-delay: 0.1s;
}

.news-card:nth-child(2) {
    animation-delay: 0.3s;
}

.news-card:nth-child(3) {
    animation-delay: 0.5s;
}

/* Responsive - Tablets */
@media (max-width: 992px) {
    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        margin: 0 auto 30px;
        width: 100%;
        max-width: 500px;
        margin-left: 0;
        margin-top: 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn-area {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .btn-area .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-about {
        max-width: 100%;
    }
}

@media (min-width: 769px) {
    .dropdown-icon,
    .column-toggle {
        display: none;
    }
    
    .dropdown-column-header {
        cursor: default;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px;
    }
    
    .dropdown-column-content {
        display: block !important;
        padding-left: 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .navbar-container {
        padding: 10px 15px;
    }
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn i {
        font-size: 28px;
    }
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--primary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 15px;
        transition: transform 0.4s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links.active {
        transform: translateX(100%);
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .mega-dropdown-wrapper {
        position: relative;
        width: 100%;
    }
    
    .mega-dropdown-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 0;
        background: none;
        border: none;
        color: inherit;
        font: inherit;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .mega-dropdown-trigger .dropdown-icon {
        font-size: 1.2rem;
        transition: transform 0.3s ease;
    }
    
    .mega-dropdown-trigger[aria-expanded="true"] .dropdown-icon {
        transform: rotate(45deg);
    }

    .mega-dropdown-trigger::after {
        content: '+';
        font-size: 1.5rem;
        transition: transform 0.3s ease;
    }
    
    .mega-dropdown-trigger.active::after {
        content: '-';
    }
    
    .mega-dropdown-content {
        display: none;
        width: 100%;
        padding: 10px 0 10px 15px;
    }
    .mega-dropdown-content[aria-expanded="true"] {
        display: block;
    }
    
    .mega-dropdown-content.open {
        display: block;
        max-height: 1000px;
    }
    
    .mega-dropdown-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .dropdown-column {
        width: 100%;
    }
    .dropdown-column {
        padding: 0;
    }
    .dropdown-column-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 10px 0;
        background: none;
        border: none;
        color: inherit;
        font: inherit;
    }
    .dropdown-column-header h4 {
        margin: 0;
        color: var(--white);
    }
    
    .dropdown-column-content {
        display: none;
        padding-left: 15px;
    }
    
    .dropdown-column-content[aria-expanded="true"] {
        display: flex;
        flex-direction: column;
    }
    
    .dropdown-column a {
        padding: 10px 0;
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .dropdown-column a:hover {
        color: var(--white);
        padding-left: 5px;
    }
    
    /* Prevent body scrolling when menu is open */
    body.menu-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }
    .dropdown-column h4 {
        padding: 12px 20px;
        margin: 0;
        border-bottom: none;
        background-color: rgba(0, 0, 0, 0.1);
        cursor: pointer;
        position: relative;
    }
    
    .dropdown-column h4::after {
        content: '+';
        position: absolute;
        right: 20px;
        transition: transform 0.3s ease;
    }
    
    .dropdown-column h4.active::after {
        content: '-';
    }
    
    .dropdown-column a {
        padding: 12px 30px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
    }
    
    .dropdown-column a:hover {
        color: white;
    }
    
    .hero {
        min-height: 500px;
        padding-top: 70px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .regulators-carousel {
        padding: 0 40px;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-left: 0;
        margin-top: 20px;
    }
    
    .dropdown-column.active a {
        display: block;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
    html {
        font-size: 14px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
/* Responsividade */
@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (min-width: 993px) {
    .nav-mobile {
        display: none;
    }
}
