/* ========== RESET E CONFIGURAÇÕES GLOBAIS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ========== HEADER EGONDOLA COMPLETO ========== */
.egondola-header {
    background-color: #fff;
    padding: 15px 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.logo-section .logo {
    font-size: 24px;
    font-weight: 800;
    color: #001837;
    letter-spacing: -0.5px;
    text-decoration: none;
    
}
.logo-section .logo img {
    max-width: 130px;
    margin-top: 10px;
}

/* Navigation Menu */
.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #001837;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #001837;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Flags */
.flags {
    display: flex;
    gap: 8px;
    align-items: center;
    float: right;
    padding-left: 20px;
    margin-top: 12px;
}

.flags .flag {
    display: block;
    transition: opacity 0.3s ease;
}

.flags .flag:hover {
    opacity: 0.8;
}

.flags .flag img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

/* WhatsApp Widget */
.whatsapp-widget {
    display: flex;
    justify-content: center;
}

.whatsapp-button-egondola {
    display: flex;
    align-items: center;
    background-color: #001837;
    color: #fff;
    padding: 0px 15px 0px 0px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 24, 55, 0.3);
    max-width: 300px;
    height: 50px;
}

.whatsapp-button-egondola:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 24, 55, 0.4);
}

.avatar-container {
    margin-right: 12px;
  margin-top: 0px;
}

.avatar-img {
    margin-left: -3px;
   width: 60px;
  height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.status-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 2px;
}

.team-name {
    font-size: 12px;
    color: #d5f0d9;
    font-weight: 500;
}

.status {
    font-size: 10px;
    color: #90ee90;
    font-weight: 400;
}

.button-title {
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.burger-icon {
    width: 25px;
    height: 3px;
    background-color: #001837;
    transition: all 0.3s ease;
}

/* ========== MENU LATERAL MOBILE (OFF-CANVAS) ========== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background-color: #fff;
    z-index: 1999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-sidebar.active {
    left: 0;
}

/* Header do Menu Mobile */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
/*     background-color: #001837; */
}

.mobile-menu-logo img {
    max-width: 120px;
    filter: invert(1);
}
.mobile-menu-sidebar.active img {
    max-width: 150px;
    filter: invert(0);
}
.mobile-menu-close {
    background: transparent;
    border: none;
    color: #000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #94a3b8;
}

/* Conteúdo do Menu Mobile */
.mobile-menu-content {
    padding: 30px 20px;
}

/* Links do Menu Mobile */
.mobile-menu-links {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
}

.mobile-menu-links li {
    margin-bottom: 20px;
}

.mobile-menu-links li a {
    display: block;
    color: #001837;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.mobile-menu-links li a:hover {
    color: #2563eb;
    padding-left: 10px;
}

/* Seção de Bandeiras no Menu Mobile */
.mobile-menu-flags {
    margin-bottom: 40px;
}

.mobile-menu-flags h4 {
    color: #001837;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mobile-flags-container {
    display: flex;
    gap: 0x;
}

.mobile-flag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
  /*   background-color: #f8fafc; */
    border-radius: 8px;
    text-decoration: none;
    color: #334155;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
  /*   flex: 1; */
}

.mobile-flag:hover {
    background-color: #e2e8f0;
    transform: translateY(-2px);
}

.mobile-flag img {
    width: 25px;
    height: 25px;
    border-radius: 2px;
}

/* WhatsApp no Menu Mobile */
.mobile-menu-whatsapp {
    margin-bottom: 40px;
}

.mobile-whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #001837;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 24, 55, 0.3);
}

.mobile-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 24, 55, 0.4);
}

.mobile-avatar-container {
    margin-right: 15px;
}

.mobile-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.mobile-button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.mobile-status-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.mobile-team-name {
    font-size: 12px;
    color: #d5f0d9;
    font-weight: 500;
}

.mobile-status {
    font-size: 10px;
    color: #90ee90;
    font-weight: 400;
}

.mobile-button-title {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* Redes Sociais no Menu Mobile */
.mobile-menu-social h4 {
    color: #001837;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.mobile-social-links {
    display: flex;
    gap: 15px;
}

.mobile-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #001837;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.mobile-social-links a:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
}

/* ========== FOOTER EGONDOLA COMPLETO ========== */
.egondola-footer {
    background-color: #001837;
    color: #fff;
    padding: 60px 5% 40px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.footer-section ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 20px;
}

.footer-whatsapp {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.footer-whatsapp:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-whatsapp .avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 12px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-info .team-name {
    font-size: 12px;
    color: #d5f0d9;
    font-weight: 500;
}

.contact-info .status {
    font-size: 10px;
    color: #90ee90;
    font-weight: 400;
    margin-bottom: 2px;
}

.contact-info .contact-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-flags {
    display: flex;
    gap: 8px;
}

.footer-flags .flag {
    display: block;
    transition: opacity 0.3s ease;
}

.footer-flags .flag:hover {
    opacity: 0.8;
}

.footer-flags .flag img {
    width: 24px;
    height: 18px;
    border-radius: 2px;
}

.footer-logo .logo {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.footer-slogan {
    font-size: 14px;
    color: #94a3b8;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-social i {
    font-size: 18px;
}

/* ========== RESPONSIVE HEADER & FOOTER ========== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .header-container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .whatsapp-widget {
       /*  order: 3; */
       /*  width: 100%; */
        justify-content: center;
    }
    
    .whatsapp-button-egondola {
        width: 100%;
        max-width: none;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main {
        align-items: center;
    }
    
    .egondola-header {
        padding: 10px 3%;
    }
    
    .header-container {
        gap: 10px;
    }
    
    .button-title {
        font-size: 12px;
    }
    
    .team-name {
        font-size: 11px;
    }
    
    .status {
        font-size: 9px;
    }
    
    /* Ajustes do Menu Mobile para telas menores */
    .mobile-menu-sidebar {
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-flags-container {
       /*  flex-direction: column; */
    }
    
    .mobile-flag {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .footer-logo .logo {
        font-size: 24px;
    }
    
    .footer-slogan {
        font-size: 12px;
    }
    
    /* Menu Mobile em telas muito pequenas */
    .mobile-menu-content {
        padding: 20px 15px;
    }
    
    .mobile-menu-links li a {
        font-size: 16px;
        padding: 12px 0;
    }
    
    .mobile-whatsapp-button {
        padding: 12px;
    }
    
    .mobile-avatar-img {
        width: 40px;
        height: 40px;
    }
    
    .mobile-button-title {
        font-size: 12px;
    }
}

/* ========== ESTILOS ORIGINAIS DO CORPO (PRESERVADOS) ========== */

/* Seção Principal */
.main-section {
    text-align: center;
    padding: 80px 5% 60px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.integration-tag {
    display: inline-flex;
    align-items: center;
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.integration-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.integration-tag .icon {
    width: 20px;
    height: 20px;
    background-color: #001633;
    border-radius: 4px;
    margin-right: 12px;
}

.integration-tag span {
    font-size: 16px;
    color: #001633;
    font-weight: 600;
}

.main-section h1 {
    font-size: 2.6rem;
    color: #001633;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.main-section p {
    font-size: 1.1rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 50px;
    font-weight: 400;
    line-height: 1.7;
}

/* Cards de Destaque */
.highlights {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 0 5%;
}

.highlight-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.highlight-card.selected {
    border: 2px solid #001633;
    background-color: #f8fafc;
}

.highlight-card h3 {
    font-size: 1.1rem;
    color: #001633;
    font-weight: 700;
    margin-bottom: 15px;
    height: 60px;
}

.highlight-card p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 400;
    line-height: 1.6;
}

/* Integration Section */
.integration-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    flex-wrap: wrap;
}

.integration-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.new-order-btn {
    background-color: #001633;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    font-weight: 600;
}

.new-order-btn:hover {
    background-color: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.integration-info {
    max-width: 500px;
    text-align: left;
}

.integration-info h2 {
    font-size: 1.8rem;
    color: #001633;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.integration-info p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.7;
}

/* Resource Section Styling */
.resource-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 80px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.resource-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.resource-content {
    flex: 1;
    padding-right: 40px;
}

.resource-item h2 {
    font-size: 1.8rem;
    color: #001633;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.resource-item h2 .highlight {
    color: #2563eb;
    font-weight: 800;
    font-size: 2rem;
}

.resource-item p {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.7;
}

.resource-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.resource-btn {
    background-color: #001633;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
}

.resource-btn:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.resource-image {
    height: 300px;
    width: 400px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.resource-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px; 
}

/* FAQ Section Styling */
.faq-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    text-align: center;
}

.faq-header {
    position: relative;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.faq-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ========== BUTTONS ========== */
.download-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #001633;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.download-btn:hover {
    background-color: #2563eb;
    transform: translate(-50%, -52%);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
}

.support-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #022f69 0%, #001633 100%);
    color: #fff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    font-weight: 600;
    flex: 1;
    min-width: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.support-btn .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
}

.support-btn span {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* ========== FAQ ========== */
.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2 {
    font-size: 2rem;
    color: #001633;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.7;
}

.faq-item {
    background-color: #fff;
    padding: 0px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
    padding: 20px;
}

.faq-item.open h3 {
    background-color: #001633;
    color: white;
    border-radius: 20px;
}

.faq-question {
    font-size: 1.2rem;
    color: #001633;
    font-weight: 700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '-';
}

.faq-answer {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    color: white;
}

.faq-item.open .faq-answer {
    color: #475569;
    max-height: 500px;
    margin-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    padding-top: 5px;
    padding-bottom: 15px;
}

/* ========== SUPPORT SECTION ========== */
.support-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px 5%;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    flex-wrap: wrap;
}

.support-content {
    max-width: 500px;
    text-align: left;
}

.support-content h2 {
    font-size: 2rem;
    color: #001633;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
}

.support-content p {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.7;
}

.support-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.support-image {
    width: 400px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.support-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Seção de Screenshots */
.screenshots-section {
    padding: 60px 20px;
    background: linear-gradient(180deg, #f5f7fa 0%, #e9ecef 100%);
    text-align: center;
    overflow: hidden;
}

.screenshots-section h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 16px;
    line-height: 1.2;
}

.screenshots-section p {
    font-size: 1.125rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* Carrossel */
.carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.carousel-inner {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-item img {
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: auto;
}

@media (hover: none) {
    .carousel-item img:hover {
        transform: none;
    }
}

.carousel-item figcaption {
    margin-top: 12px;
    font-size: 1rem;
    color: #2d3748;
    font-weight: 500;
    max-width: 900px;
    text-align: center;
    line-height: 1.4;
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 22, 51, 0.7);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 22, 51, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

/* Indicadores de Slide (Dots) */
.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
    gap: 8px;
    padding-bottom: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    border: none;
    padding: 0;
}

.carousel-dot.active,
.carousel-dot:hover {
    background: #1a2b49;
    transform: scale(1.2);
}

.carousel-dot:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Suporte a Gestos em Dispositivos Móveis */
.carousel-inner.dragging {
    transition: none;
    cursor: grabbing;
}

/* Modal para imagem maximizada */
.carousel-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 22, 51, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 16px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-modal[aria-hidden="false"] {
    display: flex;
    opacity: 1;
}

.carousel-modal img {
    max-width: 98%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    user-select: none;
    -webkit-user-drag: none;
}

.carousel-modal .close-modal {
    position: fixed;
    top: 16px;
    right: 16px;
    background: #001633;
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    z-index: 11000;
}

.carousel-modal .close-modal:hover {
    background: #2563eb;
    transform: scale(1.1);
}

.carousel-modal .close-modal:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* ========== RESPONSIVE LAYOUT ========== */

/* 1024px and below */
@media (max-width: 1024px) {
    .resource-item {
        flex-direction: column;
        text-align: center;
    }

    .resource-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .resource-buttons {
        justify-content: center;
    }

    .resource-image {
        width: 100%;
    }

    .download-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .carousel {
        max-width: 90%;
    }

    .carousel-item img {
        max-height: 400px;
    }

    .screenshots-section h2 {
        font-size: 2.25rem;
    }
}

/* 768px and below */
@media (max-width: 768px) {
    .main-section {
        padding: 60px 5% 40px;
    }

    .main-section h1 {
        font-size: 2rem;
    }

    .integration-tag {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .integration-section {
        padding: 60px 5%;
        flex-direction: column;
    }

    .integration-card {
        width: 100%;
    }

    .support-section {
        padding: 60px 5%;
        flex-direction: column;
    }

    .support-image {
        width: 100%;
        height: 300px;
        order: -1;
    }

    .faq-section {
        padding: 60px 5%;
    }

    .screenshots-section {
        padding: 40px 16px;
    }

    .screenshots-section h2 {
        font-size: 2rem;
    }

    .screenshots-section p {
        font-size: 1rem;
        max-width: 90%;
    }

    .carousel-item {
        padding: 12px;
    }

    .carousel-item img {
        max-height: 300px;
    }

    .carousel-item figcaption {
        font-size: 0.875rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .carousel-btn.prev {
        left: 8px;
    }

    .carousel-btn.next {
        right: 8px;
    }

    .carousel-dots {
        margin-top: 16px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
    }

    .carousel-modal {
        padding: 8px;
    }

    .carousel-modal img {
        max-width: 100%;
        max-height: 80%;
    }

    .carousel-modal .close-modal {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

/* 480px and below */
@media (max-width: 480px) {
    .main-section h1 {
        font-size: 1.6rem;
    }

    .main-section p {
        font-size: 1rem;
    }

    .highlight-card {
        width: 100%;
    }

    .support-btn {
        width: 100%;
    }

    .screenshots-section h2 {
        font-size: 1.75rem;
    }

    .carousel-item img {
        max-height: 250px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .carousel-modal img {
        max-width: 100%;
        max-height: 75%;
    }

    .carousel-modal .close-modal {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

