/* ==========================================================================
   GOOGLE-ENGINEER GRADE SYSTEM: MINIMALIST WHITE & YELLOW CORE CSS
   ========================================================================== */

:root {
    /* Pure Minimalist light color tokens */
    --color-bg-deep: #ffffff;         /* Clean white base */
    --color-bg-surface: linear-gradient(135deg, rgba(0, 147, 147, 0.03) 0%, rgba(207, 169, 114, 0.03) 100%);      /* Soft cool grey-white */
    --color-bg-card: rgba(255, 255, 255, 0.85); /* Elegant light glass card */
    --color-border-glass: rgba(15, 23, 42, 0.195); /* Delicate ultra-thin grey border */
    
    /* Brand Accents - Corporate Yellow & White */
    --color-gold: #f39c12;            /* Exact corporate yellow from Jogaisa logo */
    --color-gold-hover: #d35400;      /* Darker warm accent for buttons */
    --color-yellow-light: #fef9c3;    /* Very soft cream yellow for badges */
    
    /* Highly readable slate-charcoal typography */
    --color-text-main: #0f172a;       /* Sleek dark charcoal slate */
    --color-text-muted: #334155;      /* Slate grey for bodies */
    --color-text-dark: #64748b;       /* Muted grey for descriptions */
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Variables */
    --header-height: 80px;
    --max-width: 1200px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    /* Advanced Timing curves */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    /* Shadows */
    --shadow-neon-gold: 0 4px 20px rgba(243, 156, 18, 0.08);
    --shadow-premium: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--color-bg-deep);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button, input, select, textarea {
    font-family: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* Scroll Depth Progress Bar */
#scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold) 0%, #f1c40f 100%);
    z-index: 3000;
    transition: width 0.1s ease;
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.py-sm { padding: 3rem 0; }
.py-md { padding: 5rem 0; }
.py-lg { padding: 8em 0; }

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

.section-tagline {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    display: inline-block;
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.accent-line {
    width: 45px;
    height: 3px;
    background: var(--color-gold);
    border-radius: 2px;
}

/* Center the accent-line only on mobile for the 'Quem Somos' section */
/* Default: center accent lines site-wide */
.accent-line {
    margin: 0 auto;
}

/* On desktop, keep the 'Quem Somos' accent aligned to the left */
@media (min-width: 900px) {
    #quem-somos .accent-line {
        margin: 0;
    }
}

/* Minimalist light glassmorphism card */
.glass-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(243, 156, 18, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px -10px rgba(15, 23, 42, 0.04);
}

/* Modern minimalist buttons */
.btn-primary {
    background: var(--color-gold);
    color: #ffffff;
    font-weight: 700;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.2);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    background: var(--color-gold-hover);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    border: 1px solid var(--color-border-glass);
    color: var(--color-text-main);
    font-weight: 600;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.btn-secondary:hover {
    background: var(--color-bg-surface);
    border-color: rgba(243, 156, 18, 0.2);
    transform: translateY(-2px);
}

.lg-btn {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
}

/* Custom yellow gradient text */
.gradient-text {
    background: #f39c12;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-glass);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: #ffffff;
    height: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.main-logo {
    width: 44px;
    height: 44px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.05));
    transition: var(--transition-smooth);
}

.logo-petal-top { fill: #1e293b; }
.logo-petal-left { fill: #475569; }
.logo-petal-right { fill: #64748b; }

.logo-area:hover .main-logo {
    transform: rotate(3deg) scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 0.03em;
    line-height: 1;
    color: var(--color-text-main);
}

.brand-subtitle {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: var(--color-gold);
    margin-top: 0.15rem;
}

.nav-bar {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-text-main);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-gold);
    font-weight: 700;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--color-text-main);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ==========================================================================
   SECTION 1: HERO / CAPA (SPLIT SCREEN ARCHITECTURE)
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 80% 20%, rgba(254, 243, 199, 0.3) 0%, rgba(255, 255, 255, 1) 70%);
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(243, 156, 18, 0.03) 1.5px, transparent 1.5px), 
        radial-gradient(rgba(100, 116, 139, 0.02) 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    background-position: 0 0, 20px 20px;
    z-index: 1;
}

.hero-glow-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    z-index: 2;
}

.blob-1 {
    top: 15%;
    right: 15%;
    width: 450px;
    height: 450px;
    background-color: #fef3c7; /* Soft yellow cream */
}

.blob-2 {
    bottom: 10%;
    left: 10%;
    width: 350px;
    height: 350px;
    background-color: #f1f5f9; /* Soft silver slate */
}

.hero-container {
    max-width: var(--max-width);
    width: 100%;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-yellow-light);
    border: 1px solid rgba(243, 156, 18, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-gold);
    animation: pulseGlow 2s infinite alternate;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.hero-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.hero-lead {
    color: var(--color-text-muted);
    max-width: 580px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.hero-highlights {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(243, 156, 18, 0.04);
    border-left: 2px solid var(--color-gold);
    padding: 0.75rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.divider-v {
    width: 1px;
    height: 40px;
    background-color: var(--color-border-glass);
}

.highlight-item {
    display: flex;
    flex-direction: column;
}

.hl-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 0.2rem;
}

.hl-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.hl-value i {
    margin-left: 0.25rem;
    color: var(--color-gold);
    transition: var(--transition-fast);
}

.hl-value:hover i {
    transform: translate(2px, -2px);
}

/* Split Image Visual Panel */
.hero-image-wrapper {
    position: relative;
    width: 100%;
    padding: 0.4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    filter: grayscale(10%) contrast(105%);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-main-img {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(110%);
}

.hero-img-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #ffffff;
    border: 1px solid rgba(243, 156, 18, 0.25);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
    animation: markerFloat 3s infinite ease-in-out;
}

.badge-icon {
    color: var(--color-gold);
    font-size: 1rem;
}

.badge-txt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
}

.scroll-down-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.scroll-down-indicator:hover {
    color: var(--color-gold);
}

.mouse-icon {
    width: 24px;
    height: 38px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheelScroll 1.5s infinite ease-in-out;
}

/* ==========================================================================
   SECTION 2: QUEM SOMOS & MERCADOS GLOBAIS
   ========================================================================== */
.about-section {
    background: #f4f8f9;
}

/* Responsive padding for About section (replaces inline styles) */
.about-section {
    padding: 6rem 0 3rem;
}

@media (min-width: 900px) {
    .about-section {
        padding: 8rem 0 3rem;
    }
}

/* Constrain the moved section header to match the left column width */
.about-content-area .section-header-centered {
    max-width: 620px;
    text-align: left;
    margin: 0 0 0 0;
}

@media (max-width: 899px) {
    .about-content-area .section-header-centered {
        max-width: none;
        text-align: center;
        margin: 0 0 2rem 0;
    }
}

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

.about-content-area {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-text-main);
    line-height: 1.5;
}

.about-text {
    color: var(--color-text-muted);
}

/* Sleek Quote Box */
.motto-box-styled {
    position: relative;
    padding: 2.2rem;
    margin-top: 1rem;
    border-left: 3px solid var(--color-gold);
    background-color: #ffffff;
    box-shadow: var(--shadow-premium);
}

.motto-icon-quote {
    font-size: 3rem;
    position: absolute;
    top: -10px;
    right: 20px;
    color: rgba(243, 156, 18, 0.04);
    pointer-events: none;
}

.motto-text-quote {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-main);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.motto-author {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-gold);
    display: block;
}

/* Centered motto text (replaces boxed motto) */
.motto-text-centered {
    text-align: center;
    margin: 4rem auto;
    max-width: 720px;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .motto-text-centered {
        margin: 2.5rem auto;
        padding: 0 0.6rem;
    }
}

.motto-text-centered .motto-text-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-text-main);
    font-style: italic;
    margin: 0 auto 0.5rem;
}

.motto-text-centered .motto-author {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    color: var(--color-text-dark);
    display: block;
}

@media (max-width: 599px) {
    .motto-text-centered .motto-text-quote {
        font-size: 1.15rem;
    }
}

/* Markets container */
/* Integrated presence block styling in Quem Somos */
.about-presence-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: var(--color-bg-deep);
    border-left: 2px solid var(--color-gold);
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
}

.about-presence-block h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.about-presence-block p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Replaced Markets Dashboard with High-Quality Team Image */
.about-image-wrapper {
    position: relative;
    width: 100%;
    padding: 0.4rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-premium);
    filter: grayscale(10%) contrast(105%);
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.02);
    filter: grayscale(0%) contrast(110%);
}

.about-img-tag {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #ffffff;
    border: 1px solid rgba(243, 156, 18, 0.25);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 10;
}

.tag-accent-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-gold);
    border-radius: 50%;
}

.about-img-tag span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION 3: MISSÃO, VISÃO, VALORES (PILARES E BENTO GRID OVERHAUL)
   ========================================================================== */
.pillars-intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.pillar-intro-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    background-color: #ffffff;
}

.pillar-intro-card.border-gold { border-top: 3px solid var(--color-gold); }
.pillar-intro-card.border-emerald { border-top: 3px solid var(--color-gold); }
.pillar-intro-card.border-blue { border-top: 3px solid var(--color-text-main); }

.pillar-header {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.pillar-icon {
    width: 45px;
    height: 45px;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.pillar-intro-card.border-gold .pillar-icon { color: var(--color-gold); background: rgba(243, 156, 18, 0.04); }
.pillar-intro-card.border-emerald .pillar-icon { color: var(--color-gold); background: rgba(243, 156, 18, 0.04); }
.pillar-intro-card.border-blue .pillar-icon { color: var(--color-text-main); background: rgba(15, 23, 42, 0.04); }

.pillar-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
}

.pillar-body {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.grid-statements-title {
    margin-bottom: 2rem;
}

.grid-statements-title h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
    margin-bottom: 0.4rem;
}

.grid-statements-title p {
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

/* High-Fidelity Bento Grid for Creed Statements */
.bento-creed-grid {
    display: grid;
    gap: 1.25rem;
}

.bento-accordion-item {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--border-radius-md);
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.bento-accordion-item[open] {
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
}

.bento-summary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: linear-gradient(180deg, rgba(243, 156, 18, 0.08), rgba(243, 156, 18, 0.02));
    cursor: pointer;
    user-select: none;
    color: var(--color-text-main);
    transition: background 0.25s ease;
}

.bento-summary:hover {
    background: linear-gradient(180deg, rgba(243, 156, 18, 0.16), rgba(243, 156, 18, 0.04));
}

.bento-summary::-webkit-details-marker {
    display: none;
}

.summary-chip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.bento-summary .bento-cat {
    position: static;
    margin: 0;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-main);
}

.bento-dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: var(--color-text-main);
    transition: transform 0.3s ease, background 0.3s ease;
}

.bento-accordion-item[open] .bento-dropdown-icon {
    transform: rotate(180deg);
    background: rgba(243, 156, 18, 0.18);
}

.bento-card {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: transparent;
}

.bento-card img.bento-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: calc(var(--border-radius-md) - 4px);
    transition: transform 0.7s ease;
}

.bento-card:hover img.bento-img {
    transform: scale(1.03);
}

.bento-info {
    padding: 0.25rem 0;
}

.bento-info p {
    margin: 0;
    color: var(--color-text-dark);
    line-height: 1.75;
    font-size: 0.98rem;
}

.category-valores { background-color: var(--color-gold); color: #ffffff; }
.category-missao { background-color: #0f172a; color: #ffffff; }
.category-visao { background-color: rgba(243, 156, 18, 0.16); color: var(--color-text-main); border: 1px solid rgba(243, 156, 18, 0.3); }

@media (min-width: 768px) {
    .bento-accordion-item {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .bento-accordion-item {
        width: 100%;
    }
}

/* ==========================================================================
   SECTION 4: SECTORES DE ATUAÇÃO (HIGH-END TAB SYSTEM)
   ========================================================================== */
.services-section {
    background-color: #f4f8f9;
}

.sector-hub-wrapper {
    display: grid;
    grid-template-columns: 0.95fr 2.05fr;
    gap: 3rem;
    align-items: flex-start;
}

/* Left panel: Tab select column */
.sector-tabs-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sector-tab-item {
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
    background: #ffffff;
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.tab-number {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-dark);
    margin-right: 1.25rem;
    transition: var(--transition-fast);
}

.tab-label-group {
    display: flex;
    flex-direction: column;
}

.tab-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text-main);
    transition: var(--transition-fast);
}

.tab-subtitle {
    font-size: 0.72rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

.tab-indicator-arrow {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--color-text-dark);
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-smooth);
}

/* Hover and active states for tabs */
.sector-tab-item:hover {
    border-color: rgba(243, 156, 18, 0.25);
    transform: translateX(4px);
}

.sector-tab-item.active {
    border-color: var(--color-gold);
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.08);
}

.sector-tab-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background-color: var(--color-gold);
}

.sector-tab-item.active .tab-number {
    color: var(--color-gold);
}

.sector-tab-item.active .tab-title {
    color: var(--color-gold);
}

.sector-tab-item.active .tab-indicator-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-gold);
}

/* Right Panel: Content display console */
.sector-display-pane {
    background-color: #ffffff;
    padding: 3rem;
    min-height: 480px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.sector-pane-item {
    display: none;
    opacity: 0;
    width: 100%;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.sector-pane-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pane-split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.pane-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.pane-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
}

.pane-info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.95rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-text-main);
}

.pane-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.pane-subtext {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    border-left: 2px solid var(--color-gold);
    padding-left: 0.85rem;
}

.pane-features-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.pane-features-list li {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.pane-features-list li i {
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.pane-visual {
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.sector-pane-item.active .pane-visual:hover {
    transform: scale(1.02);
}

/* Oil and Gas Shipping logistics */
.logistics-badge {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-glass);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-shipment {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge-helper-tooltip {
    font-size: 0.72rem;
    color: var(--color-text-dark);
    font-weight: 500;
}

/* ==========================================================================
   SECTION 5: PARCEIROS
   ========================================================================== */
.partners-section {
    background-color: #ffffff;
}

.partners-carousel-wrapper {
    overflow: hidden;
    padding: 1rem 0;
    position: relative;
}

.partners-carousel-wrapper::before,
.partners-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}

.partners-carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}

.partners-carousel {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: max-content;
    animation: continuousScroll 25s linear infinite;
}

.partner-logo-card {
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 340px;
    justify-content: center;
    user-select: none;
    background-color: var(--color-bg-surface);
}

.partner-symbol {
    font-size: 1.8rem;
    color: var(--color-gold);
}

.partner-logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ==========================================================================
   SECTION 6: CONTACTOS & MATERIAL DESIGN FORM OVERHAUL
   ========================================================================== */
.contacts-section {
    background-color: var(--color-bg-surface);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: flex-start;
}

.contacts-info-area {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contacts-info-card {
    padding: 2.5rem;
    background-color: #ffffff;
}

.info-card-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.info-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: var(--color-yellow-light);
    border: 1px solid rgba(243, 156, 18, 0.2);
    border-radius: 10px;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.detail-texts {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    margin-bottom: 0.25rem;
}

.detail-value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
    line-height: 1.4;
}

.detail-value:hover {
    color: var(--color-gold);
}

.detail-divider {
    margin: 0 0.5rem;
    color: var(--color-text-dark);
}

/* Map Mock Styled Area */
.map-mock-container {
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.map-mock-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(var(--color-bg-surface) 20%, transparent 20%),
        radial-gradient(rgba(0,0,0,0.02) 10%, transparent 10%);
    background-size: 16px 16px;
    background-position: 0 0, 8px 8px;
    background-color: #ffffff;
}

.map-mock-marker {
    position: relative;
    z-index: 2;
    color: var(--color-gold);
    font-size: 2.2rem;
    filter: drop-shadow(0 2px 5px rgba(243,156,18,0.4));
    animation: markerFloat 2s infinite ease-in-out;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 25px;
    height: 25px;
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    animation: pulseRing 2s infinite linear;
}

.map-mock-card {
    position: absolute;
    bottom: 20px;
    background: #ffffff;
    border: 1px solid var(--color-border-glass);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    box-shadow: var(--shadow-premium);
}

.map-mock-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-gold);
}

.map-mock-addr {
    font-size: 0.65rem;
    color: var(--color-text-dark);
}

/* Material Design interactive Form Card */
.contact-form-card {
    padding: 3.5rem;
    background-color: #ffffff;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 3.5rem;
}

.custom-form {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.2rem;
}

/* Material Design input style */
.material-input-group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.material-input-group input,
.material-input-group textarea {
    background: none;
    border: none;
    border-bottom: 2px solid rgba(15, 23, 42, 0.08);
    padding: 10px 0;
    font-size: 0.98rem;
    color: var(--color-text-main);
    width: 100%;
    transition: border-color 0.3s ease;
}

.material-input-group textarea {
    resize: none;
}

.material-input-group label {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.98rem;
    color: var(--color-text-dark);
    font-weight: 500;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animated bottom focus line */
.input-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: all 0.3s ease;
}

/* Active floating label style */
.material-input-group.focused label,
.material-input-group.has-value label {
    top: -12px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.material-input-group.focused input,
.material-input-group.focused textarea {
    border-bottom-color: rgba(15, 23, 42, 0.02); /* Fade the base line */
}

.material-input-group.focused .input-bar {
    width: 100%;
    left: 0;
}

/* Non-floating Select element material style */
.select-material-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.select-material-group .static-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.select-material-group select {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--border-radius-sm);
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    color: var(--color-text-main);
    transition: var(--transition-fast);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}

.select-material-group select:focus {
    border-color: var(--color-gold);
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(243, 156, 18, 0.08);
}

.select-material-group select option {
    background-color: #ffffff;
    color: var(--color-text-main);
}

.form-submit-btn {
    align-self: flex-start;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    border: none;
}

/* ==========================================================================
   INTERACTIVE POPUP MODALS
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 2000;
    transition: var(--transition-smooth);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

/* Success Card */
.modal-card {
    width: 90%;
    max-width: 480px;
    padding: 3rem 2.2rem;
    text-align: center;
    background-color: #ffffff;
    transform: scale(0.95);
    transition: var(--transition-smooth);
}

.modal-overlay.open .modal-card {
    transform: scale(1);
}

.modal-icon-success {
    font-size: 4rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 10px rgba(243, 156, 18, 0.2));
    animation: iconBounce 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.85rem;
}

.modal-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

/* ==========================================================================
   MODERN BRAND FOOTER
   ========================================================================== */
.main-footer {
    background-color: var(--color-text-main);
    color: #ffffff;
    border-top: 1px solid var(--color-border-glass);
    padding: 6rem 0 3rem;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-logo-svg {
    width: 32px;
    height: 32px;
}

.footer-quote-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--color-gold);
    color: #ffffff;
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #ffffff;
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links-list a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-links-list a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-items li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-items li i {
    color: var(--color-gold);
    margin-top: 0.25rem;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding-top: 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
}

.footer-legal-links a:hover {
    color: var(--color-gold);
}

.dot-divider {
    width: 4px;
    height: 4px;
    background-color: rgba(255,255,255,0.3);
    border-radius: 50%;
}

/* ==========================================================================
   SCROLL EFFECTS & ANIMATIONS
   ========================================================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling and subtle section focus transition */
html {
    scroll-behavior: smooth;
}

section.revealed {
    transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reduce non-active sections slightly to create motion between sections */
/* Different subtle offsets depending on scroll direction */
body.scrolling-down section.revealed:not(.active-section) {
    opacity: 0.95;
    transform: translateY(8px) scale(0.998);
}

body.scrolling-up section.revealed:not(.active-section) {
    opacity: 0.95;
    transform: translateY(-8px) scale(0.998);
}

/* Emphasize the section currently in view */
section.revealed.active-section {
    opacity: 1;
    transform: translateY(0) scale(1.01);
}

/* Animation keyframes */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 5px rgba(243, 156, 18, 0.2);
    }
    100% {
        box-shadow: 0 0 15px rgba(243, 156, 18, 0.6);
    }
}

@keyframes scannerLine {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

@keyframes wheelScroll {
    0% { opacity: 0; top: 6px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 18px; }
}

@keyframes continuousScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

@keyframes markerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(2.2); opacity: 0; }
}

@keyframes iconBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Entrance classes */
.animate-fade-in { animation: fadeInUp 0.8s ease forwards; }
.animate-slide-up { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards; opacity: 0; }
.animate-slide-up-delayed { animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; }
.animate-fade-in-slow { animation: fadeInUp 1s ease 0.5s forwards; opacity: 0; }
.animate-fade-in-right {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

/* Laptop / Desktop Layout scales */
@media (max-width: 1100px) {
    .hero-container {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 2rem;
    }
    .hero-title {
        font-size: 3.2rem;
    }
    .about-grid, .contacts-grid, .sector-hub-wrapper {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .pillars-intro-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Tablet Screen Layouts */
@media (max-width: 768px) {
    .py-lg { padding: 5rem 0; }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Mobile Drawer */
    .nav-bar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
        border-left: 1px solid var(--color-border-glass);
        z-index: 999;
        transition: var(--transition-smooth);
        padding: 6rem 2.5rem;
    }
    
    .nav-bar.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 2.2rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .header-btn {
        display: none;
    }

    /* Stack Hero elements vertically */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
        margin: 50px 0 0 0;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .hero-actions-group {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-actions-group .btn-primary,
    .hero-actions-group .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-highlights {
        align-self: center;
        border-left: none;
        border-bottom: 2px solid var(--color-gold);
        border-radius: 0;
        padding-bottom: 0.5rem;
    }
    
    .pane-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pane-visual {
        height: 250px;
        order: -1; /* Image first on mobile view */
    }
    
    .sector-display-pane {
        padding: 2rem;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    
    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Smartphone Portrait View scaling */
@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-main-img {
        height: 320px;
    }
    .sector-tab-item {
        padding: 1rem 1.5rem;
    }
    .contact-form-card {
        padding: 1.5rem;
    }
    .sector-display-pane {
        padding: 1.5rem;
    }
}
