@font-face {
    font-family: 'Cal Sans';
    src: url('CalSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Google Sans Flex';
    src: url('GoogleSansFlex-VariableFont_GRAD,ROND,opsz,slnt,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cal Sans', sans-serif;
    letter-spacing: 1.0px;
}

body {
    background-color: #efefef;
    color: #100f10;
    overflow-x: hidden;
}

.hero-section {
    background-color: #666864;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 30;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
}

.nav-left {
    display: flex;
    gap: 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.nav-left a {
    color: #dedede;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.3s;
}

.nav-left a:hover {
    opacity: 0.7;
}

.nav-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.brand-name {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.logo {
    height: 54px;
    width: auto;
}

main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}

.content-left {
    grid-area: 1 / 1;
    position: relative;
    z-index: 5;
    max-width: 500px;
    padding-left: 100px;
    align-self: center;
    margin-top: clamp(10px, 2vw, 40px);
}

.content-left h1 {
    font-size: clamp(36px, 4vw, 48px);
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 400;
}

.content-left p {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.4;
    color: #dedede;
    margin-bottom: 35px;
    font-weight: 400;
}

.cta-container {
    display: inline-flex;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 4px;
    background: rgba(0, 0, 0, 0.05);
}

.cta-container a {
    text-decoration: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-primary {
    background-color: #100f10;
    color: white;
}

.btn-primary:hover {
    background-color: #000000;
    color: white;
}

.btn-secondary {
    color: #dedede;
    background: transparent;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cta-light {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.cta-light .btn-primary {
    background-color: #ffffff;
    color: #100f10;
}

.cta-light .btn-primary:hover {
    background-color: #e5e5e5;
}

.cta-light .btn-secondary {
    color: #ffffff;
}

.cta-light .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.content-right {
    grid-area: 1 / 1;
    position: relative;
    z-index: 5;
    max-width: 320px;
    text-align: right;
    justify-self: end;
    align-self: center;
    padding-right: 100px;
    margin-top: clamp(200px, 28vw, 400px);
}

.content-right p {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.4;
    color: #dedede;
    font-weight: 400;
}

.hero-image {
    grid-area: 1 / 1;
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.hero-image-mobile {
    display: none;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.content-left, .content-right {
    animation: fadeIn 1s ease-out forwards;
}

/* Responsiveness */
@media (max-width: 1440px) {
    .content-left img[alt="Studio Hawks Logo"] {
        height: 65px !important;
        margin-bottom: 10px !important;
    }
    .content-left h1 {
    font-size: clamp(36px, 4vw, 48px);
        margin-bottom: 10px;
    }
    .content-left p, .content-right p {
    font-size: clamp(15px, 1.5vw, 18px);
        margin-bottom: 20px;
    }
    .cta-container a {
        padding: 10px 20px;
        font-size: 14px;
    }
    .content-right {
        margin-top: clamp(150px, 20vw, 250px);
    }
}
@media (max-width: 1024px) {
    .content-left h1 { font-size: 36px; }
    .hero-image { 
        height: auto; 
        align-self: end; 
    }
}

@media (max-width: 1024px) {
    header {
        display: none;
    }
    .hero-image {
        display: none !important;
    }
    .hero-image-mobile {
        display: block;
        width: 160%;
        min-width: 110vw;
        max-width: none;
        height: auto;
        margin: 20px 0 0 0;
    }
    .content-left {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-left: 0;
        margin-top: 20px;
    }
    .content-left h1, .content-left p, .content-right p {
        text-align: center !important;
    }
    .content-left p br, .content-right p br, .content-left h1 br {
        display: none;
    }
    .content-right {
        display: none !important;
    }
    .section-title {
        font-size: 28px;
        padding: 0 25px 5px 25px;
        line-height: 1.1;
    }
    .section-subtitle {
        font-size: 16px;
        padding: 0 25px;
        margin-bottom: 40px;
    }
    .cta-container {
        max-width: 100%;
    }
    .cta-container a {
        padding: 12px 14px;
        font-size: 14px;
        white-space: nowrap;
    }
    .models-header h2 {
    font-size: 36px;
        padding: 0;
    }
    .header-subtitle {
        font-size: 16px;
        padding: 0 0 40px 0;
    }
    .available-models {
        padding-bottom: 35px !important;
    }
    .how-it-works {
        padding-top: 35px !important;
    }
    main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .hero-section {
        display: flex;
        height: auto;
        min-height: 100vh;
        padding: 30px 25px 0;
        overflow: hidden;
    }
    .what-we-do {
        margin-top: -5px;
    }
    
    .what-we-do,
    .how-it-works,
    .available-models,
    .plans,
    .kodee-banner,
    .faq,
    .site-footer {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    
    .kodee-banner-container {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
    
    .plans {
        padding-bottom: 40px !important;
    }
    
    .kodee-banner {
        padding-top: 40px !important;
    }
    
    .models-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.what-we-do {
    background-color: #100f10;
    padding: 40px 40px 100px;
    color: white;
    position: relative;
}


.what-we-do-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 30; /* Keep content above the ::before pseudo-element */
}

.what-we-do-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.what-we-do-logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    opacity: 0.8;
}

.what-we-do-right {
    flex: 1.5;
}

.what-we-do-right h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.what-we-do-right p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: #cccccc;
}

@media (max-width: 1024px) {
    .what-we-do-container {
        flex-direction: column;
        gap: 20px;
        text-align: left;
        align-items: flex-start;
    }
    .what-we-do-logo {
        max-width: 72px;
        margin: 0;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: #141414;
    padding: 100px 40px 100px;
    color: white;
    position: relative;
}

.how-it-works .models-header h2,
.faq .models-header h2 {
    color: white !important;
    background-image: none !important;
    -webkit-text-fill-color: initial !important;
}

.how-it-works .models-header .underline {
    background-color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 130px;
    position: relative;
    z-index: 30;
}

.timeline-container {
    position: relative;
    max-width: 1400px;
    margin: 80px auto 0;
    z-index: 30;
}

.timeline-line {
    position: absolute;
    bottom: 14px;
    left: -50vw;
    right: -50vw;
    height: 2px;
    background-color: #aaaaaa;
    z-index: 1;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-step {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
    width: max-content;
    max-width: 100%;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 400;
    color: white;
}

.step-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
    font-weight: 400;
}

.step-active .step-content h3 {
    color: #84cc16; /* Bright lime green */
}

.node-wrapper {
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node {
    width: 16px;
    height: 16px;
    background-color: #aaaaaa;
    border-radius: 50%;
}

.node-active {
    width: 30px;
    height: 30px;
    background-color: #84cc16;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.node-active svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 1024px) {
    .timeline-steps {
        flex-direction: column;
        gap: 50px;
    }
    .timeline-step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    .step-content {
        margin-bottom: 0;
        padding-top: 0;
        text-align: left;
    }
    .node-wrapper {
        width: 30px;
        height: 30px;
        order: -1;
        flex-shrink: 0;
    }
    .timeline-line {
        display: block;
        width: 1px;
        height: auto;
        top: -40px;
        bottom: -40px;
        left: 14px;
        right: auto;
    }
}

/* Available Models Section */
.available-models {
    background-color: #141414;
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
}

.available-models .models-header h2 {
    color: white;
}

.available-models .models-header .underline {
    background-color: white;
}

.available-models .header-subtitle {
    color: #cccccc;
}

.available-models .models-info h3 {
    color: white;
}

.available-models .models-info p {
    color: #cccccc;
}

.models-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 30;
}

.models-header h2 {
    font-size: 36px;
    font-weight: 400;
    color: white;
    margin-bottom: 0px;
    line-height: 1.0;
}

.models-header .underline {
    width: 80px;
    height: 3px;
    background-color: white;
    margin: 5px auto 0;
}

.header-subtitle {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 18px;
    color: #888888;
    margin-top: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.grey-band {
    width: 100%;
    height: 500px;
    background-color: transparent;
    margin-bottom: 0;
    overflow-y: hidden;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none; /* Firefox */
}
.grey-band::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.grey-band-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
    will-change: opacity;
    transition: opacity 3.5s cubic-bezier(0.21, 1.02, 0.73, 1);
}

.grey-band-img.visible {
    opacity: 1;
}

.models-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1400px;
    margin: 80px auto 0;
    position: relative;
    z-index: 2;
    padding: 0 40px;
    container-type: inline-size;
}

.mockup-container {
    position: relative;
    width: 58%;
}

.mockup-laptop {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
}

.mockup-mask {
    position: absolute;
    top: 4.8%;
    left: 11.5%;
    width: 77.1%;
    height: 20%;
    background-color: white;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
}

.mockup-screen {
    width: 100%;
    height: auto;
    display: block;
}

.models-info {
    width: 42%;
    margin-top: 30px;
    margin-left: -20px;
    position: relative;
    z-index: 10;
}

.models-info h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 400;
    margin-bottom: 8px;
    color: white;
}

.models-info p {
    font-size: clamp(15px, 1.5vw, 16px);
    line-height: 1.4;
    color: #cccccc;
    margin-bottom: 24px;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 400;
    letter-spacing: normal;
}

.models-info .cta-container a {
    padding: clamp(10px, 1.3cqw, 17px) clamp(19px, 2.6cqw, 34px);
    font-size: clamp(14px, 1.6cqw, 19px);
}

@media (max-width: 1024px) {
    .models-content {
        flex-direction: column;
        margin-top: -27px;
    }
    .mockup-container {
        width: 100%;
    }
    .models-info {
        width: 100%;
        margin-top: 40px;
        margin-left: 0;
        text-align: center;
    }
    .models-info p {
        font-size: 15px;
    }
    .stars-container {
        justify-content: center;
    }
    .grey-band {
        height: 100px;
    }
    .landing-page-desc,
    .landing-page-title {
        text-align: left !important;
    }
}

/* Plans Section */
.plans {
    background-color: #f1f1f1;
    padding: 80px 40px;
    color: #100f10;
}

.plans .models-header h2 {
    color: #100f10;
}

.plans .models-header .underline {
    background-color: #100f10;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.plan-card {
    position: relative;
    width: 31%;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    background-color: #e5e5e5;
    display: flex;
    flex-direction: column;
}

.plan-bg {
    width: 100%;
    height: auto;
    display: block;
    order: 2;
    margin-top: auto;
}

.plan-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px 30px 20px 30px;
    order: 1;
}

.plan-content h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #100f10;
}

.plan-content p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: normal;
}

.price-info {
    margin-bottom: 15px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 0px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-value strong {
    font-size: 24px;
    font-weight: 400;
    color: #100f10;
    line-height: 1;
}

.price-value small {
    font-size: 14px;
    font-weight: 400;
    color: #333333;
}

.btn-plan {
    display: block;
    text-align: center;
    background-color: #212121;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s;
    width: 100%;
}

.btn-plan:hover {
    background-color: #000000;
    color: white;
}

.btn-essencial:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-personalizado:hover {
    background-color: #e71e57;
}

.btn-dozero:hover {
    background-color: #c540ca;
}

@media (max-width: 1024px) {
    .plan-card {
        width: 48%;
    }
}

@media (max-width: 768px) {
    .plan-card {
        width: 100%;
    }
}

/* Kodee Banner Section */
.kodee-banner {
    padding: 80px 40px;
    position: relative;
}

.kodee-banner-container {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 60px 80px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.kodee-content {
    position: relative;
    z-index: 10;
    max-width: 50%;
}

.kodee-content h2 {
    font-family: 'Cal Sans', sans-serif;
    font-size: 36px;
    font-weight: 400;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
}

.kodee-content p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-kodee {
    display: inline-block;
    background-color: white;
    color: black;
    font-family: 'Google Sans Flex', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-kodee:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}

.kodee-bg-logo {
    position: absolute;
    right: -90px;
    top: 50%;
    transform: translateY(-27%);
    height: 310%;
    opacity: 0.06;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .kodee-banner-container {
        padding: 40px 30px;
    }
    .kodee-content {
        max-width: 100%;
        text-align: left;
    }
    .kodee-bg-logo {
        right: calc(50% - 30px);
        transform: translate(50%, -27%);
        opacity: 0.05;
        height: 180%;
    }
}

/* Latest Project Section */
.latest-project {
    background-color: #141414;
    padding: 80px 40px;
    color: white;
}

.latest-project .section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 5px;
    color: white;
}

.latest-project .underline {
    width: 80px;
    height: 3px;
    background-color: white;
    margin: 0 auto 15px;
}

.latest-project-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 0px;
}

.project-left, .project-right {
    flex: 1;
    max-width: 450px;
    transform: translateY(-40px);
}



.project-left .project-subtitle {
    display: block;
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 2px;
}

.project-left h3 {
    font-size: 24px;
    font-weight: 400;
    color: white;
    margin-bottom: 10px;
}

.project-left p, .project-right p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    letter-spacing: normal;
}

.project-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
}

.project-mockup {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 30px;
}

.project-right .stars {
    color: #facc15; /* Yellow */
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .latest-project {
        padding: 60px 25px;
    }

    .latest-project-container {
        flex-direction: column;
        text-align: center;
    }
    
    .project-left {
        max-width: 100%;
        transform: translateY(0);
        padding: 0;
        text-align: left;
    }

    .project-right {
        max-width: 100%;
        transform: translateY(0);
        padding: 25px 25px;
        margin: 0 0 60px;
        width: 100%;
        text-align: left;
        background: #1a1a1a;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    }
    
    .project-center {
        order: -1; /* Move image to top on mobile */
        margin-bottom: 40px;
    }
}

/* FAQ Section */
.faq {
    background-color: #100f10;
    padding: 80px 40px;
    color: white;
}

.faq .models-header {
    margin-bottom: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.02);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 20px;
    font-weight: 400;
    color: white;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    font-weight: 400;
    color: #84cc16;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    padding-bottom: 24px;
    margin: 0;
}

.faq-item.active {
    border-color: rgba(132, 204, 22, 0.5);
    background-color: rgba(255, 255, 255, 0.05);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #84cc16;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Footer Section */
.site-footer {
    background-color: #080808;
    padding: 80px 40px 20px;
    color: white;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 2;
    min-width: 300px;
}

.footer-brand .brand-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
    width: fit-content;
}

.footer-brand p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #e5e5e5;
    max-width: 400px;
}

.footer-links, .footer-contact {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 10px;
    color: white;
}

.footer-links a, .footer-contact p, .social-links a {
    font-family: 'Google Sans Flex', sans-serif;
    color: #cccccc;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-links a:hover, .social-links a:hover {
    color: #84cc16;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 14px;
    color: #999999;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    backdrop-filter: blur(15px) saturate(150%);
    color: #100f10;
    z-index: 100;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.mobile-nav-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: rgba(215, 215, 215, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 30px 20px 25px 20px;
    width: 85%;
    max-width: 360px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.mobile-nav-modal.active .mobile-nav-content {
    transform: scale(1) translateY(0);
}

.close-mobile-menu {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: #1b4b2a;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
}

.mobile-nav-link:last-child {
    border-bottom: none;
    margin-bottom: 25px;
}

.mobile-nav-link:hover {
    background: rgba(0, 0, 0, 0.02);
}

.icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-box svg {
    width: 18px;
    height: 18px;
    stroke: #333;
}

.link-text {
    flex-grow: 1;
    text-align: left;
    font-family: 'Cal Sans', sans-serif;
    letter-spacing: 1px;
}

.chevron {
    width: 18px;
    height: 18px;
    stroke: #aaa;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #30d15b;
    color: white;
    text-decoration: none;
    font-family: 'Cal Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 18px;
    gap: 15px;
    position: relative;
    letter-spacing: 0.5px;
}

.wa-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-icon-box svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-nav-modal {
        display: flex;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: #ffffff;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.final-cta-container h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #100f10;
    margin-bottom: 20px;
    line-height: 1.1;
}

.final-cta-container p {
    font-size: clamp(16px, 2vw, 18px);
    z-index: 100;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.mobile-nav-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.mobile-nav-modal.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
    background: rgba(215, 215, 215, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 30px 20px 25px 20px;
    width: 85%;
    max-width: 360px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.mobile-nav-modal.active .mobile-nav-content {
    transform: scale(1) translateY(0);
}

.close-mobile-menu {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background-color: #1b4b2a;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 10;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    padding: 16px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
}

.mobile-nav-link:last-child {
    border-bottom: none;
    margin-bottom: 25px;
}

.mobile-nav-link:hover {
    background: rgba(0, 0, 0, 0.02);
}

.icon-box {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.icon-box svg {
    width: 18px;
    height: 18px;
    stroke: #333;
}

.link-text {
    flex-grow: 1;
    text-align: left;
    font-family: 'Cal Sans', sans-serif;
    letter-spacing: 1px;
}

.chevron {
    width: 18px;
    height: 18px;
    stroke: #aaa;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #30d15b;
    color: white;
    text-decoration: none;
    font-family: 'Cal Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 18px;
    gap: 15px;
    position: relative;
    letter-spacing: 0.5px;
}

.wa-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-icon-box svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    .mobile-nav-modal {
        display: flex;
    }
}

/* Final CTA Section */
.final-cta {
    background-color: #ffffff;
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.final-cta-container h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    color: #100f10;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    z-index: 20;
}

.final-cta-container p {
    font-size: clamp(16px, 2vw, 18px);
    color: #555555;
    margin-bottom: 50px;
    font-family: 'Google Sans Flex', sans-serif;
    position: relative;
    z-index: 20;
}

.btn-final-cta {
    display: inline-block;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    background: linear-gradient(90deg, #ff3366, #ff9933, #33cc99, #33ccff, #9966ff, #ff33cc);
    background-size: 300% 300%;
    animation: finalCtaGlow 5s ease infinite;
    box-shadow: 0 10px 25px rgba(255, 51, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    position: relative;
    z-index: 20;
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 51, 102, 0.4);
}

@keyframes finalCtaGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.popup {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%) scale(0.5) translateY(20px);
    background: #ffffff;
    color: #100f10;
    padding: 14px 40px;
    min-width: 280px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    font-family: 'Google Sans Flex', sans-serif;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    z-index: 5;
    transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    pointer-events: none;
    transform-origin: center center;
}

.popup.popup-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) scale(1) translateY(0);
}

.popup.popup-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) scale(0.8) translateY(20px);
}

.popup-left {
    border-radius: 20px 20px 20px 4px;
}

.popup-right {
    border-radius: 20px 20px 4px 20px;
}

.final-cta {
    padding-bottom: 160px; /* Extra bottom padding to make room for centered popups */
}

@media (max-width: 1024px) {
    .final-cta {
        padding: 80px 25px 120px;
    }
    .final-cta-container {
        display: flex;
        flex-direction: column;
    }
    .final-cta-container h2 {
        order: 1;
        text-align: center;
    }
    .final-cta-container p {
        order: 2;
        text-align: center;
    }
    .btn-final-cta {
        order: 3;
        align-self: center;
    }
    .popup {
        white-space: normal;
        max-width: 90%;
        text-align: center;
        display: flex;
        justify-content: center;
    }
}

.landing-info-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .landing-info-desktop {
        display: none !important;
    }
    .landing-info-mobile {
        display: block;
    }
}

.stars-container {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.star-icon {
    width: 24px;
    height: 24px;
    fill: #facc15;
    filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.5));
    animation: starPulse 2s infinite ease-in-out;
}

.star-icon:nth-child(1) { animation-delay: 0s; }
.star-icon:nth-child(2) { animation-delay: 0.2s; }
.star-icon:nth-child(3) { animation-delay: 0.4s; }
.star-icon:nth-child(4) { animation-delay: 0.6s; }
.star-icon:nth-child(5) { animation-delay: 0.8s; }

@keyframes starPulse {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 4px rgba(250, 204, 21, 0.5)); 
    }
    50% { 
        transform: scale(1.15); 
        filter: drop-shadow(0 0 10px rgba(250, 204, 21, 0.9)); 
    }
}

.available-models.light-theme {
    background-color: #f5f5f7;
}

.available-models.light-theme .models-header h2,
.available-models.light-theme .models-info h3 {
    color: #1d1d1f;
}

.available-models.light-theme .models-header .underline {
    background-color: #1d1d1f;
}

.available-models.light-theme .header-subtitle,
.available-models.light-theme .models-info p {
    color: #515154;
}

.available-models.light-theme .cta-container {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.03);
}

.available-models.light-theme .btn-secondary {
    color: #1d1d1f;
}

.available-models.light-theme .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* Padronização de altura e tamanho para corpo de texto e subtítulos */
p, .header-subtitle {
    font-size: 16px !important;
    line-height: 1.6 !important;
}

@media (min-width: 1025px) {
    .final-cta .popup {
        opacity: 1 !important;
        pointer-events: auto !important;
        animation: popupFloatDesktop 4s ease-in-out infinite !important;
        bottom: auto;
        left: auto;
        transform: none; /* override JS transforms */
    }
    
    .final-cta .popup:nth-child(1) { 
        top: -40px;
        left: -150px;
        animation-delay: 0s !important;
    }
    .final-cta .popup:nth-child(2) { 
        top: 20px;
        right: -160px;
        animation-delay: 0.8s !important;
    }
    .final-cta .popup:nth-child(3) { 
        bottom: 20px;
        left: -120px;
        top: auto;
        animation-delay: 1.6s !important;
    }
    .final-cta .popup:nth-child(4) { 
        bottom: -30px;
        right: -130px;
        top: auto;
        animation-delay: 2.4s !important;
    }
}

@keyframes popupFloatDesktop {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.02); }
}

/* Animação de degradê para os títulos das sessões */
.models-header h2,
.section-title,
.kodee-content h2,
.final-cta-container h2,
.content-left h1 {
    background-image: linear-gradient(90deg, #ff3366, #ff9933, #33cc99, #33ccff, #9966ff, #ff33cc) !important;
    background-size: 300% 300% !important;
    animation: finalCtaGlow 5s ease infinite !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}
