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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16.8px;
    color: rgb(17, 17, 17);
    background-color: rgb(255, 255, 255);
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.header-logo {
    text-align: left;
    margin-bottom: 15px;
}

.header-logo-center {
    text-align: center;
    margin-bottom: 8px;
}

.logo-img {
    height: 70px;
    width: auto;
    margin: 15px;
}

/* Responsividade para logos - Medidas originais */
@media (max-width: 1024px) {
    .logo-img {
        height: 80px;
    }
    
    .footer-logo-img {
        height: 80px !important;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 70px;
    }

    .footer-logo-img {
        height: 70px !important;
        max-height: 70px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
        align-items: center;
    }

    .footer-sections {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section-title {
        display: block;
        width: 100%;
    }

    .footer-list-item {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 50px;
    }
    
    .footer-logo-img {
        height: 70px !important;
        max-height: 70px !important;
    }
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 15px;
}

.menu-icon {
    font-size: 18px;
    color: #007bff;
}

.menu-text {
    font-weight: 500;
}

.breadcrumb {
    border-top: 1px solid #e5e5e5;
    padding-top: 10px;
}

.breadcrumb-items {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb-icon {
    width: 16px;
    height: 16px;
}

.breadcrumb-separator {
    color: #6c757d;
}

.breadcrumb-link {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-link:hover {
    text-decoration: underline;
}

.breadcrumb-current {
    color: #6c757d;
    font-weight: 500;
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

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

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: rgb(17, 17, 17);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Trust Elements */
.trust-elements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid #e1e5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #374151;
    white-space: nowrap;
}

.subtitle {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
    font-weight: 500;
}

.cta-button-container {
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, rgb(38, 135, 68), rgb(46, 160, 80));
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 135, 68, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 135, 68, 0.4);
    background: linear-gradient(135deg, rgb(46, 160, 80), rgb(38, 135, 68));
}

/* Content Sections */
.content-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.content-section {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f8f9fa;
}

.section-icon {
    width: 32px;
    height: 32px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: rgb(17, 17, 17);
    margin: 0;
}

.section-content {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(51, 51, 51);
}

.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.section-content strong {
    color: rgb(17, 17, 17);
    font-weight: 600;
}

/* Footer */
.footer {
    background: #1a1a1a;
    border-top: 1px solid #333;
    padding: 60px 0 0;
    margin-top: 80px;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 5px;
}

.footer-description {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
    margin: 0;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    padding-bottom: 0;
    border-bottom: none;
    display: block;
}

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

.footer-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #999;
}

.footer-icon {
    display: none;
}

.footer-contact-link {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: #fff;
}

/* Seção de Compliance no Rodapé - NOVA */
.footer-compliance {
    border-top: 2px solid #dee2e6;
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.compliance-section {
    max-width: 100%;
}

.compliance-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.compliance-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.compliance-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
}

.compliance-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
}

.compliance-item p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.5;
    margin: 0;
}

.compliance-item ul {
    font-size: 13px;
    color: #bdc3c7;
    margin: 10px 0;
    padding-left: 20px;
}

.compliance-item li {
    margin-bottom: 5px;
}

.g-link {
    color: #3498db;
    font-weight: 600;
    text-decoration: underline;
}

.g-link:hover {
    color: #5dade2;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    background: #111;
}

.footer-copyright {
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.footer-copyright small {
    font-size: 12px;
    color: #555;
    display: block;
    margin-top: 5px;
}

/* Scroll to top button - Oculto */
.scroll-top-btn {
    display: none;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-title {
        font-size: 36px;
    }
    
    .trust-elements {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-item {
        padding: 0.5rem 1rem;
    }
    
    .trust-item span {
        font-size: 0.85rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .compliance-content {
        grid-template-columns: 1fr;
    }
    
    .compliance-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .compliance-item {
        padding: 12px;
    }
    
    .compliance-item h4 {
        font-size: 13px;
    }
    
    .compliance-item p,
    .compliance-item ul {
        font-size: 12px;
    }
}

