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

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 5;
    height: 4.7rem;
    gap: 1rem;
    box-sizing: border-box;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.09);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: auto;
}

.logo img {
    max-width: 100px;
    height: auto;
}

.nav-menu {
    position: fixed;
    top: 4.7rem; /* Altura do header */
    left: -300px; /* Largura do menu quando fechado */
    width: 300px; /* Largura do menu quando aberto */
    height: auto; /* Altura automática baseada no conteúdo */
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    transition: all .3s ease-in-out;
    z-index: 2;
    padding: 1rem;
    border-radius: 0 0 12px 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    left: 0;
}

nav ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1rem;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    width: 100%;
}

nav a {
    color: #1f1f1f !important;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.5rem 0;
    display: block;
    width: 100%;
}

nav a:hover {
    color: #FFA500 !important;
    background-color: rgba(255, 165, 0, 0.1);
    border-radius: 4px;
    padding-left: 0.5rem;
}

.menu-btn {
    display: flex;
    cursor: pointer;
    width: 35px;
    height: 35px;
    position: relative;
    z-index: 5;
    margin: 0;
}

.menu-btn__burger {
    width: 100%;
    height: 100%;
    background-image: url('img/menu-hamburguer.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all .3s ease-in-out;
    z-index: 6;
}

/* Animação do Menu */
.menu-btn.open .menu-btn__burger {
    transform: rotate(90deg);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 27, 57, 0.688);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.logo-mrv-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 4rem;
}

.span1-h1 {
    font-size: 3rem;
}

.demo-btn:hover {
    background-color: #b08f68;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .span1-h1 {
        font-size: 2rem;
    }
}

.white-section {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    padding: 5rem 0;
    text-align: center;
}

.white-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    margin-top: 40px;
}

.white-section h2 {
    color: #001839;
    font-size: 2.5rem;
    margin-bottom: 8px;
    font-weight: 600;
    font-family:Arial, Helvetica, sans-serif;
}

.white-section p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .white-section {
        padding: 3rem 0;
    }

    .white-section h2 {
        font-size: 2rem;
    }

    .white-section p {
        font-size: 1rem;
    }
}

.video-container {
    max-width: 1000px;
    margin: 3rem auto 2rem;
    padding: 0 1rem;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    background-color: #2f2f2fb7;
    border-radius: 2rem;
    padding-top: 56.25%;
    overflow: hidden;
    border: 3px solid #fea845;
}

.video-logo {
    max-width: 100%;
    height: 100%;
    opacity: 0.8
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.cta-button {
    background-color: #fea845;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #feb868;
}

#comprar-imovel {
    background-color: #fea845;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    width: 50%;
}

@media (max-width: 768px) {
    .video-container {
        margin: 2rem auto 1.5rem;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.description-section {
    background-color: #fff;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.description-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 68% 32%;
    gap: 3rem;
}

.left-content h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.left-content p {
    color: #555;
    line-height: 1.3rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlight {
    color: #000000;
    font-weight: 600;
}

.finance-button {
    background-color: #00A651;
    font-weight: 700;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.finance-button:hover {
    background-color: #008c44;
}

.right-content {
    padding-left: 2rem;
}

.right-content h3 {
    color: #525151e5;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item img {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.feature-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.exclusive-conditions {
    margin-top: 3rem;
}

.exclusive-conditions h3 {
    margin-bottom: 1rem;
}

.feira-img {
    max-width: 150px;
    margin-top: 1rem;
}

@media (max-width: 968px) {
    .description-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 2rem;
    }

    .right-content {
        padding-left: 0;
        padding-top: 2rem;
        border-top: 1px solid #eee;
        border-left: none;
    }
}

@media (max-width: 768px) {
    .description-section {
        padding: 2rem 0;
    }

    .left-content h2 {
        font-size: 2rem;
    }

    .finance-button {
        width: 100%;
        padding: 1rem;
    }
}

.gallery-section {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.gallery-description {
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2;
}

.slider-button.prev {
    left: 20px;
}

.slider-button.next {
    right: 20px;
}

.slider-button:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-button svg {
    fill: #333;
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 3rem 0;
    }

    .gallery-container h2 {
        font-size: 2rem;
    }

    .gallery-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .slider-container {
        height: 400px;
    }

    .slider-button {
        width: 40px;
        height: 40px;
    }

    .slider-button.prev {
        left: 10px;
    }

    .slider-button.next {
        right: 10px;
    }
}

/* Seção de Fotos */
.photos-section {
    padding: 4rem 2rem;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.photos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photos-container h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 2rem;
}

.gallery {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.main-photo {
    display: block;
    width: 100%;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-photo:hover .photo-overlay {
    opacity: 1;
}

.main-photo:hover img {
    transform: scale(1.02);
}

.hidden-photos {
    display: none;
}

/* Responsividade */
@media (max-width: 1200px) {
    .photos-container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .photos-container h2 {
        font-size: 2rem;
    }

    .gallery {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .photos-section {
        padding: 3rem 1rem;
    }

    .photos-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .gallery {
        max-width: 100%;
    }

    .photo-overlay {
        padding: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .photos-section {
        padding: 2rem 1rem;
    }

    .photos-container h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .photo-overlay {
        padding: 10px;
        font-size: 0.9rem;
    }

    .gallery a:first-child:hover img {
        transform: none;
        /* Desativa o efeito hover em dispositivos móveis */
    }
}

.photos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.photos-container p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .photos-container {
        padding: 3rem 0;
    }

    .photos-container h2 {
        font-size: 2rem;
    }

    .photos-container p {
        font-size: 1rem;
    }
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    max-width: 100%;
    grid-column: 3 / 3;
}

.photo-grid {
    display: grid;
    grid-template-columns: 3fr 3fr;
    grid-template-rows: 3fr 3fr;
    gap: 1rem;
    padding: 3rem;
    justify-items: center;
    align-items: center;
    justify-content: center;
    align-content: center;
    justify-self: center;
    align-self: center;
    justify-content: center;
    align-content: center;
}

.diferenciais-section {
    background-color: #fff;
    padding: 0;
    position: relative;
    z-index: 2;
}

.diferenciais-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    text-align: center;
}

.diferenciais-container h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.diferenciais-description {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.diferenciais-grid,
.diferenciais-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.diferenciais-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}

.diferenciais-grid-2.active {
    opacity: 1;
    transform: translateY(0);
}

.diferencial-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.diferencial-item:hover {
    transform: translateY(-5px);
}

.diferencial-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    max-width: 100%;
}

.diferencial-item h3 {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

.veja-mais-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: #00A651;
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin: auto auto;
    transition: all 0.3s ease;
}

.veja-mais-btn:hover {
    color: #008c44;
}

.veja-mais-btn-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.veja-mais-btn i {
    transition: transform 0.3s ease;
}

.for-who {
    background: #ffffff;
    padding: 5rem 2rem;
}

.for-who-content {
    max-width: 1200px;
    margin: 0 auto;
}

.for-who h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

.benefits-container {
    display: flex;
    gap: 4rem;
    justify-content: space-between;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefits-list h2,
.highlight-h2 {
    font-size: 2.6rem !important;
    font-weight: 900;
    line-height: 1;
    text-transform: none;
    text-align: left;
    font-variant: normal;
    letter-spacing: normal;
    margin-bottom: 1rem;
}

/* Removendo qualquer estilo que possa estar afetando */
.highlight {
    text-transform: none;
    font-variant: normal;
    letter-spacing: normal;
}

.benefits-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.benefits-list-item p {
    color: #343434;
    font-size: 1.15rem;
    line-height: 1.4;
    margin: 0;
}

.cta-button:hover {
    transform: scale(1.02);
}

/* Responsividade */
@media (max-width: 768px) {
    .benefits-list h2 {
        font-size: 2.5rem;
    }

    .benefits-list-item p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .benefits-list h2 {
        font-size: 2rem;
    }

    .benefits-list-item p {
        font-size: 1rem;
    }

    .benefit {
        margin-left: 0;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-top: -3rem !important;
    }

    #modificarcta1 {
        height: 60px !important;
        width: 100%;
        z-index: 4;
        margin-bottom: 2rem;
    }
}

.cta-button-largo{
    background:transparent;
    border: none;
}

.botao10:hover{
    color: #798c00;
}

.notifications-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
}

.notification {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.notification img {
    width: 2.5rem;
    height: 2.5rem;
}

.notification p:first-child {
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.notification p:last-child {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-button.green {
    background: #48ffbd;
    width: 100%;
    margin-top: 2rem;
}

/* Seção Por Que Escolher */
.why-choose {
    padding: 5rem 2rem;
    background: #fff;
}

.why-choose h2 {
    text-align: center;
    color: #1a1a1a;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.benefits-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1;
    padding: 2rem;
    border-radius: 1rem;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.127);
}

.benefit-card.dark {
    background: #fea845;
    color: white;
}

.benefit-card.light {
    background: white;
    color: #1a1a1a;
    border: 1px solid #e5e5e5;
}

.benefit-card.green {
    background: #03a551;
    color: white;
}

.icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.quality-icon {
    width: 40px;
    /* Ajuste conforme necessário */
    height: 40px;
    /* Ajuste conforme necessário */
    object-fit: contain;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-top: -3.5rem;
}

.icon-circle.mint {
    background: #3ac67e;
    align-items: center;
    padding-top: 1rem;
}

.icon-circle.dark {
    background: #1a1a1a;
    padding-top: 1rem;
}

.icon-circle svg {
    width: 40px;
    height: 40px;
    stroke: #1a1a1a;
}

.icon-circle.dark svg {
    stroke: #48ffbd;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
}

.text-container {
    max-width: 650px;
}

.explanation-text {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: center;
}

.explanation-text:last-child {
    margin-bottom: 0;
}

/* Efeito de gradiente na borda */
.content-wrapper::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #48ffbd, transparent);
    z-index: -1;
    border-radius: 1.1rem;
    opacity: 0.5;
}

/* Seção de Depoimentos */
.testimonials {
    padding: 4rem 2rem;
    background: #fff;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-header h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.testimonials-header p {
    font-size: 1.2rem;
    color: #666;
}

.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.101);
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #00a653;
    margin-bottom: 1rem;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.testimonial-card p {
    color: #667;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.rating {
    color: #e0b313;
    font-size: 1.2rem;
}

/* Seção de Imagem Depoimentos */
.video-testimonials {
    position: relative;
    background:rgba(254, 168, 69, 0.953);
    padding: 4rem 0;
    text-align: center;
}

/* Efeito de blur */
.video-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(8px);
    /* Ajuste o valor para mais ou menos blur */
    -webkit-backdrop-filter: blur(8px);
    /* Para suporte Safari */
    z-index: 1;
}

/* Garantir que o conteúdo fique acima do blur */
.video-testimonials>* {
    position: relative;
    z-index: 2;
}

.video-testimonials h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.video-testimonials .subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    width:95%;
}

.video-grid {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.video-card {
    width: 320px;
    height: 180px;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

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

/* Responsividade */
@media (max-width: 1024px) {
    .video-card {
        width: 280px;
        height: 158px;
    }
}

@media (max-width: 768px) {
    .video-testimonials h2 {
        font-size: 2rem;
    }

    .video-grid {
        gap: 1rem;
    }

    .video-row {
        gap: 1rem;
    }

    .video-card {
        width: 100%;
        max-width: 320px;
    }

    .video-player {
        padding: 10px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button svg {
        width: 48px;
        height: 48px;
    }
}

/* Responsividade */
@media (max-width: 968px) {
    .hero {
        width: 80%;
    }

    .benefits-container {
        flex-direction: column;
    }

    .notifications-container {
        max-width: 100%;
    }

    .for-who h2 {
        font-size: 2.5rem;
    }

    .benefits-cards {
        flex-direction: column;
        padding: 0 1rem;
    }

    .benefit-card {
        margin-top: 3rem;
    }

    .why-choose {
        padding: 3rem 1rem;
    }

    .why-choose h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        width: 90%;
        padding: 1.5rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .notification {
        position: static;
        margin-bottom: 1rem;
    }

    .modules {
        padding: 0.5rem;
    }

    .modules p {
        text-align: center;
        font-size: 1rem;
        padding: 0 !important;
    }

    .will-it-work {
        padding: 2rem 1rem;
    }

    .content-wrapper {
        padding: 1rem;
    }

    .benefits-list h2,
    .highlight-h2 {
        font-size: 2.2rem !important;
    }

    .explanation-text {
        font-size: 1rem;
        line-height: 1.5;
    }

    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials-header h2 {
        font-size: 2rem;
    }

    .testimonial-card {
        width: 100%;
        max-width: 300px;
    }

    .testimonial-row {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        width: 95%;
        padding: 1rem;
        padding-top: 1rem !important;
    }

    .section-header h2 {
        font-size: 2.5rem !important;
        margin-top: 2rem !important;
    }

    .modules h2 {
        margin-top: 3rem !important;
    }

    .module-card {
        width: 200px;
    }
}

/* Nova seção de Fotos dos Apartamentos */
.apartments {
    padding: 4rem 2rem;
    background: #1a1a1a;
    /* Adicionando margem negativa para criar transição suave entre seções */
    margin-top: -1px;
}

.section-title {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    color: white;
    transition: transform 0.3s ease;
    height: 300px;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* Swiper Styles */
.swiper {
    display: none;
    width: 100%;
    padding-bottom: 3rem;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .gallery-grid {
        display: none;
    }

    .swiper {
        display: block;
    }
}

/* Seção FAQ */
.faq {
    padding: 4rem 2rem;
    background: #fff;
    text-align: center;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.faq .subtitle {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding-bottom: 3rem;
    padding-top: 1rem;
    color: #667;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 0.5rem;
    background: #f8f8f8;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: initial;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.arrow {
    font-size: 1.5rem;
    color: black;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: #667;
    line-height: 1.6;
}

/* Classes ativas */
.faq-item.active .faq-question {
    background: #fea845;
}

.faq-item.active .faq-question h3 {
    color: #1a1a1a;
}

.faq-item.active .arrow {
    transform: rotate(90deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.benefits-wrapper {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 2rem;
}

.benefits-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Responsividade */
@media (max-width: 1024px) {
    .benefits-wrapper {
        padding: 3rem 1.5rem;
        gap: 3rem;
    }

    .image-container {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 0.5rem 1rem;
    }

    .benefits-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .benefits-container {
        width: 100%;
        max-width: 500px;
    }

    .benefits-list {
        align-items: center;
        width: 100%;
    }

    .benefits-list-item {
        justify-content: center;
        text-align: center;
        width: 100%;
    }

    .benefits-list h2,
    .highlight-h2 {
        text-align: center !important;
    }

    .image-container {
        width: 100%;
        max-width: 500px;
        margin: 2rem auto 0;
    }
}

/* Ajustes adicionais para telas muito pequenas */
@media (max-width: 480px) {
    .benefits-wrapper {
        padding: 1rem 0.5rem;
    }

    .benefits-wrapper p {
        text-align: start;
    }

    .benefits-list-item {
        padding: 0 1rem;
    }
}

.image-container {
    flex: 1;
    border-radius: 1rem;
    overflow: hidden;
    height: 600px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

/* Responsividade */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 1rem;
    }

    .faq h2 {
        font-size: 2rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}

.form-section {
    background-color: #00A651;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 1rem;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #555;
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #999;
}

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.privacy-check input[type="checkbox"] {
    margin-top: 0.2rem;
}

.privacy-link {
    color: #00A651;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

.submit-button {
    background-color: #fea845;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #008c44;
}

@media (max-width: 768px) {
    .form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .form-container h2 {
        font-size: 1.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .privacy-check {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background-color: #001839;
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #00A651;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-links i {
    color: #00A651;
    margin-top: 0.3rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00A651;
}

.map-container {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-column {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        align-items: center;
        text-align: center;
    }

    .footer-links li {
        justify-content: center;
    }

    .map-column {
        grid-column: auto;
    }
}

.whats {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 58px;
    z-index: 2;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.whats:hover {
    transform: scale(1.20);
}

/* Responsividade */
@media (max-width: 992px) {
    .diferenciais-grid,
    .diferenciais-grid-2 {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .diferenciais-container h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .diferenciais-grid,
    .diferenciais-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .diferenciais-container h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .diferenciais-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .diferencial-item img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .diferenciais-grid,
    .diferenciais-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        /* Mantendo 2 colunas */
        gap: 1rem;
    }

    .diferenciais-container {
        padding: 0 2rem 2rem;
    }

    .diferencial-item {
        text-align: center;
    }

    .diferencial-item img {
        width: 40px;
        height: 40px;
    }

    .diferencial-item h3 {
        font-size: 0.85rem;
    }
}

.captcha-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.captcha-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.captcha-item input[type="checkbox"] {
    margin-top: 0.3rem;
}

.captcha-item label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .captcha-item label {
        font-size: 0.85rem;
    }
}

.thank-you-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background-color: #f8f8f8;
}

.success-icon {
    width: 80px;
    margin-bottom: 2rem;
}

.back-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #00A651;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    margin-top: 2rem;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #008c44;
}

/* Seção de Fotos */
.main-photo {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.main-photo img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.main-photo:hover .photo-overlay {
    opacity: 1;
}

.main-photo:hover img {
    transform: scale(1.02);
}

.hidden-photos {
    display: none;
}

.gallery {
    display: flex;
    gap: 10px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.gallery a {
    display: none;
    /* Esconde todas as imagens exceto a primeira */
}

.gallery a:first-child {
    display: block;
    width: 100%;
    position: relative;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 12px 12px;
}

.gallery a:first-child:hover .photo-overlay {
    opacity: 1;
}

.gallery a:first-child:hover img {
    transform: scale(1.02);
}