/* CSS Reset & Cores da Paleta Oficial Calibradas - TEMA ESCURO ORIGINAL */
:root {
    --color-white: #ffffff;
    --color-background-dark: #0A101A;
    --color-nude: #dad5cf;
    --color-blue-gray: #8c9eac;
    --color-navy: #0d2743;
    --color-navy-deep: #071728;
    --text-light: #faf9f8;
    --text-muted: rgba(255, 255, 255, 0.65);
    --font-family: 'Inter', sans-serif;
}

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

html {
    background-color: var(--color-background-dark);
    overflow-x: hidden; /* Prevent horizontal scrollbar */
}

body {
    font-family: var(--font-family);
    background-color: transparent; 
    color: var(--text-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

body::before,
body::after {
    content: "";
    position: fixed;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(180px);
    z-index: -1;
    pointer-events: none;
}

body::before {
    top: -250px;
    left: -250px;
    background: radial-gradient(circle, rgba(29, 78, 216, 0.2) 0%, transparent 65%);
}

body::after {
    bottom: -250px; 
    right: -250px;
    background: radial-gradient(circle, rgba(140, 158, 172, 0.15) 0%, transparent 70%);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px); /* Adjusted for smaller screens */
    max-width: 1140px;
    z-index: 1000;
    background-color: rgba(13, 39, 67, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.logo {
    color: var(--text-light);
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 15px;
}

.nav-container { display: flex; justify-content: space-between; align-items: center; height: 60px; padding: 0 24px; }
.nav-links { display: flex; gap: 34px; font-size: 15px; font-weight: 500; list-style: none; } 
.nav-links li { position: relative; padding: 4px 0; }
.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}
.nav-links a:hover { color: var(--text-light); }

.nav-links li::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-blue-gray);
    transition: width 0.3s ease;
}

.nav-links li:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 28px; /* Fixed size in px */
    height: 28px; /* Fixed size in px */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    width: 28px; /* Fixed size in px */
    height: 3px; /* Fixed size in px */
    background: var(--text-light);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.progress-container { position: fixed; top: 80px; left: 0; z-index: 999; width: 100%; height: 2px; background-color: rgba(140, 158, 172, 0.1); }
.progress-bar { height: 100%; width: 0%; background-color: var(--color-blue-gray); transition: width 0.05s linear; }

section { padding: 120px 0; position: relative; }
.section-title { color: var(--text-light); font-size: 36px; font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; }
.section-subtitle { color: var(--text-muted); font-size: 20px; max-width: 680px; margin-bottom: 60px; line-height: 1.7; }
.accent-pill-line { display: inline-block; width: 32px; height: 2px; background-color: var(--color-blue-gray); margin-bottom: 16px; border-radius: 1px; opacity: 0.6; }

.hero { padding-top: 180px; padding-bottom: 140px; text-align: center; }
.hero-logo {
    display: block;
    height: 120px;
    width: auto;
    margin: 0 auto 30px;
}
.hero h1 { font-size: 52px; font-weight: 800; line-height: 1.1; letter-spacing: -2.5px; margin: 0 auto 24px auto; max-width: 850px; }
.hero h1 span.highlight { color: var(--color-blue-gray); background: linear-gradient(110deg, var(--color-blue-gray) 40%, rgba(255,255,255,0.9) 50%, var(--color-blue-gray) 60%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% 100%; animation: textShimmer 4.5s linear infinite; }
.hero h2 { font-size: 18px; font-weight: 400; color: var(--text-muted); line-height: 1.5; margin: 0 auto 30px auto; max-width: 700px;}
.hero-support {
    font-size: 16px; 
    color: var(--text-muted); 
    max-width: 550px; 
    margin: 40px auto 0 auto;
    opacity: 0.8; 
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 24px;
}

.hero-image-container { position: relative; margin-top: 60px; max-width: 450px; margin-left: auto; margin-right: auto; }
.carlos-main-img { 
    width: 100%; 
    height: auto; 
    border-radius: 24px; 
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5); 
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-icon {
    position: absolute;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: flutuar 5s ease-in-out infinite;
}

.icon-meta { 
    width: 95px;
    top: 30%; 
    left: -55px;
    animation-delay: 0s; 
}
.icon-vendas { 
    width: 180px;
    top: 15%; 
    right: -80px;
    animation-delay: 1s; 
}
.icon-google { 
    width: 110px;
    bottom: 5%; 
    right: -70px;
    animation-delay: 2.5s; 
}

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

.hero-split { 
    display: flex; 
    flex-direction: column;
    align-items: center; 
    justify-content: center;
}

.hero-content {
    text-align: center;
}

.hero-cta-group {
    margin-top: 40px;
}

.scanner-line { height: 1px; width: 100%; background-color: rgba(140, 158, 172, 0.15); position: relative; overflow: hidden; }
.scanner-line::before { content: ''; position: absolute; top: 0; left: 0; width: 150px; height: 100%; background: linear-gradient(to right, transparent 0%, var(--color-blue-gray) 50%, transparent 100%); animation: lineScanner 3s linear infinite; opacity: 0.7; }

.differentiation { padding-top: 0; }
.diff-grid { padding-top: 120px; display: flex; gap: 80px; align-items: center; }
.differentiation .diff-quote { font-size: 32px; font-weight: 700; line-height: 1.35; letter-spacing: -1px; }
.diff-col.right { display: flex; flex-direction: column; gap: 40px; border-left: 1px solid rgba(255, 255, 255, 0.15); padding-left: 40px; }
.diff-card-minimal h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--color-blue-gray); margin-bottom: 12px; font-weight: 700; } 
.diff-card-minimal p { font-size: 16px; color: var(--text-muted); line-height: 1.6; } 

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.service-card-original {
    background-color: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-original:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-original .service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-navy);
}

.service-card-original .service-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy-deep);
}

.service-card-original .service-description {
    font-size: 16px; 
    color: var(--color-navy);
}

.section-light-theme {
    background-color: var(--color-white);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-light-theme .section-title,
.section-light-theme .section-subtitle {
    color: var(--color-navy-deep);
}

.section-light-theme .service-card-original {
    background: linear-gradient(145deg, #b2d1ff, #a8c5ff);
    box-shadow: 0 10px 30px rgba(168, 197, 255, 0.4);
}

.section-light-theme .service-card-original:hover {
    box-shadow: 0 15px 40px rgba(168, 197, 255, 0.6);
    transform: translateY(-10px);
}

.method.section-light-theme .premium-pillar-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.method.section-light-theme .premium-pillar-title {
    color: var(--color-navy-deep);
}

.method.section-light-theme .premium-pillar-list li {
    color: var(--color-navy);
}

.method.section-light-theme .premium-pillar-list li::before {
    background-color: var(--color-navy);
}

.method.section-light-theme .premium-badge {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.method.section-light-theme .premium-real-benefit {
    background-color: rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--color-navy);
    color: var(--color-navy);
}

.premium-divider-container { margin: 140px auto; padding: 80px 40px; text-align: center; }
.transition-phrase { font-size: 46px; font-weight: 800; text-transform: uppercase; letter-spacing: -1px; background: linear-gradient(135deg, #ffffff 30%, #8c9eac 70%, #ffffff 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-size: 200% 200%; animation: shimmer 6s ease-in-out infinite; margin-bottom: 20px; }
.laser-line { height: 1px; width: 100%; background-color: rgba(255, 255, 255, 0.1); margin: 20px auto 0; position: relative; overflow: hidden; }
.laser-line::before { content: ''; position: absolute; top: 0; left: 0; width: 150px; height: 100%; background: linear-gradient(to right, transparent, #ffffff, transparent); animation: laserPulse 3s ease-in-out infinite; }

.method-interactive-container { display: flex; flex-direction: column; gap: 24px; min-height: auto; }
.premium-pillar-card { flex: 1; background: rgba(13, 39, 67, 0.4); backdrop-filter: blur(16px) saturate(120%); -webkit-backdrop-filter: blur(16px) saturate(120%); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 30px; cursor: default; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); overflow: hidden; }
.premium-pillar-card:hover { padding-top: 30px; padding-bottom: 30px; }
.pillar-header-wrap { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; transition: margin-bottom 0.5s ease-out; }
.premium-pillar-card:hover .pillar-header-wrap { margin-bottom: 24px; }
.premium-badge { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; padding: 6px 14px; border-radius: 30px; background-color: var(--color-nude); color: var(--color-navy); margin-right: 16px; }
.premium-pillar-title { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 0; display: flex; align-items: center; }
.premium-pillar-content { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s ease-in-out, opacity 0.5s 0.1s ease-in-out; }
.premium-pillar-card:hover .premium-pillar-content { max-height: 500px; opacity: 1; }
.premium-pillar-list li { font-size: 18px; padding-left: 24px; position: relative; margin-bottom: 12px; color: var(--text-muted);} 
.premium-pillar-list li::before { content: ""; position: absolute; left: 4px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background-color: var(--color-blue-gray); }
.premium-real-benefit { background-color: rgba(0,0,0, 0.2); border-left: 4px solid var(--color-blue-gray); padding: 20px; border-radius: 12px; font-size: 18px; color: var(--text-muted); } 

.niche-carousel-container { max-width: 100%; margin: 0 auto; position: relative; }
.niche-slides-wrapper { overflow: hidden; }
.niche-slides { display: flex; gap: 24px; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

.niche-slide {
    flex: 0 0 calc(100% / 3 - 16px);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.niche-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, rgba(10, 16, 26, 0.8) 0%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.niche-slide img {
    width: 100%;
    height: 250px; /* Set a fixed height */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.niche-slide:hover img { transform: scale(1.05); }

.niche-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(100deg, #a8c5ff 0%, #87a7e9 100%);
    color: var(--color-navy-deep);
    padding: 10px 18px;
    font-weight: 700;
    font-size: 15px;
    border-radius: 9px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.3);
}

.niche-carousel-container .carousel-nav-button { top: 50%; transform: translateY(-50%); }
.niche-carousel-container .prev { left: 15px; }
.niche-carousel-container .next { right: 15px; }

.logo-carousel { text-align: center; }
.logo-carousel .section-title { margin-bottom: 80px; }
.logos-container { display: flex; flex-direction: column; align-items: center; gap: 50px; }
.logo-row { display: flex; justify-content: center; align-items: center; gap: 80px; }
.logo-item { 
    background-color: transparent;
    border-radius: 16px; 
    padding: 20px;
}
.logo-item img { 
    height: 80px;
    filter: none;
}

.section-light-theme .logo-item {
    background-color: var(--color-navy);
    box-shadow: 0 8px 24px rgba(13, 39, 67, 0.2);
}

.process-flow { display: flex; gap: 60px; }
.process-sidebar { flex: 1; position: sticky; top: 180px; height: fit-content; }
.process-sidebar h2 { font-size: 42px; line-height: 1.15; letter-spacing: -1.5px; }
.process-steps-container { flex: 1.2; display: flex; flex-direction: column; gap: 40px;}
.process-card-tech { background: var(--color-white); border: 1px solid rgba(0, 0, 0, 0.1); border-radius: 16px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); cursor: default; overflow: hidden; transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1); }
.process-card-tech:hover { padding-bottom: 30px; }
.tech-header { margin-bottom: 0; transition: margin-bottom 0.5s ease-out; }
.process-card-tech:hover .tech-header { margin-bottom: 20px; }
.tech-num { font-family: 'SF Mono', 'Fira Code', 'Roboto Mono', monospace; font-size: 14px; color: var(--color-navy); }
.tech-title { font-size: 22px; letter-spacing: -0.5px; color: var(--color-navy-deep); }
.tech-content { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s ease-in-out, opacity 0.5s 0.1s ease-in-out; color: var(--color-navy); font-size: 18px; }
.tech-content p { line-height: 1.7; }
.process-card-tech:hover .tech-content { max-height: 300px; opacity: 1; }

.team-section {
    background-color: var(--color-navy-deep);
    padding: 120px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.team-card {
    background: rgba(13, 39, 67, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.team-card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
    border: 3px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.1);
}

.team-member-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 15px;
    font-weight: 400;
    color: var(--text-muted);
}

.testimonial-carousel-container { max-width: 800px; margin: 0 auto; overflow: hidden; position: relative; }
.testimonial-slides { display: flex; transition: transform 0.5s ease-in-out; }
.testimonial-slide { flex: 0 0 100%; box-sizing: border-box; padding: 0 15px; }
.testimonial-card { background: rgba(13, 39, 67, 0.4); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-radius: 20px; box-shadow: 0 0 30px rgba(13, 34, 57, 0.4); padding: 24px; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 12px; overflow: hidden; margin-bottom: 16px;}
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.testimonial-caption { text-align: center; font-size: 18px; font-weight: 600; color: var(--text-light); padding-top: 10px; }

.carousel-nav-button {
    background-color: rgba(13, 39, 67, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    cursor: pointer;
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.carousel-nav-button:hover { background-color: rgba(13, 39, 67, 0.9); }

.testimonial-carousel-container .prev { left: 10px; } 
.testimonial-carousel-container .next { right: 10px; }


.faq-container { max-width: 800px; margin: 0 auto; background: rgba(13, 39, 67, 0.4); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 20px 40px; border-radius: 20px; }
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding: 16px 0; }
.faq-trigger { font-weight: 700; font-size: 18px; background: none; border: none; width: 100%; text-align: left; color: var(--text-light); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: color 0.3s ease; }
.faq-trigger:hover, .faq-item.active .faq-trigger { color: #a8c5ff; }
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out; }
.faq-content p { color: var(--text-muted); font-size: 17px; line-height: 1.7;} 
.faq-item.active .faq-content { max-height: 200px; padding-top: 16px; }

footer { padding: 80px 0 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; }
.footer-brand { flex: 2; }
.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 12px;
}

.footer-desc { font-size: 15px; color: var(--text-muted); max-width: 300px; }
.footer-links-col { flex: 1; }
.footer-links-col h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--color-blue-gray); margin-bottom: 20px; } 
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 12px; font-size: 15px; } 
.footer-links-col ul li { color: var(--text-muted); cursor: pointer; transition: color 0.2s; }
.footer-links-col ul li:hover { color: var(--text-light); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); margin-top: 50px; padding-top: 30px; display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--color-blue-gray); } 

.footer-social-link svg {
    color: var(--color-blue-gray);
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-link:hover svg {
    color: var(--text-light);
    transform: translateY(-2px);
}

.shiny-button { display: inline-flex; align-items: stretch; text-decoration: none; background: linear-gradient(100deg, #a8c5ff 0%, #87a7e9 100%); border-radius: 9px; box-shadow: 0 5px 18px rgba(135, 167, 233, 0.3); color: var(--color-navy-deep); font-family: var(--font-family); overflow: hidden; position: relative; transition: all 0.3s ease; }
.shiny-button:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(135, 167, 233, 0.45); }
.shiny-button-text { padding: 16px 28px; font-weight: 600; font-size: 16px; }
.shiny-button-icon { display: flex; align-items: center; justify-content: center; width: 54px; background: rgba(255, 255, 255, 0.25); font-size: 24px; }
.shiny-button.small .shiny-button-text { padding: 12px 20px; font-size: 14px; }
.shiny-button.small .shiny-button-icon { width: 44px; font-size: 20px; }
.centered-cta-container { text-align: center; padding-top: 60px; }

/* Animações de Entrada */
.scroll-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

.blur-in {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, filter 0.8s ease-out, transform 0.8s ease-out;
}

.blur-in.revealed {
    opacity: 1;
    filter: blur(0px);
    transform: scale(1);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

.footer-presence {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #a8c5ff; /* Pale blue from CTA */
    font-weight: 300; /* Light weight */
    font-size: 14px; /* Smaller font size */
}

.footer-presence .globe-icon {
    color: #a8c5ff;
    stroke-width: 1.5; /* Thin line art */
}

.mobile-cta {
    display: none;
}

@keyframes textShimmer { from { background-position: 200% 0; } to { background-position: -200% 0; } }
@keyframes shimmer { from { background-position: 10% 0%; } 50% { background-position: 90% 100%; } to { background-position: 10% 0%; } }
@keyframes laserPulse { from { transform: translateX(-100%); } to { transform: translateX(calc(100% + 150px)); } }
@keyframes lineScanner { from { transform: translateX(-100%); } to { transform: translateX(calc(100vw + 150px)); } }

/* === Mobile Adjustments === */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    body::before,
    body::after {
        display: none;
    }

    .carlos-main-img {
        max-width: 90%;
        margin: 0 auto;
        height: auto;
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        height: 100vh;
        width: 280px;
        background-color: rgba(13, 39, 67, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: transform 0.35s ease-in-out;
        z-index: 1001;
    }

    .main-nav.open {
        transform: translateX(-100%);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        padding-top: 5rem;
        gap: 2rem;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1002;
    }
    
    .desktop-cta {
        display: none;
    }
    
    .mobile-cta {
        display: inline-flex;
        margin-top: 2rem;
        align-self: center;
    }

    .hero-logo {
        height: 100px;
    }

    .hero h1 { font-size: 40px; }
    .hero h2 { font-size: 16px; }

    .icon-meta {
        width: 65px;
        top: 25%;
        left: 5px;
    }
    .icon-vendas {
        width: 110px;
        top: 15%;
        right: 10px;
    }
    .icon-google {
        width: 75px;
        bottom: 15%;
        right: 5px;
    }

    .diff-grid, .process-flow, .footer-grid {
        flex-direction: column;
    }

    .diff-col.right { 
        border-left: none; 
        padding-left: 0; 
        margin-top: 30px;
    }

    .process-sidebar { 
        position: static; 
        text-align: center; 
    }

    .process-sidebar h2 { 
        font-size: 32px; 
        margin-bottom: 20px; 
    }

    .niche-slide {
        flex: 0 0 100%;
    }

    .footer-brand, .footer-links-col { 
        text-align: center; 
        width: 100%; 
        margin-bottom: 30px;
    }

    .footer-desc { margin: 0 auto; }

    .footer-bottom { flex-direction: column; gap: 20px; }

    .footer-logo img {
        height: 70px;
    }

    .desktop-only-subtitle {
        display: none;
    }
}
