:root {
    /* Color Palette */
    --primary-orange: #E6782E;
    --primary-orange-hover: #ff8c42;
    --dark-charcoal: #0E0E0E;
    --graphite-grey: #1E1E1E;
    --white: #FFFFFF;
    --text-muted: #A0A0A0;
    --border-color: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Spacing */
    --section-padding: 100px 5%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #080808;
    overflow-x: hidden; /* Evita scroll horizontal indesejado */
}

/* O "Segredo" da Largura Mínima e Máxima */
.container {
    width: 100%;
    max-width: 1300px; /* Largura máxima confortável para leitura */
    margin: 0 auto;    /* Centraliza o conteúdo */
    padding: 0 5%;     /* Margem de segurança para telas pequenas (mobile) */
}

/* Padronização das Seções */
section {
    width: 100%;
    display: block;
    position: relative;
    padding: 100px 0; /* Espaçamento interno vertical padrão */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Header Navigation & Branding */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: clamp(10px, 2vh, 20px) 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo img {
    height: clamp(44px, 7.5vh, 69px);
    /* Increased by 25% */
    width: auto;
    object-fit: contain;
}

/* Hero Section - Single Screen Focus */
.hero {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    background: linear-gradient(rgba(14, 14, 14, 0.94), rgba(14, 14, 14, 0.94)), url('../assets/background.jpg');
    background-size: cover;
    background-position: center 25%;
    background-attachment: fixed;
    overflow: hidden;
}

/* Energy Pulse Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle at center, rgba(230, 120, 46, 0.08) 0%, transparent 50%);
    animation: energyPulse 15s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes energyPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.2;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

.hero-content {
    max-width: 1000px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    transform: translateY(-20px);
    /* Vertical balance adjustment */
}

.hero h1 {
    font-size: clamp(1.5rem, 4.6vw, 2.9rem);
    /* Reduced by ~15% */
    max-width: 850px;
    margin-bottom: clamp(8px, 1.5vh, 15px);
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.025em;
    font-weight: 800;
}

.tagline {
    font-size: clamp(0.65rem, 1.2vw, 0.85rem) !important;
    /* Reduced by ~15% */
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto clamp(12px, 3vh, 25px) !important;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.8;
}

.launch-label {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: clamp(0.5rem, 1vw, 0.6rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: clamp(12px, 2.5vh, 20px);
    backdrop-filter: blur(5px);
}

/* Countdown - Mobile Optimized */
.countdown-container {
    margin-bottom: clamp(25px, 4vh, 45px);
    padding: clamp(8px, 2vw, 15px);
    width: 100%;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 3vw, 40px);
    flex-wrap: wrap;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: clamp(50px, 12vw, 85px);
}

.countdown-value {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 6vw, 3.6rem);
    /* Reduced by 25% */
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 20px rgba(230, 120, 46, 0.2);
}

.countdown-label {
    font-size: clamp(0.45rem, 1vw, 0.6rem);
    text-transform: uppercase;
    color: var(--primary-orange);
    letter-spacing: 2.2px;
    margin-top: 8px;
    font-weight: 700;
}

/* Premium Primary Call to Action */
.contact-button {
    display: inline-block;
    padding: clamp(13px, 2vh, 16px) clamp(28px, 4.5vw, 48px);
    /* Reduced padding by ~20% */
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 800;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    /* Reduced by 20% */
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230, 120, 46, 0.15);
}

.contact-button:hover {
    background-color: var(--primary-orange-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(230, 120, 46, 0.4);
}

/* Responsive Footer Overlay */
.minimal-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: clamp(25px, 5vh, 50px) 5%;
    background: linear-gradient(to top, rgba(14, 14, 14, 1) 50%, transparent 100%);
    z-index: 100;
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: clamp(25px, 8vw, 90px);
    margin-bottom: 30px;
}

.contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.contact-col .label {
    font-size: 0.65rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
}

.contact-col p {
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
    color: var(--white);
    opacity: 0.85;
    font-weight: 500;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-icon:hover {
    background: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.footer-bottom {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    width: 100%;
    opacity: 0.6;
}

/* Advanced Responsiveness */
@media (max-width: 991px) {
    .footer-contacts {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 130px 5% 200px;
        background-attachment: scroll;
    }

    .footer-contacts {
        flex-direction: column;
        gap: 30px;
    }

    .socials {
        order: -1;
        margin-bottom: 10px;
    }

    .hero h1 {
        letter-spacing: -0.01em;
        line-height: 1.2;
    }
}

@media (max-height: 750px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 160px;
    }

    .launch-label {
        margin-bottom: 20px;
    }

    .countdown-container {
        margin-bottom: 25px;
    }
}

/* Utility Cleanup */
.presence,
.about,
.contact,
footer,
nav,
.center-logo,
.brand-text {
    display: none !important;
}





.presence-section {
    background-color: #111; /* Um tom levemente diferente do "About" para separar visualmente */
    border-top: 1px solid #222;
}

.presence-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.presence-card {
    background: #1a1a1a;
    padding: 35px;
    border-bottom: 3px solid #333;
    transition: border-color 0.3s ease;
}

.presence-card:hover {
    border-color: #f28132;
}

.main-hub h3 {
    color: #f28132;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.hub-list {
    list-style: none;
    padding: 0;
}

.hub-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.hub-list li .dot {
    height: 8px;
    width: 8px;
    background-color: #f28132;
    border-radius: 50%;
    margin-right: 15px;
}

.presence-card h4 {
    margin: 15px 0 10px 0;
    font-size: 1.2rem;
}

.presence-card p {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .presence-grid {
        grid-template-columns: 1fr;
    }
}



.about-premium {
    padding: 150px 0;
    background-color: #080808;
    color: #fff;
    overflow: visible;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    position: relative;
}

.about-main-content {
    flex: 1.2;
    z-index: 2;
}

.eyebrow {
    color: #f28132;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 20px;
}

.display-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    line-height: 0.9;
    text-transform: uppercase;
    margin-bottom: 40px;
}


.display-title {
    font-family: 'Syne', sans-serif;
    font-weight: 800; 
    text-transform: uppercase;
    font-size: 4rem;
    line-height: 1;
    color: #fff;
    letter-spacing: -1px; /* Syne fica boa mais junta */
}

.outline-text {
    -webkit-text-stroke: 1.5px #f28132; /* Syne suporta uma borda levemente mais grossa */
    color: transparent;
}

.big-p {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 500;
}

.detailed-text p {
    color: #888;
    margin-bottom: 15px;
    max-width: 500px;
}

/* Visual Stack */
.about-visual-stack {
    flex: 0.8;
    position: relative;
}

.image-container {
    position: relative;
    padding-left: 50px;
}

.main-img {
    width: 100%;
    filter: grayscale(100%) contrast(1.2);
    opacity: 0.6;
}

.orange-overlay-box {
    position: absolute;
    bottom: -40px;
    left: 0;
    background-color: #f28132;
    padding: 40px;
    width: 300px;
    box-shadow: 20px 20px 0px rgba(0,0,0,0.5);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.stat-desc {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    display: block;
    margin-top: 10px;
}

/* Responsivo */
@media (max-width: 1024px) {
    .about-wrapper { flex-direction: column; }
    .display-title { font-size: 3rem; }
    .about-visual-stack { margin-top: 80px; width: 100%; }
}


.about-immersive {
    position: relative;
    width: 100%;
    padding: 150px 0;
    background-color: #000;
    /* Imagem de Fundo Imersiva (Use uma foto de drone de um porto ou mina) */
    background-image: url('assets/drone-port-mocapital.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Efeito Parallax Opcional (Comentado para performance mobile) */
    /* background-attachment: fixed; */
    color: #fff;
    overflow: hidden;
}

/* Overlay para escurecer a imagem e destacar o texto */
.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.95) 100%);
    z-index: 1;
}

.about-content-wrapper {
    position: relative;
    z-index: 2; /* Garante que o texto fique acima do overlay */
    display: flex;
    flex-direction: column;
    gap: 100px;
}

/* Tipografia Brutalista */
.massive-title {
    /*font-family: 'Montserrat', sans-serif;*/
    font-size: clamp(3rem, 8vw, 6rem); /* Título responsivo gigante */
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -4px; /* Texto bem junto para passar força */
}

/* Reaplicando sua fonte Montserrat/Syne vazada preferida */
.outline-text {
    -webkit-text-stroke: 1.5px #f28132;
    color: transparent;
}

/* Manifesto Block */
.about-manifesto-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 60px;
}

.about-manifesto-block .lead-text {
    color: #f28132;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.about-manifesto-block .detailed-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* MVV Immersive Grid */
.mvv-immersive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: rgba(10, 10, 10, 0.8); /* Fundo semi-transparente */
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
}

.mvv-card:hover {
    border-color: #f28132;
    background: rgba(20, 20, 20, 0.95);
    transform: translateY(-5px);
}

.mvv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mvv-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #f28132;
}

.mvv-card h3 {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    font-size: 1.3rem;
    letter-spacing: 1px;
}

.mvv-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .about-immersive { padding: 100px 0; }
    .about-content-wrapper { gap: 60px; }
    .massive-title { font-size: 3.5rem; letter-spacing: -2px; }
    .about-manifesto-block, .mvv-immersive-grid { grid-template-columns: 1fr; gap: 30px; }
    .mvv-card { padding: 30px; }
}


/* Importando a Montserrat em todos os pesos necessários */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;900&display=swap');

.massive-title {
    font-family: 'Montserrat', sans-serif !important; /* !important para garantir que não mude */
    font-weight: 900; /* Peso máximo para máxima solidez */
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: -2px; /* Deixa as letras juntas e fortes */
    margin-bottom: 50px;
}

/* Primeira linha: Branca e Sólida */
.text-white {
    color: #ffffff;
}

/* Segunda linha: Apenas o contorno Laranja, limpo e profissional */
.text-outline {
    color: transparent;
    -webkit-text-stroke: 1.5px #f28132; /* Contorno fino e preciso */
    text-stroke: 1.5px #f28132;
    /* Remove qualquer sombra ou efeito anterior que possa estar sujando a fonte */
    text-shadow: none;
}

/* Ajuste do Eyebrow (O texto pequeno acima do título) */
.eyebrow {
    font-family: 'Montserrat', sans-serif;
    color: #f28132;
    font-weight: 700;
    letter-spacing: 5px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}