/* RESET E CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1D360C;
    --secondary-color: #F7F31C;
    --accent-color: #2E5C1D;
    --text-light: #F0F0F0;
    --text-dark: #333333;
    --background-light: #FFFFFF;
    --background-dark: #0A1A05;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* CABEÇALHO */
.header {
    position: relative;
    height: 60vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--background-light);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 54, 12, 0.7);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(247, 243, 28, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: bold;
    font-size: 1.5rem;
    z-index: 1001;
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    height: 60px;
    margin-right: 15px;
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    z-index: 1001;
}

/* Linha Sublinhado */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-investimento {
    background: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-investimento:hover {
    background: #e6e219;
    transform: translateY(-2px);
}

.btn-investimento::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* CONTEÚDO DO HERÓI */
.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
    margin-top: 80px;
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.2;
    color: var(--secondary-color);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-subtitle p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

/* SEÇÃO DE CONTEÚDO LEGAL */
.legal-content-section {
    padding: 80px 0;
    background: var(--background-light);
}

.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
}

.last-update {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-weight: 500;
}

.last-update i {
    color: var(--secondary-color);
}

.lgpd-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-article {
    margin-bottom: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: var(--transition);
}

.legal-article:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.legal-article h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.legal-article h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
}

.legal-article h3 {
    color: var(--primary-color);
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.legal-article p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.legal-article ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-article li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
}

.legal-article strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* GRID DE DIREITOS LGPD */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #e9ecef;
}

.right-item:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.right-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.right-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.right-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* INFORMAÇÕES DE CONTATO */
.contact-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
}

.contact-info p {
    margin-bottom: 10px;
    color: #555;
}

.contact-info strong {
    color: var(--primary-color);
}

/* AÇÕES LEGAIS */
.legal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    min-width: 200px;
    justify-content: center;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 243, 28, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-3px);
}

/* RODAPÉ */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 80px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--secondary-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    margin-right: 20px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.footer-desc {
    margin-bottom: 25px;
    line-height: 1.6;
    color: #ccc;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h3,
.parceiros h3 {
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.parceiros h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.parceiros-logos {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.parceiro-logo {
    background: white;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.parceiro-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.parceiro-logo img {
    height: 80px;
    width: 80px;
    filter: grayscale(100%);
    transition: var(--transition);
}

.parceiro-logo:hover img {
    filter: grayscale(0%);
}

.company-info p {
    margin-bottom: 8px;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.company-info strong {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 243, 28, 0.2);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--secondary-color);
}

/* BOTÃO VOLTAR AO TOPO */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #e6e219;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ANIMAÇÕES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVIDADE */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .legal-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle p {
        font-size: 1rem;
    }
    
    .legal-article {
        padding: 20px;
    }
    
    .legal-article h2 {
        font-size: 1.3rem;
    }
}


/* ESTILOS ESPECÍFICOS PARA INVESTIDORES */
.investment-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.disclaimer-icon {
    font-size: 2rem;
    color: #f39c12;
    flex-shrink: 0;
}

.disclaimer-content h3 {
    color: #e67e22;
    margin-bottom: 10px;
}

.disclaimer-content p {
    color: #7d6608;
    margin: 0;
    line-height: 1.6;
}

.investment-opportunities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.opportunity-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
    text-align: center;
}

.opportunity-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}

.opportunity-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.opportunity-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
}

.competitive-advantages {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.advantage-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.property-data {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.data-label {
    font-weight: 500;
    color: var(--primary-color);
}

.data-value {
    font-weight: 700;
    color: var(--primary-color);
}

.investment-process {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.risk-analysis {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.risk-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.risk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f1f2f6;
}

.risk-item:last-child {
    border-bottom: none;
}

.risk-name {
    font-weight: 500;
    color: #e74c3c;
    flex: 1;
}

.risk-mitigation {
    color: #27ae60;
    font-weight: 500;
    text-align: right;
    flex: 1;
}

.investor-contact {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-method {
    text-align: center;
    padding: 25px;
    border: 2px solid #f1f2f6;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-method .btn-primary {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ESTILOS PARA TRANSPARÊNCIA */
.transparency-principles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.principle-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
}

.principle-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.institutional-info {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.info-section {
    margin-bottom: 30px;
}

.info-section:last-child {
    margin-bottom: 0;
}

.info-grid {
    display: grid;
    gap: 15px;
}

.info-item {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.documentation-grid {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.doc-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.doc-category ul {
    margin: 15px 0 0 0;
}

.sustainability-metrics {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.metric-category {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.metric {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

.reporting-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.channel-card {
    text-align: center;
    padding: 25px 20px;
    background: white;
    border-radius: 10px;
    border: 2px solid #f1f2f6;
    transition: var(--transition);
}

.channel-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.channel-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.reporting-policy {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin-top: 25px;
}

.reports-list {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.report-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    transition: var(--transition);
}

.report-item:hover {
    border-color: var(--secondary-color);
    transform: translateX(10px);
}

.report-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 10px;
}

.btn-download:hover {
    background: #152909;
    transform: translateY(-2px);
}

/* ESTILOS PARA POLÍTICA DE IMAGENS */
.copyright-notice {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    margin-bottom: 25px;
}

.copyright-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.usage-categories {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.usage-category {
    padding: 30px;
    border-radius: 10px;
    border: 2px solid;
}

.usage-category.permitted {
    border-color: #27ae60;
    background: #f0f9f0;
}

.usage-category.restricted {
    border-color: #e74c3c;
    background: #fdf2f2;
}

.usage-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.usage-header i {
    font-size: 1.5rem;
}

.usage-category.permitted .usage-header i {
    color: #27ae60;
}

.usage-category.restricted .usage-header i {
    color: #e74c3c;
}

.usage-conditions {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #e9ecef;
}

.prohibited-uses {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.prohibited-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ffeaea;
    background: #fff5f5;
}

.prohibited-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.licensing-options {
    display: grid;
    gap: 25px;
    margin: 30px 0;
}

.license-type {
    background: white;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.license-features {
    display: grid;
    gap: 10px;
    margin-top: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: #27ae60;
}

.licensing-process {
    background: #f0f7ff;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 4px solid #3498db;
}

.licensing-process ol {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.licensing-process li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.image-request {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.request-steps {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.request-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.request-requirements {
    background: #fff9e6;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #f39c12;
}

.penalties {
    display: grid;
    gap: 15px;
    margin: 30px 0;
}

.penalty-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #ffeaea;
}

.penalty-item i {
    font-size: 1.5rem;
    color: #e74c3c;
    flex-shrink: 0;
}

.legal-notice {
    background: #fff5f5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    border-left: 4px solid #e74c3c;
}

.licensing-contact {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-option {
    text-align: center;
    padding: 25px 20px;
    border: 2px solid #f1f2f6;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-option:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-option i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.response-time {
    background: #f0f9f0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

/* RESPONSIVIDADE ADICIONAL */
@media (max-width: 768px) {
    .investment-opportunities {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        flex-direction: column;
        text-align: center;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .risk-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .risk-name, .risk-mitigation {
        text-align: center;
    }
    
    .transparency-principles {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reporting-channels {
        grid-template-columns: 1fr;
    }
    
    .report-item {
        flex-direction: column;
        text-align: center;
    }
    
    .copyright-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .prohibited-item {
        flex-direction: column;
        text-align: center;
    }
    
    .request-step {
        flex-direction: column;
        text-align: center;
    }
    
    .penalty-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .opportunity-stats {
        flex-direction: column;
        gap: 10px;
    }
}


/* BANDEIRAS NO RODAPÉ */
.footer-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
    align-items: center;
}

.flag-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.flag-container:hover {
    transform: translateY(-3px);
}

.flag-img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.flag-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.flag-text {
    font-size: 12px;
    color: #e0e0e0;
    font-weight: 500;
    text-align: center;
}

/* RESPONSIVIDADE DAS BANDEIRAS */
@media (max-width: 768px) {
    .footer-flags {
        gap: 12px;
        margin-top: 15px;
    }
    
    .flag-img {
        width: 35px;
        height: 24px;
    }
    
    .flag-text {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .footer-flags {
        flex-direction: column;
        gap: 10px;
    }
    
    .flag-container {
        flex-direction: row;
        gap: 10px;
    }
    
    .flag-img {
        width: 30px;
        height: 21px;
    }
    
    .flag-text {
        font-size: 10px;
    }
}



/* SELETOR DE IDIOMA  */
.language-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-link {
    color: inherit;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: var(--transition);
    font-weight: 500;
    position: relative;
}

.lang-link:hover,
.lang-link:focus {
    background: rgba(247, 243, 28, 0.2);
    color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--secondary-color);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Em telas maiores, o seletor de idiomas aparece fora do menu hambúrguer, alinhado à direita */
@media (min-width: 769px) {
    .language-selector {
        margin-left: 30px;
        position: static;
    }
}

/* Em telas menores, o seletor de idiomas aparece dentro do menu hambúrguer */
@media (max-width: 768px) {
    .language-selector {
        margin: 15px 0;
        justify-content: center;
        font-size: 0.9rem;
    }

    .lang-link {
        padding: 6px 10px;
    }

    /* Garante que o seletor de idiomas siga o estilo do menu hambúrguer quando aberto */
    .hamburger-menu .language-selector {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        font-size: 0.85rem;
    }
}