/*
Theme Name: Alugue Sol
Description: Tema WordPress de página única para o site Alugue Sol
Author: Seu Nome
Version: 1.0
*/

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #034F55;
    background-color: #f9f9f9;
}

/* Container principal */
.container {
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

/* Header e Navbar */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: 144px;
    height: 55px;
    position: relative;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 32.929px;
    height: 42.429px;
    position: relative;
    margin-right: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .alugue {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #034F55;
    line-height: 1;
    margin-bottom: 4px;
}

.logo-text .sol {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 35px;
    color: #034F55;
    line-height: 1;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #034F55;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: #E15303;
}

.cta-button {
    background-color: transparent;
    border: 1px solid #034F55;
    color: #034F55;
    padding: 16px 30px;
    border-radius: 3600px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #034F55;
    color: #fff!important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 79, 85, 0.3);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #034F55;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-toggle:hover {
    transform: scale(1.1);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 0 0 15px 15px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #034F55;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #E15303;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu .cta-button {
    margin-top: 15px;
    display: block;
    text-align: center;
}

/* Footer */
.footer {
    background-color: #034F55;
    color: #fff;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo .logo-text .alugue,
.footer-logo .logo-text .sol {
    color: #fff;
}

.footer-info p {
    margin: 0;
    opacity: 0.8;
}

/* Como Funciona Section Styles */
.como-funciona-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
    padding-bottom: 100px;
}

.como-funciona-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
}

/* Container do Vídeo */
.video-container {
    background-color: rgba(225, 83, 3, 0.12);
    border-radius: 48px 16px 16px 48px;
    height: 466px;
    width: 100%;
    position: relative;
}

.video-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 100%;
    padding: 64px;
    gap: 64px;
}

.video-wrapper {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 32px 16px 16px 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: inherit;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 10;
}

.youtube-icon {
    position: absolute;
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
}

.youtube-icon:hover {
    transform: scale(1.1);
}

.youtube-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.video-text h2 {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #E15303;
    margin: 0;
}

.video-description p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #01242d;
    margin: 0;
}

/* Seção de Benefícios */
.benefits-container {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.benefits-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.benefits-icon {
    width: 48px;
    height: 48px;
}

.benefits-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefits-text {
    width: 100%;
}

.benefits-description {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #034F55;
    margin: 0 0 24px 0;
}

.benefits-title-bold {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #034F55;
    margin: 0 0 8px 0;
}

.benefits-title-light {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    color: #034F55;
    margin: 0;
}

.benefits-boxes {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
}

.benefit-box {
    background-color: rgba(3, 79, 85, 0.12);
    border: 1px solid #F9F9F9;
    border-radius: 16px;
    padding: 40px;
    width: 100%;
}

.benefit-box p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #034F55;
    margin: 0;
}

/* Diferenciais Section Styles */
.diferenciais-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.diferenciais-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

/* Header da seção */
.diferenciais-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.diferenciais-icon {
    width: 56px;
    height: 56px;
}

.diferenciais-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diferenciais-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 100;
    line-height: 48px;
    color: #F9F9F9;
    text-align: center;
    margin: 0;
}

/* Grid de Cards */
.diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    width: 100%;
    align-items: stretch;
}

.diferenciais-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: 100%;
}

/* Sistema de alturas balanceadas */
.diferenciais-column:nth-child(1) {
    grid-row: 1;
}

.diferenciais-column:nth-child(2) {
    grid-row: 1;
}

.diferenciais-column:nth-child(3) {
    grid-row: 1;
}

/* Cards Base */
.diferencial-card {
    border-radius: 16px;
    border: 1px solid #F9F9F9;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.card-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

.card-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #034F55;
    margin: 0;
}

.card-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #034F55;
    margin: 0;
}

.card-text strong {
    font-weight: 700;
}

/* Variações de Cards */
.card-yellow {
    background-color: #FEBB2A;
}

.card-white {
    background-color: #F9F9F9;
}

/* Alturas dos Cards */
.card-small {
    height: 100%;
}

.card-large {
    height: 100%;
}

.card-medium {
    height: 100%;
}

.card-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #E0E0E0; /* Cor de fallback */
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.card-image-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.card-cta-button {
    background-color: #034F55;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.card-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 79, 85, 0.3);
}

.card-cta-button p {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    color: #F9F9F9;
    margin: 0;
    text-align: center;
}

/* Simulador Section Styles */
.simulador-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.simulador-content {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 0px;
}

/* Coluna Esquerda - Notícias */
.simulador-esquerda {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
}

.simulador-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: flex-start;
}

.simulador-icon {
    width: 48px;
    height: 48px;
}

.simulador-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.simulador-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #F9F9F9;
    margin: 0;
}

.simulador-texto {
    width: 100%;
}

.simulador-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #F9F9F9;
    margin: 0;
}

/* Slider de Manchetes */
.manchetes-slider {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
    min-height: 200px;
}

.manchete-card {
    width: 100%;
    display: none;
}

.manchete-card.active {
    display: block;
}

.manchete-content {
    background-color: transparent;
    border: 1px solid #F9F9F9;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
}

.manchete-content:hover {
    background-color: rgba(249, 249, 249, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.manchete-logo {
    width: 80px;
    height: 40px;
}

.manchete-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.manchete-texto {
    width: 100%;
}

.manchete-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: #F9F9F9;
    margin: 0;
}

/* Indicadores do Slider */
.slider-indicators {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #F9F9F9;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #F9F9F9;
}

/* Coluna Direita - Simulador */
.simulador-direita {
    flex: 1;
    background-color: rgba(249, 249, 249, 0.12);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    min-height: 400px;
}

.simulador-step {
    display: none;
    width: 100%;
    height: 100%;
}

.simulador-step.active {
    display: block;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: flex-start;
    height: 100%;
}

.simulador-intro {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: #F9F9F9;
    margin: 0;
}

.cta-simulador {
    background-color: #F9F9F9;
    border: 1px solid #F9F9F9;
    border-radius: 3600px;
    padding: 16px 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-simulador:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 249, 249, 0.3);
}

.cta-simulador span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #171D49;
    text-align: center;
}

.cta-simulador img {
    width: 18px;
    height: 8px;
    object-fit: contain;
}



/* Como Funciona na Prática Section Styles */
.pratica-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.pratica-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 120px 0px;
}

/* DOBRA 1 - Como Funciona */
.como-funciona {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.como-funciona-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.como-funciona-icon {
    width: 48px;
    height: 48px;
}

.como-funciona-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.como-funciona-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    color: #034F55;
    margin: 0;
}

.como-funciona-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
}

.como-funciona-subtitle p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #034F55;
    margin: 0;
    text-align: center;
}

.como-funciona-subtitle strong {
    font-weight: 700;
}

/* Tabs System */
.como-funciona-tabs {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tab-navigation {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-button {
    background-color: transparent;
    border: 1px solid #034F55;
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #034F55;
    border-color: #F9F9F9;
}

.tab-button span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #034F55;
    text-align: center;
    white-space: nowrap;
}

.tab-button.active span {
    color: #F9F9F9;
}

.tab-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(3, 79, 85, 0.2);
}

.tab-arrow {
    width: 6px;
    height: 10.5px;
}

.tab-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Tab Content */
.tab-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab-panel {
    display: none;
    width: 100%;
    text-align: center;
}

.tab-panel.active {
    display: block;
}

.tab-panel p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin: 0;
}

/* Tab 5 - Economize especial */
.economize-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.economize-panel.active {
    display: flex;
}

.economize-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
    color: #000000;
    margin: 0;
    text-align: center;
}

.economize-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
    margin-bottom: 24px;
}

.economize-card {
    flex: 1;
    background-color: rgba(3, 79, 85, 0.12);
    border-radius: 8px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.economize-card p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin: 0;
    text-align: center;
}

.economize-footer p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #000000;
    margin: 0;
    text-align: center;
}

/* CTA */
.como-funciona-cta {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button-pratica {
    background-color: #034F55;
    border: none;
    border-radius: 3600px;
    padding: 16px 30px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-pratica:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(3, 79, 85, 0.3);
}

.cta-button-pratica span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #F9F9F9;
    text-align: center;
}

.cta-button-pratica img {
    width: 18px;
    height: 8px;
    object-fit: contain;
}

/* DOBRA 2 - Depoimentos */
.depoimentos-section {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.depoimentos-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.depoimentos-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #E15303;
    margin: 0;
}

.depoimentos-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #034F55;
    margin: 0;
}

/* Slider de Depoimentos */
.depoimentos-slider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.depoimento-container {
    background-color: rgba(225, 83, 3, 0.12);
    border-radius: 48px 16px 48px 16px;
    padding: 48px;
    width: 100%;
    max-width: 1280px;
    position: relative;
    text-align: center;
    min-height: 200px;
    text-align: center;
}

.depoimento-card {
    display: none;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.depoimento-card.active {
    display: block;
    opacity: 1;
}

.depoimento-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.depoimento-texto {
    text-align: center;
    width: 100%;
}

.depoimento-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    line-height: 34px;
    color: #000000;
    margin: 0 0 16px 0;
}

.depoimento-autor {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 800;
    font-style: normal !important;
    line-height: 34px;
    color: #000000;
    margin: 0 !important;
}

/* Navegação do Slider */
.depoimentos-nav {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-button {
    width: 40px;
    height: 40px;
    border: 1px solid #E15303;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #E15303;
    transform: scale(1.1);
}

.nav-button img {
    width: 20px;
    height: 12px;
    object-fit: contain;
}

/* DOBRA 3 - FAQ */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.faq-header {
    width: 100%;
    text-align: center;
}

.faq-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 48px;
    color: #034F55;
    margin: 0;
}

.faq-title strong {
    font-weight: 800;
}

/* Accordions */
.faq-accordions {
    width: 100%;
}

.faq-columns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.faq-column-left,
.faq-column-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    width: 100%;
}

.faq-button {
    background-color: rgba(3, 79, 85, 0.12);
    border: 1px solid #F9F9F9;
    border-radius: 8px;
    padding: 32px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background-color: rgba(3, 79, 85, 0.16);
}

.faq-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.faq-button.active .faq-icon {
    transform: rotate(45deg);
}

.faq-button span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #034F55;
    text-align: left;
    flex: 1;
}

.faq-content {
    background-color: #F9F9F9;
    border-radius: 0 0 8px 8px;
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
}

.faq-content.active {
    max-height: 300px;
    padding: 24px 32px;
    opacity: 1;
}

.faq-content p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #034F55;
    margin: 0;
}

/* Formulário de Contato Section Styles */
.formulario-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.formulario-content {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 64px 0px;
}

/* Coluna Esquerda - Texto */
.formulario-esquerda {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

.formulario-icon {
    width: 48px;
    height: 48px;
}

.formulario-icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.formulario-title {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #F9F9F9;
    margin: 0;
}

.formulario-texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.formulario-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    color: #F9F9F9;
    margin: 0;
}

/* Coluna Direita - Formulário */
.formulario-direita {
    width: 544px;
    flex-shrink: 0;
}

.rd-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Campos do Formulário */
.form-field {
    width: 100%;
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    background-color: transparent;
    border: 1px solid #F9F9F9;
    border-radius: 8px;
    padding: 24px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #F9F9F9;
    outline: none;
    transition: all 0.3s ease;
}

/* Corrigir o placeholder para todos os campos */
.form-field input::placeholder,
.form-field select::placeholder {
    color: #F9F9F9;
    opacity: 1;
}

/* Select específico */
.form-field select {
    background-color: #E15303;  /* Manter o fundo laranja */
    appearance: none;  /* Remover a aparência padrão do select */
}

/* Foco nos campos */
.form-field input:focus,
.form-field select:focus {
    border-color: #F9F9F9;
    box-shadow: 0 0 0 2px rgba(249, 249, 249, 0.2);
}

/* Estilo para o ícone de seta do select */
.form-field select::-ms-expand {
    display: none;  /* Esconde a seta no Internet Explorer */
}

/* Adicionando o ícone de dropdown (seta) */
.form-field select::after {
    content: '\2193';           /* Código Unicode para a seta */
    font-size: 20px;            /* Tamanho da seta */
    color: #F9F9F9;             /* Cor da seta */
    position: absolute;
    right: 16px;                /* Alinha à direita */
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;       /* Não interfere com o clique no campo */
}

/* Estilo das opções do select */
.form-field select option {
    background-color: #E15303;     /* Fundo laranja para as opções */
    color: #F9F9F9;                /* Cor do texto das opções */
}

/* Texto LGPD */
.form-lgpd {
    width: 100%;
    text-align: center;
}

.form-lgpd p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #F9F9F9;
    margin: 0;
}

/* Botão Submit */
.form-submit {
    background-color: #F9F9F9;
    border: none;
    border-radius: 3600px;
    padding: 16px 30px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 249, 249, 0.3);
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-submit span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #E15303;
    text-align: center;
    white-space: nowrap;
}

/* Estados de carregamento */
.form-submit.loading::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #E15303;
    border-top: 2px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 1s linear infinite;
    margin-right: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Sobre a Alugue Sol e Instagram Section Styles */
.sobre-instagram-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.sobre-instagram-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
    justify-content: center;
    padding: 120px 0px;
}

/* Card Sobre a Alugue Sol */
.sobre-card {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    background-color: transparent;
    border: 1px solid #F9F9F9;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.sobre-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid #F9F9F9;
    border-radius: 16px;
    pointer-events: none;
}

/* Coluna Esquerda */
.sobre-esquerda {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}

.sobre-imagem {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.sobre-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sobre-titulo {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #E15303;
    margin: 0;
}

.sobre-texto {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sobre-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #01242D;
    margin: 0;
}

.sobre-texto a {
    color: #01242D;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
}

.sobre-texto a:hover {
    color: #E15303;
}

/* Coluna Direita */
.sobre-direita {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
}

.sobre-texto-direita {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.sobre-texto-direita p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #01242D;
    margin: 0;
}

.sobre-cta {
    background-color: #E15303;
    border: none;
    border-radius: 3600px;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sobre-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 83, 3, 0.3);
    text-decoration: none;
}

.sobre-cta span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #F9F9F9;
    text-align: center;
    white-space: nowrap;
}

/* Seção Instagram */
.instagram-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Header Instagram */
.instagram-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.instagram-titulo {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #E15303;
    margin: 0;
}

.instagram-descricao {
    width: 100%;
}

.instagram-descricao p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #01242D;
    margin: 0;
}

/* Posts Instagram */
.instagram-posts {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.instagram-post-placeholder,
.instagram-post {
    flex: 1;
    aspect-ratio: 611/756;
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 30px 50px 0px rgba(0, 0, 0, 0.17);
    cursor: pointer;
    transition: transform 0.3s ease;
    position: relative;
}

.instagram-post-placeholder:hover,
.instagram-post:hover {
    transform: translateY(-5px);
}

.instagram-post-placeholder img,
.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Overlay para posts */
.instagram-post::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(225, 83, 3, 0.1) 0%, rgba(1, 36, 45, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.instagram-post:hover::after {
    opacity: 1;
}

/* Botão Instagram */
.instagram-cta {
    background-color: #E15303;
    border: none;
    border-radius: 3600px;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 83, 3, 0.3);
    text-decoration: none;
}

.instagram-cta span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #F9F9F9;
    text-align: center;
    white-space: nowrap;
}

/* Estados de loading para Instagram */
.instagram-posts.loading .instagram-post-placeholder {
    position: relative;
    overflow: hidden;
}

.instagram-posts.loading .instagram-post-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Footer Section Styles */
.footer-section {
    background-color: #034f55;
    width: 100%;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 80px;
    width: 100%;
}

/* Colunas do Footer */
.footer-columns {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: center;
    width: 100%;
}

.footer-titulo {
    font-family: 'Vinila', sans-serif;
    font-size: 40px;
    font-weight: 800;
    line-height: 48px;
    color: #F9F9F9;
    margin: 0;
    width: 100%;
}

.footer-texto {
    width: 100%;
}

.footer-texto p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #F9F9F9;
    margin: 0;
}

.footer-email {
    color: #F9F9F9;
    text-decoration: underline;
    text-decoration-style: solid;
    text-underline-position: from-font;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    cursor: pointer;
}

.footer-email:hover {
    color: #E15303;
    text-decoration: none;
}

/* Header do Footer (Divisor + Logo) */
.footer-header {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.footer-divider {
    background-color: #F9F9F9;
    height: 1px;
    mix-blend-mode: overlay;
    width: 100%;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* Logo Positivo */
.logo-positivo {
    height: 76px;
    width: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 65px;
    height: 76px;
    overflow: hidden;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    position: relative;
    left: 67px;
    width: 134px;
    height: 76px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-alugue {
    position: absolute;
    bottom: 55px;
    left: 0;
    right: 0;
    top: -1px;
    height: 23px;
}

.logo-alugue svg {
    width: 100%;
    height: 100%;
}

.logo-sol {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 28px;
    height: 49px;
}

.logo-sol svg {
    width: 100%;
    height: 100%;
}

/* Animações do logo */
.solar-icon {
    transition: transform 0.3s ease;
}

.footer-logo:hover .solar-icon {
    transform: rotate(360deg);
}

.solar-rays {
    transition: opacity 0.3s ease;
}

.footer-logo:hover .solar-rays {
    opacity: 0.8;
}

.alugue-text,
.sol-text {
    transition: all 0.3s ease;
}

.footer-logo:hover .alugue-text,
.footer-logo:hover .sol-text {
    fill: #E15303;
}

/* Hero Section Styles */
.hero-container {
    max-width: 1280px;
    width: 88%;
    margin: 0 auto;
}

.hero-content {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 0;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
}

.hero-icons {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    justify-content: flex-start;
}

.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}

.hero-title h1 {
    font-family: 'Vinila', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 60px;
    margin: 0;
}

.hero-title .title-orange {
    color: #E15303;
    background: linear-gradient(90deg, #E15303, #E15303);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .title-teal {
    color: #034F55;
    font-weight: 300;
}

.hero-text {
    position: relative;
    width: 677px;
}

.hero-text-highlight-1 {
    position: absolute;
    top: 0;
    left: 4px;
    width: 266px;
    height: 31px;
    background-color: rgba(3, 79, 85, 0.16);
    border-radius: 2px;
}

.hero-text-highlight-2 {
    position: absolute;
    top: 151px;
    left: 0;
    width: 593px;
    height: 31px;
    background-color: rgba(3, 79, 85, 0.16);
    border-radius: 2px;
}

.hero-text p {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #01242d;
    margin: 0;
}

.hero-cta {
    background-color: #E15303;
    border-radius: 3600px;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 83, 3, 0.3);
}

.hero-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #F9F9F9;
    text-align: center;
    white-space: nowrap;
    margin: 0;
}

.hero-image-mobile {
    flex-shrink: 0;
    width: 100%;
    display: none;
}

/* Responsividade */
@media (max-width: 1024px) {
    .container {
        width: 90%;
    }
    
    .navbar {
        padding: 24px 0;
    }
    
    .hero-content {
        gap: 60px;
        padding: 80px 0;
    }
    
    .hero-title h1 {
        font-size: 56px;
        line-height: 64px;
    }
    
    .hero-text {
        width: 600px;
    }
    
    /* Como Funciona responsivo */
    .como-funciona-content {
        gap: 50px;
    }
    
    .video-content {
        padding: 50px;
        gap: 50px;
    }
    
    .video-text h2 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .video-description p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .benefits-title-bold,
    .benefits-title-light {
        font-size: 32px;
        line-height: 40px;
    }
    
    .benefits-description {
        font-size: 20px;
        line-height: 28px;
    }
    
    .benefit-box p {
        font-size: 20px;
        line-height: 28px;
    }
    
    /* Diferenciais responsivo 1024px */
    .diferenciais-content {
        padding: 100px;
        gap: 50px;
    }
    
    .diferenciais-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .card-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .card-text {
        font-size: 20px;
        line-height: 28px;
    }
    
    .card-cta-button p {
        font-size: 24px;
        line-height: 32px;
    }
    
    /* Simulador responsivo 1024px */
    .simulador-content {
        padding: 100px 0;
        gap: 50px;
    }
    
    .simulador-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .simulador-texto p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .manchete-texto p {
        font-size: 24px;
        line-height: 32px;
    }
    
    .simulador-intro {
        font-size: 20px;
        line-height: 28px;
    }
    
    .form-question {
        font-size: 24px;
        line-height: 32px;
    }
    
    .resultado-titulo,
    .resultado-valor {
        font-size: 24px;
        line-height: 32px;
    }
    
    .resultado-anual p {
        font-size: 24px;
        line-height: 32px;
    }
    
    /* Como Funciona responsivo 1024px */
    .pratica-content {
        padding: 100px 40px;
        gap: 50px;
    }
    
    .como-funciona-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .como-funciona-subtitle p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .tab-button span {
        font-size: 16px;
        line-height: 22px;
    }
    
    .tab-panel p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .economize-header h3 {
        font-size: 24px;
        line-height: 32px;
    }
    
    .economize-card p,
    .economize-footer p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .depoimentos-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .depoimentos-subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    
    .depoimento-texto p,
    .depoimento-autor {
        font-size: 18px;
        line-height: 26px;
    }
    
    .faq-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .faq-button span {
        font-size: 24px;
        line-height: 32px;
    }
    
    .faq-content p {
        font-size: 18px;
        line-height: 26px;
    }
    
    /* Formulário responsivo 1024px */
    .formulario-content {
        padding: 50px 0px;
        gap: 50px;
    }
    
    .formulario-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .formulario-texto p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .formulario-direita {
        width: 480px;
    }
    
    .form-field input {
        padding: 20px;
        font-size: 16px;
        line-height: 22px;
    }
    
    .form-submit span {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Sobre e Instagram responsivo 1024px */
    .sobre-instagram-content {
        padding: 80px 0px;
        gap: 50px;
    }
    
    .sobre-card {
        gap: 40px;
    }
    
    .sobre-titulo {
        font-size: 36px;
        line-height: 44px;
    }
    
    .sobre-texto p,
    .sobre-texto a {
        font-size: 20px;
        line-height: 28px;
    }
    
    .sobre-texto-direita p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .instagram-titulo {
        font-size: 36px;
        line-height: 44px;
    }
    
    .instagram-descricao p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .sobre-cta span,
    .instagram-cta span {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Footer responsivo 1024px */
    .footer-content {
        padding: 60px 40px;
        gap: 50px;
    }
    
    .footer-titulo {
        font-size: 36px;
        line-height: 44px;
    }
    
    .footer-texto p,
    .footer-email {
        font-size: 18px;
        line-height: 26px;
    }
    
    .logo-positivo {
        height: 60px;
        width: 160px;
    }
    
    .logo-icon {
        width: 52px;
        height: 60px;
    }
    
    .logo-text {
        left: 54px;
        width: 107px;
        height: 60px;
    }
}

@media (max-width: 920px) {
    .hero-content {
        flex-direction: column;
        gap: 50px;
        padding: 70px 0;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        align-items: center;
        text-align: center;
    }
    
    .hero-title h1 {
        font-size: 48px;
        line-height: 56px;
    }
    
    .hero-text {
        width: 100%;
        max-width: 600px;
    }
    
    .hero-image {
        width: 450px;
        height: 650px;
    }
    
    /* Como Funciona em tablets */
    .video-content {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    
    .video-text {
        align-items: center;
        text-align: center;
    }
    
    .video-container {
        height: auto;
        border-radius: 32px;
    }
    
    .video-thumbnail {
        border-radius: 16px;
        height: 300px;
    }
    
    .benefits-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-left {
        align-items: center;
        text-align: center;
    }
    
    /* Diferenciais em tablets 920px */
    .diferenciais-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .diferenciais-column:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    
    .card-small,
    .card-large,
    .card-medium,
    .card-image {
        height: auto;
        min-height: 350px;
    }
    
    .card-content {
        padding: 32px;
        gap: 20px;
    }
    
    /* Simulador em tablets 920px */
    .simulador-content {
        flex-direction: column;
        gap: 40px;
        text-align: left;
    }
    
    .simulador-esquerda {
        align-items: center;
        text-align: center;
    }
    
    .simulador-header {
        align-items: center;
        text-align: center;
    }
    
    .manchete-content {
        padding: 24px;
        gap: 24px;
        align-items: center;
    }
    
    /* Como Funciona em tablets 920px */
    .tab-navigation {
        gap: 12px;
    }
    
    .tab-button {
        padding: 12px 16px;
    }
    
    .tab-button span {
        font-size: 14px;
        line-height: 20px;
    }
    
    .economize-cards {
        flex-direction: column;
        gap: 16px;
    }
    
    .economize-card {
        padding: 24px;
    }
    
    .depoimento-container {
        padding: 32px;
    }
    
    .depoimentos-nav {
        right: 32px;
        bottom: 32px;
    }
    
    .faq-columns {
        gap: 16px;
    }
    
    .faq-button {
        padding: 24px;
        gap: 24px;
    }
    
    .faq-content.active {
        padding: 16px 24px;
    }
    
    /* Formulário em tablets 920px */
    .formulario-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .formulario-esquerda {
        align-items: center;
        text-align: center;
    }
    
    .formulario-direita {
        width: 100%;
        max-width: 544px;
    }
    
    /* Sobre e Instagram em tablets 920px */
    .sobre-card {
        flex-direction: column;
        gap: 32px;
    }
    
    .sobre-esquerda,
    .sobre-direita {
        width: 100%;
    }
    
    .instagram-posts {
        gap: 20px;
    }
    
    /* Footer em tablets 920px */
    .footer-columns {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-column {
        align-items: center;
    }
}

@media (max-width: 768px) {

    .como-funciona-container {
        padding-bottom: 40px;
    }

    .video-wrapper {
        flex: 1;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .hero-image-desktop {
        display: none;
    }
    
    .hero-image-mobile {
        flex-shrink: 0;
        width: 100%;
        display: block;
    }

    .navbar {
        padding: 20px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .logo {
        width: 120px;
        height: 45px;
    }
    
    .logo-text .sol {
        font-size: 28px;
    }
    
    .logo-text .alugue {
        font-size: 14px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-left {
        align-items: center;
    }
    
    .hero-title {
        align-items: center;
        text-align: center;
    }
    
    .hero-title h1 {
        font-size: 36px;
        line-height: 44px;
    }
    
    .hero-text {
        width: 100%;
        max-width: 500px;
    }
    
    .hero-text-highlight-1 {
        width: 200px;
        height: 25px;
    }
    
    .hero-text-highlight-2 {
        top: 120px;
        width: 400px;
        height: 25px;
    }
    
    .hero-text p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .hero-image {
        width: 400px;
        height: 600px;
    }
    
    .hero-icons {
        gap: 24px;
        justify-content: center;
        display: none;
    }
    
    /* Como Funciona mobile */
    .como-funciona-content {
        gap: 40px;
    }
    
    .video-content {
        padding: 30px;
        gap: 30px;
    }
    
    .video-text h2 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .video-description p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .video-thumbnail {
        height: 250px;
    }
    
    .youtube-icon {
        width: 80px;
        height: 80px;
    }
    
    .benefits-container {
        gap: 30px;
    }
    
    .benefits-title-bold,
    .benefits-title-light {
        font-size: 24px;
        line-height: 32px;
    }
    
    .benefits-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .benefit-box {
        padding: 24px;
    }
    
    .benefit-box p {
        font-size: 18px;
        line-height: 26px;
    }
    
    /* Diferenciais mobile 768px */

    .diferenciais-header {
        width: 100%;
    }

    .diferenciais-content {
        width: 100%;
        padding: 40px 0;
        gap: 40px;
        margin: auto;
    }
    
    .diferenciais-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }
    
    .diferenciais-column:last-child {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .diferenciais-column {
        gap: 16px;
        height: auto;
    }
    
    .diferenciais-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .card-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .card-text {
        font-size: 18px;
        line-height: 26px;
    }
    
    .card-content {
        padding: 24px;
        gap: 16px;
    }
    
    .card-small,
    .card-large,
    .card-medium,
    .card-image {
        min-height: auto;
    }
    
    .card-cta-button {
        padding: 20px;
    }
    
    .card-cta-button p {
        font-size: 20px;
        line-height: 28px;
    }
    
    /* Simulador mobile 768px */

    .simulador-content {
        padding: 80px 0px;
        gap: 30px;
    }
    
    .simulador-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .simulador-texto p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .manchete-texto p {
        font-size: 20px;
        line-height: 28px;
    }
    
    .manchete-content {
        padding: 20px;
        gap: 20px;
    }
    
    .simulador-intro {
        font-size: 18px;
        line-height: 26px;
    }
    
    .form-question {
        font-size: 20px;
        line-height: 28px;
    }
    
    .resultado-titulo,
    .resultado-valor {
        font-size: 20px;
        line-height: 28px;
    }
    
    .resultado-anual p {
        font-size: 20px;
        line-height: 28px;
    }
    
    /* Como Funciona mobile 768px */
    .pratica-content {
        padding: 40px 0px;
        gap: 40px;
    }
    
    .tab-navigation {
        flex-direction: column;
        gap: 8px;
    }
    
    .tab-arrow {
        display: none;
    }
    
    .tab-button {
        width: 100%;
        max-width: 300px;
        padding: 12px 16px;
    }
    
    .tab-button span {
        white-space: normal;
        text-align: center;
    }
    
    .como-funciona-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .como-funciona-subtitle p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .tab-panel p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .economize-header h3 {
        font-size: 20px;
        line-height: 28px;
    }
    
    .economize-card p,
    .economize-footer p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .depoimentos-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .depoimentos-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .depoimento-container {
        padding: 24px;
        border-radius: 24px 8px 24px 8px;
    }
    
    .depoimento-texto p,
    .depoimento-autor {
        font-size: 16px;
        line-height: 24px;
    }
    
    .depoimentos-nav {
        right: 24px;
        bottom: 24px;
    }
    
    .faq-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .faq-columns {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-button span {
        font-size: 20px;
        line-height: 28px;
    }
    
    .faq-content p {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Formulário mobile 768px */
    .formulario-content {
        padding: 40px 0px;
        gap: 30px;
    }
    
    .formulario-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .formulario-texto p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .form-field input {
        padding: 16px;
        font-size: 16px;
        line-height: 22px;
    }
    
    .form-lgpd p {
        font-size: 11px;
        line-height: 16px;
    }
    
    .form-submit {
        padding: 14px 24px;
    }
    
    .form-submit span {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Sobre e Instagram mobile 768px */
    .sobre-instagram-content {
        padding: 60px 0px;
        gap: 40px;
    }
    
    .sobre-titulo {
        font-size: 28px;
        line-height: 36px;
    }
    
    .sobre-texto p,
    .sobre-texto a {
        font-size: 18px;
        line-height: 26px;
    }
    
    .sobre-texto-direita p {
        font-size: 18px;
        line-height: 26px;
    }
    
    .instagram-titulo {
        font-size: 28px;
        line-height: 36px;
    }
    
    .instagram-descricao p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .instagram-posts {
        flex-direction: column;
        gap: 16px;
    }
    
    .instagram-post-placeholder,
    .instagram-post {
        width: 100%;
        max-width: 400px;
        aspect-ratio: 1/1;
    }
    
    .sobre-cta,
    .instagram-cta {
        padding: 14px 24px;
    }
    
    .sobre-cta span,
    .instagram-cta span {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Footer mobile 768px */
    .footer-content {
        padding: 40px 20px;
        gap: 40px;
    }
    
    .footer-titulo {
        font-size: 28px;
        line-height: 36px;
    }
    
    .footer-texto p,
    .footer-email {
        font-size: 16px;
        line-height: 24px;
    }
    
    .logo-positivo {
        height: 50px;
        width: 130px;
    }
    
    .logo-icon {
        width: 42px;
        height: 50px;
    }
    
    .logo-text {
        left: 44px;
        width: 86px;
        height: 50px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {

    .diferencial-card {
        height: auto;
    }

    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .navbar {
        padding: 15px 0;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title h1 {
        font-size: 28px;
        line-height: 36px;
    }
    
    .hero-text p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero-image {
        width: 300px;
        height: 450px;
    }
    
    .hero-icons {
        gap: 20px;
    }
    
    .hero-cta p {
        font-size: 16px;
    }
    
    /* Como Funciona para telas muito pequenas */
    .como-funciona-content {
        gap: 30px;
    }
    
    .video-content {
        padding: 20px;
        gap: 20px;
    }
    
    .video-text h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    .video-description p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .youtube-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefits-title-bold,
    .benefits-title-light {
        font-size: 20px;
        line-height: 28px;
    }
    
    .benefits-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .benefit-box {
        padding: 20px;
    }
    
    .benefit-box p {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Diferenciais para telas muito pequenas 480px */
    .diferenciais-content {
        padding: 40px 0;
        gap: 30px;
    }
    
    .diferenciais-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .card-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .card-text {
        font-size: 16px;
        line-height: 22px;
    }
    
    .card-content {
        padding: 20px;
        gap: 16px;
    }
    
    .card-small,
    .card-large,
    .card-medium,
    .card-image {
        min-height: 250px;
    }
    
    .card-cta-button {
        padding: 16px;
    }
    
    .card-cta-button p {
        font-size: 18px;
        line-height: 24px;
    }
    
    /* Simulador para telas muito pequenas 480px */
    .simulador-content {
        padding: 60px 0px;
        gap: 30px;
    }
    
    .simulador-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .simulador-texto p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .manchete-texto p {
        font-size: 18px;
        line-height: 24px;
    }
    
    .manchete-content {
        padding: 16px;
        gap: 16px;
    }
    
    .simulador-intro {
        font-size: 16px;
        line-height: 22px;
    }
    
    .form-question {
        font-size: 18px;
        line-height: 24px;
    }
    
    .resultado-titulo,
    .resultado-valor {
        font-size: 18px;
        line-height: 24px;
    }
    
    .resultado-anual p {
        font-size: 18px;
        line-height: 24px;
    }
    
    .cta-simulador {
        padding: 12px 24px;
    }
    
    .cta-simulador span {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Como Funciona para telas muito pequenas 480px */
    .pratica-content {
        padding: 40px 0px;
        gap: 30px;
    }
    
    .como-funciona-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .como-funciona-subtitle p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .tab-button {
        padding: 10px 12px;
    }
    
    .tab-button span {
        font-size: 12px;
        line-height: 18px;
    }
    
    .tab-panel p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .economize-header h3 {
        font-size: 18px;
        line-height: 24px;
    }
    
    .economize-card {
        padding: 16px;
    }
    
    .economize-card p,
    .economize-footer p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .depoimentos-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .depoimentos-subtitle {
        font-size: 16px;
        line-height: 22px;
    }
    
    .depoimento-container {
        padding: 16px;
    }
    
    .depoimento-texto p,
    .depoimento-autor {
        font-size: 14px;
        line-height: 20px;
    }
    
    .depoimentos-nav {
        right: 16px;
        bottom: 16px;
    }
    
    .nav-button {
        width: 32px;
        height: 32px;
    }
    
    .faq-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .faq-button {
        padding: 16px;
        gap: 16px;
    }
    
    .faq-button span {
        font-size: 18px;
        line-height: 24px;
    }
    
    .faq-content p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .faq-content.active {
        padding: 12px 16px;
    }
    
    .cta-button-pratica {
        padding: 12px 20px;
    }
    
    .cta-button-pratica span {
        font-size: 16px;
        line-height: 22px;
    }
    
    /* Formulário para telas muito pequenas 480px */
    .formulario-content {
        padding: 30px 0px;
        gap: 20px;
    }
    
    .formulario-title {
        font-size: 24px;
        line-height: 30px;
    }
    
    .formulario-texto p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .formulario-direita {
        width: 100%;
    }
    
    .form-field input {
        padding: 14px;
        font-size: 14px;
        line-height: 20px;
    }
    
    .form-lgpd p {
        font-size: 10px;
        line-height: 14px;
    }
    
    .form-submit {
        padding: 12px 20px;
    }
    
    .form-submit span {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* Sobre e Instagram para telas muito pequenas 480px */
    .sobre-instagram-content {
        padding: 40px 0px;
        gap: 30px;
    }
    
    .sobre-titulo {
        font-size: 24px;
        line-height: 30px;
    }
    
    .sobre-texto p,
    .sobre-texto a {
        font-size: 16px;
        line-height: 22px;
    }
    
    .sobre-texto-direita p {
        font-size: 16px;
        line-height: 22px;
    }
    
    .instagram-titulo {
        font-size: 24px;
        line-height: 30px;
    }
    
    .instagram-descricao p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .instagram-posts {
        gap: 12px;
    }
    
    .sobre-cta,
    .instagram-cta {
        padding: 12px 20px;
    }
    
    .sobre-cta span,
    .instagram-cta span {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* Footer para telas muito pequenas 480px */
    .footer-content {
        padding: 30px 10px;
        gap: 30px;
    }
    
    .footer-titulo {
        font-size: 24px;
        line-height: 30px;
    }
    
    .footer-texto p,
    .footer-email {
        font-size: 14px;
        line-height: 20px;
    }
    
    .logo-positivo {
        height: 40px;
        width: 100px;
    }
    
    .logo-icon {
        width: 33px;
        height: 40px;
    }
    
    .logo-text {
        left: 35px;
        width: 67px;
        height: 40px;
    }
}

/* Espaçamento para o conteúdo principal */
.main-content {
    padding: 40px 0;
}

@media (max-width: 768px) {
    .main-content {
        padding: 20px 0;
    }
}

/* Utilitários */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.py-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Melhorias de acessibilidade */
:focus {
    outline: 2px solid #E15303;
    outline-offset: 2px;
}

.oculta-sim {
    display: none;
}

a {
    text-decoration: none;
}

.form-radio-group {
    margin: 20px 0;
}

.form-radio-group .form-label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.radio-options {
    display: flex;
    gap: 30px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-option input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option input[type="radio"]:checked {
    border-color: #fff;
    background-color: #fff;
}

.radio-option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    border-radius: 25%;
    background: #E15303;
}

.radio-option label {
    color: #fff;
    cursor: pointer;
}

.thank-you-page {
    text-align: center;
    padding: 160px;
    background-color: #f9f9f9;
}

.thank-you-page h3 {
    font-size: 18px;
    color: #555;
}

.thank-you-page .title-orange {
    color: #E15303;
    background: linear-gradient(90deg, #E15303, #E15303);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-page h1 {
    font-family: 'Vinila', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 60px;
    margin: 0;
    margin-bottom: 32px;
}