/* The Startup House - CSS Styles */

/* Normalize CSS v8.0.1 | MIT License */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

main {
    display: block;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    font-size: 16px;
    scroll-behavior: smooth;
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

:root {
    --primary-orange: #EA581B;
    --primary-black: #000000;
    --primary-white: #FFFFFF;
    --text-gray: #666666;
    --light-gray: #F8F9FA;
    --dark-gray: #333333;
    --border-gray: #E5E5E5;
    --shadow-light: 0 4px 16px rgba(0,0,0,0.05);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-heavy: 0 16px 48px rgba(0,0,0,0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary-black);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    padding: 0 40px;
    margin: 0 auto;
}

.orange {
    color: var(--primary-orange);
}

/* Header */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 50px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 26px;
}

.scrolled .header-content{
    margin-top: 5px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    height: 76px;
    width: 100%;
    border-radius: 4px;
}

/* Esconde o botão hambúrguer em desktop */
.mobile-menu-toggle {
    display: none;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 20px;
    transition: var(--transition);
}

nav a:hover {
    color: var(--primary-orange);
}

.cta-button {
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 12px 29px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cta-button svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cta-button:hover {
    background: #e64a19;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255,87,34,0.4);
}

/* Hero Section */
.hero {
    width: 100%;
    color: var(--primary-white);
    position: relative;
    padding-top: 175px;
    padding-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-background img,
.hero-background picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-background picture {
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-content {
    max-width: 785px;
    z-index: 2;
    margin-top: 0;
}

.hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 75px;
    margin-bottom: 32px;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    letter-spacing: -2px;
}

.hero p {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 40px;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 80px;
}

/* Startups Section */
.startups-section {
    background: #f8f9fa;
    padding: 22px 10px 22px 40px;
    border-radius: 25px;
    margin: -25px auto 24px;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.startups-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.startups-text {
    font-size: 32px;
    color: var(--primary-black);
    font-weight: 500;
    line-height: 1.3;
    font-family: 'Sora', sans-serif;
    min-width: 370px;
    flex-shrink: 0;
}

/* Slider de logos */
.startups-logos-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.startups-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    animation: scroll-logos 20s linear infinite;
    width: fit-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.startup-logo {
    width: 50px;
    height: 50px;
    background: #E5E5E5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.startup-logo:hover {
    background: var(--primary-orange);
    transform: scale(1.05);
}

/* Pausar animação ao passar o mouse */
.startups-logos-wrapper:hover .startups-logos {
    animation-play-state: paused;
}

/* Beyond Section */
.beyond-section {
    background: var(--primary-white);
    padding: 60px 0;
}

.beyond-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5px;
    align-items: center;
}

.beyond-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    margin-bottom: 40px;
    margin-top: 35px;
    letter-spacing: -1px;
}

.beyond-text p {
    font-size: 18px;
    line-height: 22px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.beyond-image {
    display: grid;
    gap: 0;
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.beyond-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.beyond-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Partner Section */
.partner-section {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-wrapper {
    background: url('assets/images/Group47203.png') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1240px;
    min-height: 600px;
    position: relative;
    margin-top: 60px;
}

.partner-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 0;
    min-height: 600px;
}

.partner-text {
    max-width: 61%;
    margin-left: 60px;
    margin-top: 100px;
    letter-spacing: 1px;
}

.partner-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 52px;
    margin-bottom: 30px;
    color: var(--primary-black);
}

.partner-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-black);
    margin-bottom: 0;
}

.partner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-orange);
    color: white;
    padding: 10px 80px;
    border-radius: 15px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 28px;
    transition: var(--transition);
    align-self: flex-end;
    margin-right: -10px;
    margin-bottom: 35px;
}

.partner-cta-button:hover {
    background: #E64A19;
    transform: translateY(-2px);
}


/* Services Section */
.services-section {
    padding: 140px 0;
}

.services-content {
    position: relative;
    max-width: 1600px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    align-items: flex-end;
    margin-bottom: 10px;
    gap: 20px;
}

.services-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    text-align: left;
    color: var(--primary-black);
    flex-shrink: 0;
    letter-spacing: -2px;
}

.services-header::after {
    content: '';
    flex: 1;
    height: 5px;
    background: var(--primary-orange);
    margin-bottom: 13px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 78px;
}

.service-card {
    padding: 40px 20px;
    border-radius: 15px;
    transition: var(--transition);
    position: relative;
    min-height: 306px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card.orange {
    background: var(--primary-orange);
    color: var(--primary-white);
    border: none;
}

.service-card.white {
    background: #f4f4f4;
    border: 2px solid var(--primary-orange);
    color: var(--primary-black);
}

.service-card.white h3 {
    color: var(--primary-orange);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card.orange .service-icon svg {
    fill: white;
}

.service-card.white .service-icon {
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.service-card.white .service-icon svg {
    fill: white;
    width: 24px;
    height: 24px;
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 23px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.service-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 20px;
    opacity: 0.9;
}

/* Process Section */
.process-section {
    background: var(--primary-white);
    padding: 30px 0;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-header h2 {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    color: var(--primary-black);
    letter-spacing: -2px;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E5E5E5;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    /*margin-bottom: -55px;*/
    min-height: 100px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content {
    flex: 1;
    padding: 0 80px;
    position: relative;
}

.timeline-content.left {
    text-align: right;
}

.timeline-content.right {
    text-align: left;
}

.timeline-item:has(.timeline-content.left h3)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(10px);
    width: 550px;
    height: 1px;
    background: #E5E5E5;
}

.timeline-item:has(.timeline-content.right h3)::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(-10px);
    width: 550px;
    height: 1px;
    background: #E5E5E5;
}

.timeline-content h3 {
    font-family: 'Inter Display', sans-serif;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 8px;
    color: var(--primary-black);
    line-height: 1.22;
    position: relative;
    letter-spacing: -2px;
}

.timeline-content p {
    font-size: 22px;
    line-height: 1.3;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.timeline-dot {
    width: 25px;
    height: 25px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    z-index: 2;
    flex-shrink: 0;
}


/* Comparison Section */
.comparison-section {
    background: var(--primary-white);
    padding: 205px 0 115px;
}


.comparison-section h2 {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    text-align: center;
    letter-spacing: -1px;
    margin: 0 50px 70px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    padding: 38px 15px 15px 38px;
    border-radius: 16px;
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-4px);
}

.comparison-card.orange {
    background: var(--primary-orange);
    color: var(--primary-white);
    box-shadow: 0 8px 32px rgba(255,87,34,0.2);
}

.comparison-card.orange:hover {
    box-shadow: 0 16px 48px rgba(255,87,34,0.3);
}

.comparison-card.white {
    background: var(--primary-white);
    border: 2px solid var(--primary-orange);
    color: var(--primary-black);
    box-shadow: var(--shadow-light);
}

.comparison-card.white:hover {
    box-shadow: var(--shadow-medium);
}

.comparison-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: left;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: 28px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    letter-spacing: -1px;
}

.icon-negative {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: url('assets/images/close-square.png') no-repeat center center;
    background-size: contain;
    flex-shrink: 0;
}

.icon-positive {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: url('assets/images/tick-square.svg') no-repeat center center;
    background-size: contain;
    flex-shrink: 0;
}

.orange-title {
    color: var(--primary-orange) !important;
}

/* Journey Section */
.journey-section {
    position: relative;
    min-height: 1272px;
    background: url('assets/images/bg-journey.png') center/cover no-repeat;
    padding: 0;
    overflow: hidden;
}

.journey-container {
    width: 100%;
    height: 800px;
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
}

.journey-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.journey-text {
    margin-top: 100px;
}

.journey-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    color: white;
    margin-bottom: 20px;
}

.journey-text p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    color: white;
    opacity: 0.9;
}

.journey-man {
    position: absolute;
    top: 290px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-man img {
    height: 120%;
    width: auto;
    object-fit: contain;
    max-width: none;
}

.journey-card {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 410px;
    pointer-events: auto;
}

.journey-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
    line-height: 1.3;
}

.journey-card p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
    margin: 0;
}

.card-top-left {
    margin: 100px 0 0 40px;
    background: var(--primary-orange);
    z-index: 1;
    position: relative;
}

.card-top-left h4,
.card-top-left p {
    color: white;
}

.card-top-right {
    margin-left: 780px;
    margin-top: 45px;
    position: relative;
}

.card-bottom-left {
    margin-top: 90px;
    position: relative;
    z-index: 10;
    left: 60px;
}

.card-bottom-right {
    top: 90px;
    left: 750px;
    background: var(--primary-orange);
    z-index: 10;
    position: relative;
}

.card-bottom-right h4,
.card-bottom-right p {
    color: white;
}


/* FAQ Section */
.faq-section {
    background: var(--primary-white);
    padding: 175px 0;
}

.faq-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
    max-width: 500px;
}

.faq-right {
    flex: 1;
    max-width: 600px;
    margin-top: -20px;
}

.faq-left h2 {
    font-family: 'Sora', sans-serif;
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
    text-align: left;
    margin-bottom: 10px;
}

.faq-description {
    font-size: 18px;
    line-height: 24px;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 380px;
}

.faq-cta p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 7px;
}

.faq-button {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 4px 36px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    transition: var(--transition);
}

.faq-button:hover {
    background: #E64A19;
    transform: translateY(-2px);
}

.faq-list {
    width: 100%;
    margin-top: -5px;
}

.faq-item {
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 0;
    background: transparent;
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255,87,34,0.02);
}

.faq-question {
    padding: 27px 0 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    transition: var(--transition);
    font-size: 20px;
    letter-spacing: 0.8px;
    line-height: 28px;
    color: var(--primary-black);
    font-family: "Sora-Regular", sans-serif;
}

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-item.active .faq-question {
    color: var(--primary-orange);
}

.faq-item.active .faq-question span:first-child {
    color: var(--primary-orange);
}

.faq-item.active .faq-icon {
    color: var(--primary-orange);
}

.faq-answer {
    padding: 10px 0 15px 0;
    color: var(--text-gray);
    display: none;
    line-height: 22px;
    font-size: 16px;
}

.faq-icon {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* CTA Final Section */
.cta-final-section {
    position: relative;
    z-index: 100;
    margin-bottom: -75px;
    padding-bottom: 0;
    top: 20px;
}

.cta-final-card {
    background: var(--primary-orange);
    color: var(--primary-white);
    padding: 60px 50px;
    border-radius: 36px;
    text-align: center;
    height: 425px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 1280px; /* acompanha o mesmo limite do footer */
    width: 100%;       /* ocupa toda a largura do container */
    position: relative;
    z-index: 100;
}


@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(10px, -5px); }
    50% { transform: translate(-5px, -10px); }
    75% { transform: translate(-10px, 5px); }
}

.cta-final-card h2 {
    font-family: 'Sora', sans-serif;
    font-size: 48px;
    font-weight: 600;
    line-height: 100%;
    margin: 25px 25px 10px;
    padding: 16px;
}

.cta-final-card p {
    font-family: 'Inter Display', sans-serif;
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 24px;
    opacity: 0.95;
    text-align: center;
    color: #FFFFFF;

}

.cta-whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-black);
    color: var(--primary-white);
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 400;
    padding: 9px 30px;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.cta-whatsapp-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: url('assets/images/rodape.png') no-repeat center center;
    background-size: 1920px 620px;
    min-height: 400px;
    color: var(--primary-white);
    padding: 140px 0 30px;
    position: relative;
    margin-top: 0;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
    padding-top: 70px;
}

.footer-left {
    flex: 1;
}

.footer-right {
    display: flex;
    gap: 140px;
    flex: 1;
}

.footer-logo {
    display: flex;
    height: 80px;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 10px;
}

.footer-section h3 {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 2px;
    margin-top: 0;
    color: var(--primary-white);
}

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

.footer-section ul li {
    margin-bottom: 1px;
}

.footer-section .address,
.footer-section .email,
.footer-section .phone {
    font-size: 14px;
    color: var(--primary-white);
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-section svg {
    flex-shrink: 0;
}

.footer-section a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: var(--transition);
}

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

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 2px solid var(--primary-orange);
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.6;

    display: flex;               /* coloca os itens lado a lado */
    justify-content: space-between; /* espaço entre os dois */
    align-items: center;         /* centraliza na vertical */
}
.footer-bottom p {
    margin: 0; /* remove espaçamento extra dos <p> */
}


/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1600px) {
    header{
        padding-top: 30px;
    }
    .container {
        max-width: 1200px;
        padding: 0 32px;
    }

    .startups-logos {
        gap: 20px;
        animation: scroll-logos 15s linear infinite;
    }
    
    .startup-logo {
        width: 45px;
        height: 45px;
    }

    .hero{
        padding-top: 150px;
        min-height: 900px;
    }

    .hero h1 {
        font-size: 56px;
        line-height: 64px;
    }

    .hero p {
        font-size: 20px;
        line-height: 30px;
    }

    .partner-wrapper{
        max-width: 1180px;
    }

    .services-grid {
        max-width: 1200px;
    }

    .partner-cta-button{
        margin-right: -10px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .hero p {
        font-size: 18px;
        line-height: 28px;
    }

    h2 {
        font-size: 40px;
        line-height: 48px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }

    header {
        padding: 20px 0;
    }

    header.scrolled {
        padding: 10px 0;
    }

    .header-content {
        margin-top: 10px;
    }

    .scrolled .header-content {
        margin-top: 5px;
    }

    .logo-icon {
        height: 50px;
        max-width: 100%;
    }

    /* Esconde navegação desktop em mobile */
    nav {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        padding: 10px 20px 30px 20px;
        z-index: 999;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    nav.active {
        display: block;
        transform: translateY(0);
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    nav a {
        font-size: 18px;
        color: white;
    }

    /* Botão hambúrguer */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1000;
        margin-left: auto;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: white;
        border-radius: 3px;
        margin-bottom: 5px;
        transition: all 0.3s ease;
    }

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

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

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

    .desktop-only {
        display: none !important;
    }

    .cta-button {
        padding: 8px 16px;
        font-size: 16px;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 24px;
    }

    .hero p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 32px;
    }

    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }

    .startups-section {
        padding: 20px;
        margin: -20px auto 24px;
    }

    .startups-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .startups-text {
        font-size: 24px;
        min-width: unset;
    }

    .startups-logos {
        gap: 15px;
        animation: scroll-logos 12s linear infinite;
    }

    .startup-logo {
        width: 40px;
        height: 40px;
    }

    .beyond-section {
        padding: 40px 0;
    }

    .beyond-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .beyond-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
        margin-top: 0;
    }

    .beyond-text p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .partner-section {
        margin-top: 40px;
    }

    .partner-wrapper {
        min-height: 400px;
        background-size: cover;
    }

    .partner-overlay {
        padding: 30px 0;
        min-height: 400px;
    }

    .partner-text {
        max-width: 90%;
        margin-left: 20px;
        margin-top: 50px;
    }

    .partner-text h2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .partner-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .partner-cta-button {
        padding: 12px 40px;
        font-size: 20px;
        margin-right: -15px;
        margin-bottom: 20px;
    }

    .services-section {
        padding: 80px 0;
    }

    .services-section h2 {
        font-size: 32px;
        line-height: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }

    .service-card {
        padding: 30px 20px;
        min-height: 250px;
    }

    .service-card h3 {
        font-size: 20px;
        line-height: 24px;
        margin-top: 20px;
        margin-bottom: 16px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 20px;
    }

    .process-section {
        padding: 80px 0;
    }

    .process-header h2 {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 50px;
        text-align: center;
    }

    /* Layout tablet seguindo imagem de referência */
    .process-timeline {
        padding: 0;
        max-width: 400px;
        margin: 0 auto;
        position: relative;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 1px;
        background: #DDDDDD;
        transform: translateX(-50%);
        z-index: 1;
    }

    .timeline-item {
        display: block;
        margin-bottom: 70px;
        position: relative;
        padding: 25px 15px;
        width: 100%;
        text-align: center;
        background: white;
        z-index: 3;
    }

    .timeline-item:first-child {
        padding-top: 55px;
        margin-top: 25px;
    }

    .timeline-item:nth-child(2) {
        padding-top: 60px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item:has(.timeline-content.left h3)::after,
    .timeline-item:has(.timeline-content.right h3)::before {
        display: none;
    }

    .timeline-dot {
        width: 14px;
        height: 14px;
        position: absolute;
        left: 50%;
        top: -40px;
        transform: translateX(-50%);
        background: var(--primary-orange);
        border-radius: 50%;
        z-index: 4;
        display: block;
    }

    .timeline-content {
        padding: 0 20px;
        text-align: center;
        max-width: 350px;
        margin: 0 auto;
        position: relative;
        z-index: 4;
    }

    .timeline-content.left,
    .timeline-content.right {
        text-align: center !important;
    }

    .timeline-content h3 {
        font-size: 22px;
        line-height: 26px;
        margin-bottom: 10px;
        margin-top: 0;
        color: var(--primary-black);
        font-weight: 600;
    }

    .timeline-content p {
        font-size: 15px;
        line-height: 19px;
        margin-bottom: 0;
        color: var(--text-gray);
    }

    .comparison-section {
        padding: 80px 0;
    }

    .comparison-section h2 {
        font-size: 32px;
        line-height: 40px;
        margin: 0 20px 40px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .comparison-card {
        padding: 30px 20px;
    }

    .comparison-card h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .comparison-list li {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 16px;
    }

    .journey-section {
        min-height: 800px;
    }

    .journey-text {
        margin-top: 60px;
        text-align: center;
        padding: 0 20px;
    }

    .journey-text h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .journey-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .journey-man {
        top: 200px;
    }

    .journey-man img {
        height: 80%;
    }

    .journey-card {
        max-width: 280px;
        padding: 15px 20px;
    }

    .journey-card h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .journey-card p {
        font-size: 12px;
        line-height: 16px;
    }

    .card-top-left {
        margin: 60px 0 0 20px;
    }

    .card-top-right {
        margin-left: auto;
        margin-right: 20px;
        margin-top: 30px;
    }

    .card-bottom-left {
        margin-top: 60px;
        left: 20px;
    }

    .card-bottom-right {
        top: 60px;
        left: auto;
        right: 20px;
    }

    .faq-section {
        padding: 80px 0;
    }

    .faq-container {
        flex-direction: column;
        gap: 40px;
    }

    .faq-left {
        max-width: none;
    }

    .faq-left h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 16px;
    }

    .faq-description {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 24px;
        max-width: none;
    }

    .faq-right {
        max-width: none;
        margin-top: 0;
    }

    .faq-question {
        font-size: 16px;
        line-height: 22px;
        padding: 20px 0 15px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 20px;
        padding: 8px 0 12px 0;
    }

    .cta-final-card {
        padding: 40px 30px;
        height: auto;
        min-height: 300px;
        border-radius: 24px;
    }

    .cta-final-card h2 {
        font-size: 28px;
        line-height: 36px;
        margin: 0 0 16px;
        padding: 0;
    }

    .cta-final-card p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 20px;
    }

    .cta-whatsapp-button {
        font-size: 18px;
        padding: 12px 24px;
        gap: 8px;
    }

    footer {
        padding: 80px 0 30px;
        background-size: cover;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        padding-top: 40px;
    }

    .footer-right {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-section .address,
    .footer-section .email,
    .footer-section .phone {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .footer-bottom {
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 20px 10px;
        margin-top: 20px;
        opacity: 0.7;
    }
    
    .footer-bottom p {
        margin: 0;
    }

    .cta-button,
    .partner-cta-button,
    .cta-whatsapp-button,
    .faq-button {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .faq-question {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: auto;
        position: relative;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        display: block !important;
        width: 100% !important;
        height: 3px !important;
        background-color: white !important;
        border-radius: 2px;
        transition: all 0.3s ease;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

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

    .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(15px);
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu ul {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .mobile-menu .cta-button {
        margin-top: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .startups-content{
        gap: 10px;
    }

    .startups-logos {
        gap: 10px;
        animation: scroll-logos 10s linear infinite;
    }

    header {
        padding: 15px 0;
    }

    header.scrolled {
        padding: 8px 0;
    }

    .header-content {
        margin-top: 8px;
    }

    .cta-button {
        padding: 6px 12px;
        font-size: 14px;
    }

    .hero {
        min-height: 500px;
        padding-top: 300px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 28px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .startups-section {
        padding: 16px;
        margin: -16px auto 20px;
    }

    .startups-text {
        font-size: 20px;
        line-height: 26px;
    }

    .startups-logos {
        gap: 12px;
        animation: scroll-logos 10s linear infinite;
    }
    
    .startup-logo {
        width: 35px;
        height: 35px;
    }

    .beyond-section {
        padding: 30px 0;
    }

    .beyond-text h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 20px;
    }

    .beyond-text p {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 14px;
    }

    .partner-wrapper {
        background: url('assets/images/bloco_background.webp') no-repeat center center;
        background-size: cover;
        margin-top: 0;
    }

    .partner-overlay {
        padding: 20px 0;
        min-height: 350px;
    }

    .partner-text {
        margin-left: 16px;
        margin-top: 30px;
    }

    .partner-text h2 {
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 16px;
    }

    .partner-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .partner-cta-button {
        padding: 10px 30px;
        font-size: 16px;
        margin: 15px auto;
    }

    .services-section {
        padding: 60px 0;
    }

    .services-section h2 {
        font-size: 26px;
        line-height: 32px;
    }

    .services-grid {
        margin-top: 30px;
        gap: 16px;
    }

    .service-card {
        padding: 24px 16px;
        min-height: 220px;
    }

    .service-card h3 {
        font-size: 18px;
        line-height: 22px;
        margin-top: 16px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 13px;
        line-height: 18px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .process-section {
        padding: 60px 0;
        background: white;
    }

    .process-header h2 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    /* Layout mobile seguindo imagem de referência */
    .process-timeline {
        padding: 0 20px;
        max-width: 320px;
        margin: 0 auto;
        position: relative;
    }

    .process-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: -25px;
        bottom: 0;
        width: 2px;
        background: #DDDDDD;
        transform: translateX(-50%);
        z-index: 1;
    }

    .timeline-item {
        display: block;
        margin-bottom: 70px;
        position: relative;
        padding: 0 10px;
        width: 100%;
        text-align: center;
        background: white;
        z-index: 3;
    }

    .timeline-item:first-child {
        padding-top: 10px;
        margin-top: 20px;
    }

    .timeline-item:nth-child(2) {
        margin-bottom: 60px;
        padding-bottom: 30px;
    }

    .timeline-item:nth-child(3) {
        margin-bottom: 60px;
        padding-bottom: 30px;
    }

    .timeline-item:last-child {
        margin-bottom: 0;
    }

    .timeline-item:has(.timeline-content.left h3)::after,
    .timeline-item:has(.timeline-content.right h3)::before {
        display: none;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
        position: absolute;
        left: 50%;
        top: -35px;
        transform: translateX(-50%);
        background: var(--primary-orange);
        border-radius: 50%;
        z-index: 4;
        display: block;
    }

    .timeline-content {
        padding: 0;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
        position: relative;
        z-index: 4;
    }

    .timeline-content.left,
    .timeline-content.right {
        text-align: center !important;
    }

    .timeline-content h3 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 8px;
        margin-top: 0;
        color: var(--primary-black);
        font-weight: 600;
    }

    .timeline-content p {
        font-size: 13px;
        line-height: 17px;
        color: var(--text-gray);
        margin-bottom: 0;
    }

    .comparison-section {
        padding: 60px 0;
    }

    .comparison-section h2 {
        font-size: 26px;
        line-height: 32px;
        margin: 0 16px 30px;
    }

    .comparison-grid {
        gap: 20px;
    }

    .comparison-card {
        padding: 24px 16px;
    }

    .comparison-card h3 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .comparison-list li {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 12px;
    }

    .journey-section {
        min-height: 1200px;
    }

    .journey-text {
        margin-top: 40px;
        padding: 0 16px;
    }

    .journey-text h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .journey-text p {
        font-size: 14px;
        line-height: 20px;
    }

    .journey-man {
        top: 470px;
    }

    .journey-man img {
        height: 70%;
    }

    .journey-card {
        max-width: 100%;
        padding: 12px 16px;
        display: block;
        margin: 15px auto;
        left: 0;
    }

    .card-bottom-left, .card-bottom-right{
        margin: 15px auto;
        top: 0;
    }

    .journey-card h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .journey-card p {
        font-size: 11px;
        line-height: 15px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-cta{
        text-align: center;
    }

    .faq-left h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .faq-description {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    .faq-question {
        font-size: 14px;
        line-height: 20px;
        padding: 16px 0 12px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 18px;
        padding: 6px 0 10px 0;
    }

    .cta-final-card {
        padding: 30px 20px;
        min-height: 250px;
        border-radius: 20px;
    }

    .cta-final-card h2 {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 12px;
    }

    .cta-final-card p {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 16px;
    }

    .cta-whatsapp-button {
        font-size: 16px;
        padding: 10px 20px;
        gap: 6px;
    }

    footer {
        padding: 60px 0 10px;
        overflow: visible;
        background-size: cover;
        background-position: bottom left;
        display: block;
    }

    .footer-content {
        padding-top: 60px;
        padding-bottom: 10px;
        gap: 25px;
        text-align: center;
        min-height: 550px;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-logo img{
        margin: 0 auto;
    }

    .footer-left{
        width: 100%;
        max-height: 120px;
    }

    .footer-right {
        gap: 25px;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-section .address,
    .footer-section .email,
    .footer-section .phone {
        font-size: 12px;
        margin-bottom: 6px;
        display: inline-block;
    }

    .footer-bottom {
        display: block !important;
        font-size: 11px;
        text-align: center;
        padding: 20px 15px 20px;
        border-top: 2px solid var(--primary-orange);;
        margin: 20px 0 0;
        opacity: 1;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: rgba(0, 0, 0, 0.3);
        width: 100%;
    }
    
    .footer-bottom p {
        margin: 5px 0 !important;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.8) !important;
        display: block !important;
        visibility: visible !important;
    }
}

/* Small Mobile (Portrait) */
@media (max-width: 375px) {
    .container {
        padding: 0 12px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 32px;
    }

    .hero p {
        font-size: 15px;
        line-height: 22px;
    }

    .startups-text {
        font-size: 18px;
        line-height: 24px;
    }

    .beyond-text h2,
    .services-section h2,
    .process-header h2,
    .comparison-section h2,
    .journey-text h2,
    .faq-left h2 {
        font-size: 22px;
        line-height: 28px;
    }

    .cta-final-card h2 {
        font-size: 20px;
        line-height: 26px;
    }

    .journey-card {
        max-width: 200px;
        padding: 10px 12px;
    }

    .card-top-left,
    .card-bottom-left {
        left: 12px;
    }

    .card-top-right,
    .card-bottom-right {
        right: 12px;
    }
}

/* Design Overlay - REMOVER APÓS AJUSTES */
.design-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1920px;
    max-width: 100vw;
    height: auto;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
    display: none;
}

.design-overlay.active {
    display: block;
}

.design-overlay img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: top;
}

/* Garantir que o body seja o container de referência para o overlay */
body.overlay-active {
    position: relative;
}

/* Controles do Overlay */
.overlay-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 8px;
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 15px;
}

.overlay-controls button {
    background: #FF5722;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.overlay-controls button:hover {
    background: #E64A19;
}

.overlay-controls input[type="range"] {
    width: 100px;
}

.overlay-controls #opacity-value {
    color: white;
    font-size: 14px;
    min-width: 35px;
}
