:root {
    --color-blue: #0A192F;
    --color-blue-light: #112B52;
    --color-blue-text: #1C3661;
    --color-yellow: #FFC700;
    --color-yellow-hover: #E5B300;
    --color-white: #FFFFFF;
    --color-bg: #FAFAFA;
    --color-text: #4A5568;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 12rem 10% 4rem;
    overflow: hidden;
    background-color: var(--color-blue);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.45;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.6) 0%, rgba(10, 25, 47, 0.45) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.brand {
    position: absolute;
    top: 2.5rem;
    left: 10%;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.weight-light {
    font-weight: 200;
}

.weight-bold {
    font-weight: 700;
}

.text-yellow {
    color: var(--color-yellow);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 600px;
    margin-bottom: 3.5rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-yellow);
    color: var(--color-blue);
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 4px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--color-yellow-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ================= SECTION 2: PROBLEM ================= */
.problem-section {
    padding: 8rem 10%;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 6rem;
    align-items: center;
    background-color: var(--color-bg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--color-blue-text);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.text-blue {
    color: var(--color-blue);
}

.section-text {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 300;
    max-width: 600px;
}

.visual-card {
    background-color: var(--color-white);
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.05);
    border-left: 6px solid var(--color-yellow);
    position: relative;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-color: var(--color-blue);
    opacity: 0.05;
    z-index: -1;
    border-radius: 8px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--color-blue);
    line-height: 1;
    margin-bottom: 1rem;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.stat-desc {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 400;
}

/* ================= ANIMATIONS ================= */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1.is-visible {
    transition-delay: 0.2s;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .problem-section {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 5rem 5%;
    }
    
    .visual-card {
        padding: 2.5rem 1.5rem;
    }
    
    .hero {
        padding: 4rem 5%;
    }
}

/* ================= SECTION 3: A SOLUÇÃO ================= */
.solution-section {
    position: relative;
    padding: 10rem 10% 4rem;
    background-color: var(--color-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.solution-spheres {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-blue-light) 0%, rgba(17, 43, 82, 0) 70%);
    filter: blur(40px);
    opacity: 0.6;
    animation: floatLoop 6s ease-in-out infinite;
}

.sphere-left {
    top: -100px;
    left: -100px;
}

.sphere-right {
    bottom: -100px;
    right: -100px;
    animation-delay: -3s;
}

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

.solution-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.solution-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 2rem;
    text-shadow: 0 4px 20px rgba(255, 199, 0, 0.15);
}

.solution-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* ================= SECTION: QUEM SOMOS ================= */
.about-section {
    padding: 4rem 5% 5rem;
    background-color: var(--color-blue);
}

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

.about-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

.about-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-yellow);
}

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

.about-card {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 2rem 1.25rem;
    position: relative;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.08);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.about-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 4px;
    background-color: var(--color-yellow);
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-grid-bento {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.about-bento-left {
    display: flex;
}

.about-bento-left .about-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-bento-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
}

.about-bento-row-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-values-grid {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.about-values-grid li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.about-values-grid .value-name {
    font-family: var(--font-heading);
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 1.1rem;
}

.about-values-grid .value-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    padding-left: 0;
}

@media (max-width: 1024px) {
    .about-grid-bento {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-bento-right {
        gap: 1.5rem;
    }
    .about-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .about-bento-row-top {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-card {
        padding: 2rem 1.5rem;
    }
}

/* ================= SECTION 4: NOSSOS SERVIÇOS ================= */
.services-section {
    padding: 5rem 5%;
    background-color: var(--color-bg);
}

.services-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-blue-text);
    text-align: center;
    margin-bottom: 2.5rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-card {
    background-color: var(--color-white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 4.5rem 2rem 2rem 2rem;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.08);
}

.highlight-card {
    background-color: #F5F7FA;
    border-bottom: 3px solid var(--color-yellow);
}

.bento-large { grid-column: span 2; grid-row: span 1; }
.bento-medium { grid-column: span 1; grid-row: span 1; }
.bento-small { grid-column: span 1; grid-row: span 1; }
.bento-long { grid-column: span 4; grid-row: span 1; }

.bento-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 32px;
    color: var(--color-blue);
    opacity: 0.2;
}

.bento-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-blue-text);
    margin-bottom: 0.8rem;
}

.bento-large .bento-title { font-size: 1.5rem; }
.bento-medium .bento-title, .bento-small .bento-title, .bento-long .bento-title { font-size: 1.2rem; }

.bento-text {
    font-size: 1rem;
    color: var(--color-text);
}

@media (max-width: 1024px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-large { grid-column: span 2; grid-row: auto; }
    .bento-medium, .bento-small { grid-column: span 1; }
    .bento-long { grid-column: span 2; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-large, .bento-medium, .bento-small, .bento-long { grid-column: span 1; grid-row: auto; }
}

/* ================= SECTION 5: FRENTES DE ATUAÇÃO ================= */
.solutions-frentes-section {
    padding: 10rem 10%;
    background-color: var(--color-white);
    min-height: 150vh;
}

.frentes-container {
    display: flex;
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
}

.frentes-left {
    width: 45%;
    position: sticky;
    top: 20vh;
}

.frentes-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.1;
    color: var(--color-blue);
    margin: 0;
    word-break: break-word;
}

.text-stroke {
    -webkit-text-stroke: 2px var(--color-blue);
    color: transparent;
}

.frentes-right {
    width: 55%;
}

.frentes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-top: 5vh;
}

.frentes-list li {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-blue-text);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.frentes-list li:hover {
    color: var(--color-yellow);
    transform: translateX(10px);
}

.wave-reveal {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.wave-reveal.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Adicionando delays dinâmicos ou usando javascript. Temos delays nas classes. */
/* Usamos os mesmos do css delay no JS ou classes ja criadas, mas aqui adicionei hardcode no HTML com delay-1..delay-7 */

@media (max-width: 900px) {
    .frentes-container { flex-direction: column; }
    .frentes-left { width: 100%; position: relative; top: 0; margin-bottom: 3rem; }
    .frentes-right { width: 100%; }
    .frentes-list { gap: 2rem; padding-top: 0; }
    .frentes-list li { font-size: 1.2rem; }
    .solutions-frentes-section { min-height: auto; padding: 6rem 5%; }
}

/* ================= SECTION 6: PROVA SOCIAL ================= */
.metrics-section {
    padding: 8rem 10%;
    background-color: var(--color-blue);
}

.metrics-container {
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 4rem;
}

.metrics-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metrics-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.metrics-text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

.metrics-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.metric-item {
    position: relative;
    padding-bottom: 1rem;
}

.metric-number-wrapper {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--color-yellow);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
}

.metric-label {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
}

.metric-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    width: 0;
    transition: width 1.5s ease;
}

.metric-divider.is-visible {
    width: 100%;
}

@media (max-width: 900px) {
    .metrics-container { grid-template-columns: 1fr; }
    .metrics-right { grid-template-columns: 1fr; }
    .metric-number-wrapper { font-size: 3.5rem; }
}

/* ================= SECTION 7: COMO FUNCIONA ================= */
.process-section {
    padding: 8rem 5%;
    background-color: var(--color-bg);
}

.process-main-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-blue-text);
    text-align: center;
    margin-bottom: 6rem;
}

.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #E2E8F0;
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-yellow);
    height: 0%;
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    width: 50%;
}

.step-left {
    justify-content: flex-end;
    padding-right: 40px;
}

.step-right {
    margin-left: 50%;
    justify-content: flex-start;
    padding-left: 40px;
}

.step-dot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--color-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
    transition: box-shadow 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.step-left .step-dot { right: -25px; }
.step-right .step-dot { left: -25px; }

.step-dot.is-active {
    box-shadow: 0 0 15px rgba(255,199,0, 0.5);
    background-color: var(--color-yellow);
    color: var(--color-blue);
}

.step-card {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    width: 100%;
}

.step-card:hover {
    transform: scale(1.02);
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-blue-text);
    margin-bottom: 0.5rem;
}

.step-text {
    font-size: 1.1rem;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .timeline-line { left: 20px; transform: none; }
    .timeline-step { width: 100%; margin-left: 0; padding-left: 60px !important; justify-content: flex-start !important; }
    .step-left .step-dot, .step-right .step-dot { left: -5px; right: auto; }
}

/* ================= SECTION 8: ONDE ESTAMOS ================= */
.location-section {
    position: relative;
    background-color: var(--color-white);
    overflow: hidden;
}

.location-grid {
    display: grid;
    grid-template-columns: 40% 60%;
}

.location-text-block {
    padding: 8rem 10% 8rem 10%;
    position: relative;
    z-index: 2;
    background-color: var(--color-white);
}

.location-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
}

.location-text {
    font-size: 1.2rem;
}

.location-map-block {
    position: relative;
    background-color: #F5F7FA;
    min-height: 400px;
}

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.abstract-map {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-blue-light) 0%, var(--color-blue) 100%);
    position: relative;
}

.map-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--color-yellow);
    border-radius: 50%;
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--color-yellow);
    animation: pulseLoop 2s infinite;
}

.pin-saoluis { top: 30%; left: 66%; }
.pin-curitiba { top: 71%; left: 56%; }
.pin-partner { top: 65%; left: 60%; animation-delay: 1s; }

@keyframes pulseLoop {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(3); opacity: 0; }
}

@media (max-width: 900px) {
    .location-grid { grid-template-columns: 1fr; }
    .location-text-block { padding: 5rem 5%; }
}

/* ================= SECTION 9: CTA FINAL ================= */
.cta-section {
    position: relative;
    padding: 8rem 5%;
    background-color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cta-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 199, 0, 0.08) 0%, rgba(10, 25, 47, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
}

.btn-pulse {
    animation: buttonPulse 5s infinite;
}

@keyframes buttonPulse {
    0%, 90%, 100% { transform: translateY(0); }
    95% { transform: translateY(-6px); box-shadow: 0 15px 25px rgba(0,0,0,0.3); }
}

.btn-pulse:hover {
    animation: none;
}
/* ================= FOOTER PREMIUM ================= */
.footer {
    background-color: #050D18;
    padding: 6rem 5% 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--color-white);
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-logo i { font-size: 2.2rem; }

.footer-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 350px;
}

.social-links { display: flex; gap: 1rem; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05); color: var(--color-white);
    font-size: 1.2rem; transition: all 0.3s ease;
}
.social-icon:hover { background-color: var(--color-yellow); color: var(--color-blue); transform: translateY(-3px); }

.footer-col-title {
    font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-white);
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2rem;
    position: relative; padding-bottom: 0.8rem;
}
.footer-col-title::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 30px; height: 2px; background-color: var(--color-yellow);
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-links a:hover { color: var(--color-yellow); transform: translateX(5px); }

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1.5rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 1.2rem; }

.contact-icon-box {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 8px;
    background-color: rgba(255, 199, 0, 0.1); color: var(--color-yellow);
    font-size: 1.2rem; flex-shrink: 0;
}

.contact-text { display: flex; flex-direction: column; }
.contact-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.4); margin-bottom: 0.2rem; }
.contact-text a { color: var(--color-white); text-decoration: none; font-size: 1.05rem; font-weight: 500; transition: color 0.3s ease; }
.contact-text a:hover { color: var(--color-yellow); }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 2rem 5%; }
.footer-bottom-content {
    max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between;
    align-items: center; font-size: 0.9rem;
}
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--color-white); }



@media (max-width: 768px) {
    
    /* Respiros proporcionais e confortáveis para não criar rolagem infinita */
    .hero { min-height: auto; padding: 8rem 5% 4rem; }
    .problem-section { padding: 4rem 5%; gap: 2rem; }
    .solution-section { padding: 4rem 5%; }
    .services-section { padding: 3rem 5%; }
    .solutions-frentes-section { padding: 4rem 5%; }
    .metrics-section { padding: 4rem 5%; }
    .process-section { padding: 4rem 5%; }
    .location-text-block { padding: 3rem 5%; }
    .cta-section { padding: 4rem 5%; }

    /* Tipografia ajustada para não "quebrar" ou vazar da tela */
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    
    .section-title, .solution-title, .services-main-title, 
    .process-main-title, .location-title, .cta-title { 
        font-size: 1.8rem; 
        margin-bottom: 1.5rem; 
        overflow-wrap: break-word; 
        word-break: break-word;
    }
    
    .frentes-container { gap: 1rem; }
    .frentes-left { margin-bottom: 0.5rem; top: 0; position: relative; width: 100%; }
    .frentes-right { width: 100%; }
    .frentes-title { font-size: 2rem; }
    .frentes-list li { font-size: 1.1rem; gap: 1rem; }
    .frentes-list { padding-top: 0; gap: 1.5rem; }
    
    .stat-number { font-size: clamp(1.8rem, 6.5vw, 2.4rem); }
    .metric-number-wrapper { font-size: 2.8rem; }
    
    /* Adequação de layout flex e grid */
    .brand { position: absolute; top: 1.5rem; left: 5%; flex-direction: row; margin-bottom: 0; gap: 0.5rem; align-items: flex-start; }
    .btn-primary { width: 100%; text-align: center; justify-content: center; }
    
    .bento-card { padding: 3.5rem 1.5rem 1.5rem; }
    .bento-icon { top: 1rem; right: 1rem; font-size: 24px; }
    
    .metrics-right { gap: 2rem; }
    
    .step-card { padding: 1.5rem; }
    .step-title { font-size: 1.2rem; }
    .timeline-step { margin-bottom: 2.5rem; }
    
    /* Footer no mobile */
    .footer { padding: 4rem 5% 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; padding-bottom: 3rem; }
    .footer-bottom-content { flex-direction: column; gap: 1.5rem; text-align: center; }
    .footer-legal { justify-content: center; width: 100%; flex-wrap: wrap; gap: 1rem; }
    
    /* Ajustes específicos de logo e quebra de e-mail no mobile */
    .brand .brand-logo { max-width: 95px; height: auto !important; }
    .footer-logo img { max-width: 120px; height: auto !important; }
    .contact-text a { font-size: 0.95rem; word-break: break-word; overflow-wrap: break-word; }
    
    /* Proteção final contra overflow */
    img, svg { max-width: 100%; height: auto; }
}

@keyframes kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(-1%, -0.5%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}
