/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

/* Seleção de texto */
::selection {
    background: linear-gradient(135deg, #0483B8 0%, #025c84 100%);
    color: #ffffff;
}

::-moz-selection {
    background: linear-gradient(135deg, #0483B8 0%, #025c84 100%);
    color: #ffffff;
}

:root {
    --primary-color: #0483B8;
    --secondary-color: #025c84;
    --dark-bg: #0f0f1e;
    --dark-card: #1a1a2e;
    --light-bg: #ffffff;
    --light-card: #f8f9fa;
    --text-color: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #e5e7eb;
    --accent-gradient: linear-gradient(135deg, #0483B8 0%, #025c84 100%);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

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

section {
    scroll-margin-top: 100px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.25rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(4, 131, 184, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    width: auto;
    cursor: pointer;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(4, 131, 184, 0.5));
}

.logo h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
    background: rgba(4, 131, 184, 0.1);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

/* Language Selector */
.language-selector {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid rgba(4, 131, 184, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 85px;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background: var(--dark-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/background/world_background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    filter: blur(0px);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 131, 184, 0.08) 0%, transparent 50%, rgba(2, 92, 132, 0.08) 100%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(4, 131, 184, 0.1) 0%, transparent 50%, rgba(2, 92, 132, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(4, 131, 184, 0.1);
    border: 1px solid rgba(4, 131, 184, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    animation: slideInRight 0.8s ease-out;
    z-index: 3;
}

.hero-icons {
    position: relative;
    height: 500px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 3;
}

.tech-icon {
    font-size: 4rem;
    position: absolute;
    opacity: 0.9;
    filter: drop-shadow(0 8px 24px rgba(4, 131, 184, 0.3));
    transition: transform 0.3s ease;
    z-index: 3;
}

.tech-icon:hover {
    transform: scale(1.2);
    opacity: 1;
    filter: drop-shadow(0 12px 32px rgba(4, 131, 184, 0.5));
}

.icon-1 {
    top: 10%;
    left: 15%;
    animation: iconFloat1 6s ease-in-out infinite;
}

.icon-2 {
    top: 15%;
    right: 20%;
    animation: iconFloat2 7s ease-in-out infinite;
}

.icon-3 {
    top: 45%;
    left: 10%;
    animation: iconFloat3 5s ease-in-out infinite;
}

.icon-4 {
    top: 50%;
    right: 15%;
    animation: iconFloat4 8s ease-in-out infinite;
}

.icon-5 {
    bottom: 20%;
    left: 25%;
    animation: iconFloat5 6.5s ease-in-out infinite;
}

.icon-6 {
    bottom: 15%;
    right: 25%;
    animation: iconFloat6 7.5s ease-in-out infinite;
}

@keyframes iconFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -30px) rotate(10deg);
    }
}

@keyframes iconFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-25px, -20px) rotate(-10deg);
    }
}

@keyframes iconFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, 20px) rotate(15deg);
    }
}

@keyframes iconFloat4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-20px, 25px) rotate(-12deg);
    }
}

@keyframes iconFloat5 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(25px, -25px) rotate(8deg);
    }
}

@keyframes iconFloat6 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(-30px, -15px) rotate(-15deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--light-card);
    border-top: 1px solid rgba(4, 131, 184, 0.1);
    border-bottom: 1px solid rgba(4, 131, 184, 0.1);
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(4, 131, 184, 0.1);
    border: 1px solid rgba(4, 131, 184, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    justify-items: center;
}

.portfolio-card {
    background: var(--light-bg);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(4, 131, 184, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.portfolio-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 20px rgba(4, 131, 184, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(4, 131, 184, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(4, 131, 184, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(4, 131, 184, 0.5);
    }
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.portfolio-card.featured::before {
    transform: scaleX(1);
}

.portfolio-card:hover::before {
    transform: scaleX(1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(4, 131, 184, 0.2);
}

.portfolio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.portfolio-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 12px rgba(4, 131, 184, 0.3));
}

.portfolio-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.portfolio-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.portfolio-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(4, 131, 184, 0.1);
    border-bottom: 1px solid rgba(4, 131, 184, 0.1);
}

.portfolio-stats span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.portfolio-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--light-card);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-item {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(4, 131, 184, 0.1);
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-item h3 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
}

.contact-grid {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(4, 131, 184, 0.1);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(4, 131, 184, 0.1);
}

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

.contact-icon {
    font-size: 1.75rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cta-button.primary {
    background: var(--accent-gradient);
    box-shadow: 0 4px 16px rgba(4, 131, 184, 0.3);
}

.cta-button.primary:hover {
    box-shadow: 0 6px 24px rgba(4, 131, 184, 0.5);
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: rgba(4, 131, 184, 0.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-card);
    color: var(--text-light);
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid rgba(4, 131, 184, 0.1);
}

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

.footer-section h3,
.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.25rem;
    font-size: 1.1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(4, 131, 184, 0.1);
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-container,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

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

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

    .hero-icons {
        height: 300px;
        gap: 1.5rem;
    }

    .tech-icon {
        font-size: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Structure Page Styles */
.structure-hero {
    min-height: 100vh;
    padding: 120px 0 6rem;
    background: linear-gradient(180deg, var(--light-bg) 0%, var(--light-card) 100%);
}

.structure-header {
    text-align: center;
    margin-bottom: 4rem;
}

.structure-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.structure-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.org-chart {
    max-width: 1200px;
    margin: 0 auto;
}

.org-level {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 0 auto;
}

.org-card {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid rgba(4, 131, 184, 0.1);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.org-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(4, 131, 184, 0.2);
}

.org-card.holding {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
}

.org-card.holding h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.org-card.holding .org-role {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.org-card.holding .org-details {
    color: rgba(255, 255, 255, 0.8);
}

.org-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.brand-logo {
    width: 120px;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(4, 131, 184, 0.2));
    transition: var(--transition);
}

.brand-logo.holding-logo {
    width: 150px;
    max-height: 90px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.3));
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(4, 131, 184, 0.3));
}

.brand-logo.holding-logo:hover {
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

.org-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.org-role {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.org-details {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.org-details span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.org-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.connector-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(4, 131, 184, 0.3) 100%);
}

.connector-split {
    width: 400px;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    margin-top: -1px;
}

.org-level.brands {
    margin-top: 2rem;
    justify-content: center;
}

.org-card.brand {
    max-width: 450px;
    flex: 1;
}

.org-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.stat-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--light-card);
    border-radius: 12px;
    border: 1px solid rgba(4, 131, 184, 0.1);
}

.stat-badge .stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-badge .stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.org-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.feature-tag {
    padding: 0.5rem 1rem;
    background: rgba(4, 131, 184, 0.1);
    border: 1px solid rgba(4, 131, 184, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.org-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: var(--transition);
}

.org-link:hover {
    gap: 1rem;
    color: var(--secondary-color);
}

.org-summary {
    margin-top: 4rem;
}

.summary-card {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 24px;
    border: 2px solid rgba(4, 131, 184, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.summary-number {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.summary-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.back-button-container {
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Structure Page */
@media (max-width: 968px) {
    .org-level.brands {
        flex-direction: column;
        align-items: center;
    }

    .connector-split {
        display: none;
    }

    .org-card.brand {
        max-width: 100%;
    }

    .structure-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .structure-hero {
        padding: 100px 0 4rem;
    }

    .structure-header h1 {
        font-size: 2rem;
    }

    .org-card {
        padding: 2rem;
    }

    .org-card.holding h2 {
        font-size: 2rem;
    }

    .org-card h3 {
        font-size: 1.5rem;
    }

    .brand-logo {
        width: 90px;
        max-height: 60px;
    }

    .brand-logo.holding-logo {
        width: 110px;
        max-height: 70px;
    }

    .org-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .summary-card {
        grid-template-columns: 1fr 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ==================== ACESSIBILIDADE ==================== */
/* Respeitar preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ==================== MENU MOBILE ==================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark, #212529);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav {
        position: relative;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white, #FFFFFF);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 1000;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .language-selector {
        margin-top: 1rem;
    }
    
    body.menu-open {
        overflow: hidden;
    }
}
