/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

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

/* Utilitários */
.highlight {
    color: #fbbf24;
}

.highlight-blue {
    color: #2563eb;
}

.highlight-green {
    color: #10b981;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    gap: 8px;
}

.btn-primary {
    background-color: #ffffff;
    color: #1e3a8a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #dbeafe;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #ffffff;
    color: #1e3a8a;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: #dbeafe;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-video {
    background-color: #dc2626;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
}

.btn-video:hover {
    background-color: #b91c1c;
}

.btn-course {
    background-color: #059669;
    color: white;
    width: 100%;
}

.btn-course:hover {
    background-color: #047857;
}

.btn-external {
    background-color: #2563eb;
    color: white;
    font-size: 14px;
    padding: 8px 16px;
}

.btn-external:hover {
    background-color: #1d4ed8;
}

.btn-contact {
    background-color: #10b981;
    color: white;
    padding: 16px 32px;
    font-size: 18px;
}

.btn-contact:hover {
    background-color: #059669;
}

.btn-training {
    background-color: #10b981;
    color: white;
}

.btn-training:hover {
    background-color: #059669;
}

.btn-outline {
    background-color: transparent;
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-outline:hover {
    background-color: #ecfdf5;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #1e3a8a;
}

.btn-access {
    background-color: #10b981;
    color: white;
}

.btn-access:hover {
    background-color: #059669;
}

/* Hero Section */

.hero-section {
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    padding: 100px 0 200px;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 40px;
}

.hero-logo {
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: contain;
}

.hero-text {
    text-align: left;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: inline-block;
    /* 🔹 evita quebra de linha */
    white-space: nowrap;
    /* 🔹 mantém tudo na mesma linha */
}

.hero-slogan {
    color: #fbbf24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 4px solid #fbbf24;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 32px;
}

.hero-description {
    max-width: 800px;
    font-size: 1.25rem;
    color: #bfdbfe;
    line-height: 1.7;
    margin-left: 0;
    text-align: left;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    /* Centraliza os botões */
}

.scroll-indicator {
    text-align: center;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Seções gerais */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
}

.section-title.white {
    color: white;
}

.section-divider {
    width: 96px;
    height: 4px;
    background-color: #2563eb;
    margin: 0 auto 32px;
    border-radius: 2px;
}

.section-divider.green {
    background-color: #10b981;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description.white {
    color: #bfdbfe;
}

/* About Section */
.about-section {
    padding: 80px 20px;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-paragraph {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 24px;
}

.info-box {
    background-color: #dbeafe;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin-bottom: 24px;
}

.info-box-dark {
    background-color: #1e3a8a;
    color: white;
    border-left-color: #3b82f6;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.info-box-dark .info-title {
    color: white;
}

.info-text {
    color: #374151;
    line-height: 1.7;
}

.info-box-dark .info-text {
    color: #bfdbfe;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    width: 384px;
    height: 384px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #dbeafe 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.visual-content {
    height: 100%;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.visual-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.visual-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.visual-description {
    color: #6b7280;
    margin-bottom: 16px;
}

.visual-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dot-1 {
    background-color: #2563eb;
}

.dot-2 {
    background-color: #1d4ed8;
    animation-delay: 0.2s;
}

.dot-3 {
    background-color: #1e40af;
    animation-delay: 0.4s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Benefits Section */
.benefits-section {
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.benefit-card {
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.benefit-icon {
    color: #2563eb;
    font-size: 3rem;
    margin-bottom: 24px;
}

.benefit-card:hover .benefit-icon {
    color: #1d4ed8;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.7;
}

.stats-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: white;
}

.stats-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.stats-description {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.stat-label {
    color: #bfdbfe;
    font-size: 1rem;
}

/* Training Section */
.training-section {
    background-color: #f9fafb;
}

.training-category {
    margin-bottom: 60px;
}

.category-header {
    padding: 24px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.category-videos {
    background-color: #dc2626;
    color: white;
}

.category-courses {
    background-color: #059669;
    color: white;
}

.category-external {
    background-color: #2563eb;
    color: white;
}

.category-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.category-description {
    font-size: 1.125rem;
    opacity: 0.9;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    background-color: white;
    padding: 24px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.training-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

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

.training-card.course-card {
    border-left: 4px solid #059669;
    text-align: center;
}

.training-card.external-card {
    border-left: 4px solid #2563eb;
}

.course-icon {
    width: 64px;
    height: 64px;
    background-color: #ecfdf5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: #059669;
    font-size: 1.5rem;
}

.external-icon {
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.5rem;
    margin-right: 12px;
}

.card-header {
    margin-bottom: 16px;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.card-channel,
.card-institution,
.card-type {
    font-size: 0.875rem;
    color: #6b7280;
    display: block;
    margin-bottom: 4px;
}

.card-duration {
    font-size: 0.875rem;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.course-level {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 8px;
}

.level-basic {
    background-color: #ecfdf5;
    color: #059669;
}

.level-advanced {
    background-color: #fff7ed;
    color: #ea580c;
}

.level-knowledge {
    background-color: #dbeafe;
    color: #2563eb;
}

.card-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.training-footer {
    background-color: #1f2937;
    color: white;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
}

.footer-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-description {
    font-size: 1.125rem;
    color: #d1d5db;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    background-color: #f9fafb;
}

.faq-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 32px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    background-color: #f9fafb;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #1f2937;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: white;
}

.faq-answer.active {
    padding: 20px 24px;
    max-height: 1000px;
}


.faq-answer p {
    color: #6b7280;
    line-height: 1.7;
}

.faq-footer {
    text-align: center;
    margin-top: 48px;
}

.faq-footer-text {
    color: #6b7280;
    margin-bottom: 16px;
}

.faq-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Contact Section */
.contact-section {
    background-color: #1e3a8a;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.contact-icon {
    color: #10b981;
    font-size: 3rem;
    margin-bottom: 24px;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.contact-description {
    color: #bfdbfe;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.committee-members {
    text-align: left;
}

.member {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.member-name {
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.member-role {
    color: #10b981;
    font-weight: 500;
    margin-bottom: 8px;
}

.member-email {
    color: #bfdbfe;
    font-size: 0.875rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.info-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.info-header i {
    color: #10b981;
    font-size: 2rem;
    margin-right: 12px;
}

.info-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.info-details {
    margin-bottom: 24px;
}

.info-item {
    display: flex;
    margin-bottom: 12px;
}

.info-label {
    font-weight: 600;
    color: white;
    min-width: 80px;
}

.info-value {
    color: #bfdbfe;
    margin-left: 8px;
}

.info-description {
    color: #bfdbfe;
    line-height: 1.7;
    margin-bottom: 24px;
}

.institutional-links {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-bottom: 48px;
}

.institutional-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.institutional-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.creator-credits {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.creator-name {
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .training-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .contact-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .faq-buttons {
        flex-direction: column;
    }

    .institutional-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .category-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 8px;
    }

    .training-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .visual-card {
        width: 100%;
        height: 300px;
    }
}


@media (max-width: 768px) {
    .contact-card {
        padding: 24px;
        text-align: left;
    }

    .committee-members {
        padding: 16px;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-role {
        font-size: 0.875rem;
    }

    .member-email {
        font-size: 0.75rem;
    }
}

.benefits-grid,
.training-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Melhorias de responsividade para cartões de contato */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card {
        padding: 24px 20px;
        min-height: auto;
    }

    .committee-members {
        padding: 0;
    }

    .member {
        padding: 12px 16px;
        margin-bottom: 12px;
    }

    .member-name {
        font-size: 1rem;
        line-height: 1.4;
    }

    .member-role {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }

    .member-email {
        font-size: 0.8rem;
        word-break: break-all;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px 16px;
    }

    .contact-title {
        font-size: 1.25rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .member {
        padding: 10px 12px;
    }

    .member-name {
        font-size: 0.95rem;
    }

    .member-email {
        font-size: 0.75rem;
    }

    .btn-contact {
        padding: 12px 24px;
        font-size: 16px;
    }
}



/* Correção definitiva: contato e suporte azul deve ocupar tela inteira */
.contact-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding-left: 0;
    padding-right: 0;
    background-color: #1e3a8a;
    color: white;
}


/* Estilos para o Dropdown do Usuário Externo */

.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    position: relative;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    min-width: 180px;
    justify-content: center;
}

.dropdown-toggle:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.dropdown-toggle.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: #f8fafc;
    color: #2563eb;
    transform: translateX(4px);
}

.dropdown-item i {
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.hero-title,
.hero-subtitle,
.hero-slogan,
.hero-description {
    margin-left: 0;
    text-align: left;
}


/* Responsividade */
@media (max-width: 768px) {
    .dropdown-toggle {
        min-width: 160px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .dropdown-item {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* Animação de entrada */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show {
    animation: dropdownFadeIn 0.3s ease;
}

/* Estilo para o botão primário */
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border: none;
    color: white;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Ajustes para integração com o layout existente */


@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-container {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        justify-content: center;
    }
}

/* Adicionando media query para centralizar o conteúdo em telas menores */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
    }

    .hero-logo {
        margin-bottom: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-slogan {
        margin: 0 auto 32px;
    }

    .hero-buttons {
        justify-content: center;
        /* Centraliza os botões em telas menores */
    }
}

/* Adicionando media query para telas muito pequenas para garantir que os botões se empilhem */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        /* Faz com que os botões ocupem a largura total */
    }

    .dropdown-container {
        width: 100%;
    }

    .btn {
        width: 100%;
        /* Garante que os botões ocupem a largura total */
    }
}

/* Botão do usuário interno VERDE */
.btn-internal-green {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

.btn-internal-green:hover {
    background: linear-gradient(135deg, #059669, #047857) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}