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

body {
        font-family: "Inter", sans-serif;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
}

.container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
}

/* Hero Section */
.hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background-image: url('img/foto_casal.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        color: white;
        position: relative;
        overflow: hidden;
}

.hero-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 4rem;
        position: relative;
        z-index: 2;
}

.hero-content>* {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
}

.hero-left {
        text-align: left;
}

.hero-left img {
        max-width: 100%;
        height: 100px;
        vertical-align: top;
        margin-bottom: 40px;
}

.hero-right {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: 0;
        padding-top: 0;
        border-radius: 17px;
        background-color: #22222244;

}

.hero-right img {
        max-width: 100%;
        height: auto;
        margin-top: -300px;
        vertical-align: top;
}

@media (max-width: 768px) {
        .hero-right img {
                margin-top: 0;
        }
}

.hero-text h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
}

.gradient-text {
        background: -webkit-gradient(linear, left top, right bottom, from(#ff6b6b), to(#feca57));
        background: -webkit-linear-gradient(315deg, #ff6b6b, #feca57);
        background: -o-linear-gradient(315deg, #ff6b6b, #feca57);
        background: linear-gradient(135deg, #ff6b6b, #feca57);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: #ff6b6b;
}

.hero-text p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
        max-width: 600px;
        text-shadow: 10px -2px 10px rgba(0, 0, 0, 0.639)
}

.hero-buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1rem;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}

.btn {
        padding: 1rem 2rem;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        text-decoration: none;
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 0.5rem;
}

.btn-primary {
        background: -webkit-gradient(linear, left top, right bottom, from(#ff6b6b), to(#feca57));
        background: -webkit-linear-gradient(315deg, #ff6b6b, #feca57);
        background: -o-linear-gradient(315deg, #ff6b6b, #feca57);
        background: linear-gradient(135deg, #ff6b6b, #feca57);
        color: white;
        -webkit-box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
        -webkit-box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
        box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
        background: rgba(255, 255, 255, 0.3);
        -webkit-transform: translateY(-2px);
        -ms-transform: translateY(-2px);
        transform: translateY(-2px);
}

/* 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;
}

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

.slider-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 66.67%;
        /* Proporção 3:2 */
        overflow: hidden;
        /* Fallback para navegadores antigos */
        min-height: 400px;
}

@supports not (padding-bottom: 66.67%) {
        .slider-wrapper {
                height: 500px;
                padding-bottom: 0;
        }
}

.slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        -webkit-transition: opacity 1s ease-in-out;
        -moz-transition: opacity 1s ease-in-out;
        -o-transition: opacity 1s ease-in-out;
        display: block;
        overflow: hidden;
}

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

.slide img {
        display: block;
        border-radius: 12px;
        cursor: pointer;
        transition: transform 0.3s ease;
        -webkit-transition: transform 0.3s ease;
        -moz-transition: transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        /* Fallback para navegadores antigos sem object-fit */
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        max-width: none;
        max-height: none;
}

/* Para navegadores modernos com suporte a object-fit */
@supports (object-fit: cover) {
        .slide img {
                position: static;
                width: 100%;
                height: 100%;
                object-fit: cover;
                -o-object-fit: cover;
                transform: none;
                -webkit-transform: none;
                -moz-transform: none;
                -ms-transform: none;
                -o-transform: none;
                min-width: 0;
                min-height: 0;
                max-width: 100%;
                max-height: 100%;
        }
}

.slide:hover img {
        transform: scale(1.02);
        -webkit-transform: scale(1.02);
        -moz-transform: scale(1.02);
        -ms-transform: scale(1.02);
        -o-transform: scale(1.02);
}

.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;
        z-index: 2;
        pointer-events: none;
}

.slider-container:hover .photo-overlay {
        opacity: 1;
}

.slider-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 3;
        padding: 10px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
}

.slider-indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
}

.slider-indicator.active {
        background: #fff;
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.slider-indicator:hover {
        background: rgba(255, 255, 255, 0.8);
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
}

/* 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;
        }

        .photos-container {
                padding: 3rem 0;
        }

        .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;
        }

        .slider-wrapper {
                padding-bottom: 75%;
                /* Ajuste para mobile */
        }

        .slider-indicators {
                bottom: 15px;
                gap: 6px;
                padding: 8px;
        }

        .slider-indicator {
                width: 8px;
                height: 8px;
        }
}

/* Info Section */
.info-section {
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0;
        padding-bottom: 6rem;
        background-color: #ffffff;
        position: relative;
}

.info-container {
        max-width: 1200px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 3rem;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
}

.info-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 300px;
        flex: 1 1 300px;
        max-width: 350px;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.5rem;
}

.info-image {
        width: 100%;
        height: 250px;
        overflow: hidden;
        border-radius: 15px;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
        display: block;
        cursor: pointer;
        text-decoration: none;
}

.info-image:hover {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
}

.info-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.info-card:hover .info-image img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
}

.info-description {
        padding: 1rem 1rem;
        background: linear-gradient(135deg, #c46b1d 0%, #decd10 100%);
        border-radius: 7rem;
}

.info-description p {
        font-size: 1.4rem;
        line-height: 1.7;
        color: #000000;
        margin: 0;
        font-weight: 900;
}

/* Responsividade Info Section */
@media (max-width: 992px) {
        .info-section {
                padding: 4rem 1.5rem;
        }

        .info-container {
                gap: 2rem;
        }

        .info-card {
                -webkit-box-flex: 1;
                -ms-flex: 1 1 280px;
                flex: 1 1 280px;
        }

        .info-image {
                height: 220px;
        }
}

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

        .info-container {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 2.5rem;
        }

        .info-card {
                max-width: 100%;
        }

        .info-image {
                height: 200px;
        }

        .info-description p {
                font-size: 0.95rem;
        }
}

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

        .info-container {
                gap: 2rem;
        }

        .info-image {
                height: 180px;
        }

        .info-description p {
                font-size: 0.9rem;
                line-height: 1.6;
        }
}

/* Features Section */
.features-section {
        padding: 6rem 2rem;
        background-color: #ffffff;
        position: relative;
}

.features-container {
        max-width: 1200px;
        margin: 0 auto;
}

.features-container h2 {
        text-align: center;
        margin-bottom: 1rem;
}

.features-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 4rem;
}

.features-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 3rem;
        margin-top: 3rem;
}

.features-grid .feature-card {
        width: calc(50% - 1.5rem);
        min-width: 300px;
}

.feature-card {
        background: #ffffff;
        border-radius: 20px;
        overflow: hidden;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        -webkit-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border: 1px solid #f0f0f0;
}

.feature-card:hover {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
        -webkit-box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-image {
        width: 100%;
        height: 280px;
        overflow: hidden;
        position: relative;
}

.feature-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform 0.4s ease;
        transition: -webkit-transform 0.4s ease;
        -o-transition: transform 0.4s ease;
        transition: transform 0.4s ease;
        transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.feature-card:hover .feature-image img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
}

.feature-content {
        padding: 2rem;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
}

.feature-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #c46b1d), to(#decd10));
        background: -webkit-linear-gradient(315deg, #c46b1d 0%, #decd10 100%);
        background: -o-linear-gradient(315deg, #c46b1d 0%, #decd10 100%);
        background: linear-gradient(135deg, #c46b1d 0%, #decd10 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
}

.feature-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #555;
        margin: 0;
}

.features-button-container {
        display: flex;
        justify-content: center;
        margin-top: 4rem;
        padding-bottom: 2rem;
}

.features-button {
        font-size: 1.1rem;
        padding: 1.2rem 3rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 600;
}

/* Responsividade Features Section */
@media (max-width: 992px) {
        .features-grid {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 2rem;
        }

        .features-grid .feature-card {
                width: 100%;
        }

        .features-section {
                padding: 4rem 1.5rem;
        }

        .feature-image {
                height: 250px;
        }
}

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

        .features-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
        }

        .feature-image {
                height: 220px;
        }

        .feature-content {
                padding: 1.5rem;
        }

        .feature-content h3 {
                font-size: 1.3rem;
        }

        .feature-content p {
                font-size: 0.95rem;
        }

        .features-button-container {
                margin-top: 3rem;
        }

        .features-button {
                font-size: 1rem;
                padding: 1rem 2.5rem;
        }
}

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

        .feature-image {
                height: 200px;
        }

        .feature-content {
                padding: 1.2rem;
        }

        .feature-content h3 {
                font-size: 1.2rem;
                margin-bottom: 0.8rem;
        }

        .features-button-container {
                margin-top: 2rem;
                padding-bottom: 1rem;
        }

        .features-button {
                font-size: 0.95rem;
                padding: 0.9rem 2rem;
                width: 100%;
                max-width: 300px;
        }
}

/* Proximity Section */
.proximity-section {
        padding: 6rem 2rem;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #001839), to(#003d6b));
        background: -webkit-linear-gradient(315deg, #001839 0%, #003d6b 100%);
        background: -o-linear-gradient(315deg, #001839 0%, #003d6b 100%);
        background: linear-gradient(135deg, #001839 0%, #003d6b 100%);
        position: relative;
        overflow: hidden;
}

.proximity-container {
        max-width: 1400px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        gap: 3rem;
}

.proximity-content {
        text-align: center;
        color: white;
        max-width: 800px;
}

.proximity-content h2 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #feca57), to(#ffffff));
        background: -webkit-linear-gradient(315deg, #feca57 0%, #ffffff 100%);
        background: -o-linear-gradient(315deg, #feca57 0%, #ffffff 100%);
        background: linear-gradient(135deg, #feca57 0%, #ffffff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
}

.proximity-content p {
        font-size: 1.3rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.9);
}

.proximity-image {
        width: 100%;
        max-width: 1200px;
        border-radius: 20px;
        overflow: hidden;
        -webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        -webkit-transition: -webkit-transform 0.4s ease;
        transition: -webkit-transform 0.4s ease;
        -o-transition: transform 0.4s ease;
        transition: transform 0.4s ease;
        transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.proximity-image:hover {
        -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
        transform: scale(1.02);
}

.proximity-image img {
        width: 100%;
        height: auto;
        display: block;
}

/* Responsividade Proximity Section */
@media (max-width: 992px) {
        .proximity-section {
                padding: 4rem 1.5rem;
        }

        .proximity-content h2 {
                font-size: 2.5rem;
        }

        .proximity-content p {
                font-size: 1.1rem;
        }

        .proximity-container {
                gap: 2rem;
        }
}

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

        .proximity-content h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
        }

        .proximity-content p {
                font-size: 1rem;
                line-height: 1.6;
        }

        .proximity-image {
                border-radius: 15px;
        }
}

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

        .proximity-content h2 {
                font-size: 1.7rem;
        }

        .proximity-content p {
                font-size: 0.95rem;
        }

        .proximity-image {
                border-radius: 10px;
        }
}

/* Location Section */
.location-section {
        padding: 4rem 2rem;
        background-color: #001839;
        color: white;
        position: relative;
}

.location-container {
        max-width: 1200px;
        margin: 0 auto;
}

.location-text {
        margin-bottom: 3rem;
        max-width: 1000px;
}

.location-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
        color: white;
        text-align: left;
}

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

.location-text strong {
        font-weight: 700;
        color: white;
}

.location-cards {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 2rem;
        margin-top: 3rem;
}

.location-cards .location-card {
        width: calc(33.333% - 1.35rem);
        min-width: 280px;
}

.location-card {
        background-color: #d4a574;
        border-radius: 12px;
        overflow: hidden;
        -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
        transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
        -o-transition: transform 0.3s ease, box-shadow 0.3s ease;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.location-card:hover {
        -webkit-transform: translateY(-5px);
        -ms-transform: translateY(-5px);
        transform: translateY(-5px);
        -webkit-box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.card-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        background-color: #c49a6b;
}

.card-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.location-card:hover .card-image img {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
}

.card-content {
        padding: 1.5rem;
        background-color: #d4a574;
}

.card-content h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.8rem;
        color: #001839;
}

.card-content p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #001839;
        margin: 0;
}

/* Responsividade Location Section */
@media (max-width: 992px) {
        .location-cards .location-card {
                width: calc(50% - 0.75rem);
        }
}

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

        .location-text {
                margin-bottom: 2rem;
        }

        .location-text p {
                font-size: 1rem;
                line-height: 1.7;
        }

        .location-cards {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 1.5rem;
                margin-top: 2rem;
        }

        .location-cards .location-card {
                width: 100%;
        }

        .card-image {
                height: 180px;
        }

        .card-content {
                padding: 1.2rem;
        }

        .card-content h3 {
                font-size: 1.2rem;
        }

        .card-content p {
                font-size: 0.9rem;
        }
}

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

        .location-text p {
                font-size: 0.95rem;
        }

        .card-image {
                height: 150px;
        }

        .card-content {
                padding: 1rem;
        }
}

/* About Section */
.about {
        padding: 4rem 0;
        background: white;
}

.about-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 4rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
}

.about-content>* {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 400px;
        flex: 1 1 400px;
}

.about-text h2,
.tiulo1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #c46b1d), to(#decd10));
        background: -webkit-linear-gradient(315deg, #c46b1d 0%, #decd10 100%);
        background: -o-linear-gradient(315deg, #c46b1d 0%, #decd10 100%);
        background: linear-gradient(135deg, #c46b1d 0%, #decd10 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
}

.about-text p {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.8;
        text-align: justify;
}

.stats {
        display: flex;
        gap: 2rem;
        flex-wrap: wrap;
}

.stat {
        text-align: center;
}

.stat h3 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #ff6b6b, #feca57);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
}

.stat p {
        color: #667;
        font-weight: 500;
}

.about-image {
        display: flex;
        justify-content: center;
        align-items: center;
}

.about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(255, 221, 120, 0.3);
        transition: transform 0.3s ease;
}

.about-image img:hover {
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
}

.image-placeholder {
        width: 300px;
        height: 300px;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #667eea), to(#764ba2));
        background: -webkit-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
        background: -o-linear-gradient(315deg, #667eea 0%, #764ba2 100%);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 20px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.image-placeholder i {
        font-size: 4rem;
        color: white;
}

/* Responsividade da seção About */
@media (max-width: 1024px) {
        .about {
                padding: 3rem 0;
        }

        .about-content {
                gap: 3rem;
        }

        .about-text h2 {
                font-size: 2.2rem;
        }

        .about-text p {
                font-size: 1rem;
        }
}

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

        .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
        }

        .about-text {
                order: 1;
        }

        .about-image {
                order: 2;
        }

        .about-text h2 {
                font-size: 2rem;
        }

        .about-text p {
                font-size: 1rem;
                text-align: center;
        }

        .about-image img {
                max-width: 80%;
        }
}

@media (max-width: 480px) {
        .about {
                padding: 2rem 1rem;
        }

        .about-content {
                gap: 1.5rem;
        }

        .about-text h2 {
                font-size: 1.8rem;
                margin-bottom: 1rem;
        }

        .about-text p {
                font-size: 0.95rem;
                line-height: 1.6;
        }

        .about-image img {
                max-width: 100%;
        }
}

/* Contact Section */
.contact {
        padding: 6rem 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
}

/* Seletores de Classe */
.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;
}

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

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

.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-logo {
        max-width: 100%;
        height: 100%;
        opacity: 0.8
}

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

.play-button:hover {
        transform: translate(-50%, -50%) scale(1.1);
        -webkit-transform: translate(-50%, -50%) scale(1.1);
        -moz-transform: translate(-50%, -50%) scale(1.1);
        -ms-transform: translate(-50%, -50%) scale(1.1);
        -o-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;
}

/* Seletores de ID */
#comprar-imovel {
        text-align: center;
        height: 50px;
}

/* Seletores de Elemento dentro das Classes */
.white-section h2 {
        color: #001839;
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
}

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

/* Regras de Mídia (Responsividade) */
@media (max-width: 768px) {
        .white-section {
                padding: 3rem 0;
        }

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

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

        .video-container {
                margin: 2rem auto 1.5rem;
        }

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

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

.section-header {
        text-align: center;
        margin-bottom: 4rem;
}

.section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: white;
}

.section-header p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto;
}

.contact-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-top: 3rem;
}

.contact-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
}

.contact-item i {
        font-size: 1.5rem;
        color: #feca57;
        width: 50px;
        text-align: center;
}

.contact-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
}

.contact-item p {
        opacity: 0.9;
}

.contact-form {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
        margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
        width: 100%;
        padding: 1rem;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
        color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
        outline: none;
        border-color: #feca57;
        background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
        background: #1a1a1a;
        color: white;
        padding: 3rem 0 1rem;
}

.footer-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 3rem;
        margin-bottom: 2rem;
}

.footer-content>* {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 200px;
        flex: 1 1 200px;
}

.footer-brand h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
}

.footer-brand p {
        color: #ccc;
        line-height: 1.6;
}

.footer-links h4,
.footer-social h4 {
        margin-bottom: 1rem;
        color: white;
}

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

.footer-links li {
        margin-bottom: 0.5rem;
}

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

.footer-links a:hover {
        color: #667eea;
}

.social-links {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 1rem;
}

.social-links a {
        width: 40px;
        height: 40px;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #524b00), to(#cfcc43));
        background: -webkit-linear-gradient(315deg, #524b00 0%, #cfcc43 100%);
        background: -o-linear-gradient(315deg, #524b00 0%, #cfcc43 100%);
        background: linear-gradient(135deg, #524b00 0%, #cfcc43 100%);
        border-radius: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        -webkit-transition: -webkit-transform 0.3s ease;
        transition: -webkit-transform 0.3s ease;
        -o-transition: transform 0.3s ease;
        transition: transform 0.3s ease;
        transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.social-links a:hover {
        -webkit-transform: translateY(-3px);
        -ms-transform: translateY(-3px);
        transform: translateY(-3px);
}

.footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #333;
        color: #ccc;
}

/* Seção do Formulário */
.form-section {
        /* Cor de fundo da seção (Verde) */
        padding: 4rem 0;
        /* Espaçamento interno superior e inferior */
        position: relative;
        z-index: 1;
        /* Garante que fique acima de outros elementos com z-index menor */
        overflow: hidden;
}

.form-section::before {
        content: '';
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        background: url('img/casal.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        filter: blur(2px);
        z-index: -2;
}

.form-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(0, 28, 45, 0.902)), to(rgba(2, 125, 139, 0.85)));
        background: -webkit-linear-gradient(315deg, rgba(0, 28, 45, 0.902) 0%, rgba(2, 125, 139, 0.85) 100%);
        background: -o-linear-gradient(315deg, rgba(0, 28, 45, 0.902) 0%, rgba(2, 125, 139, 0.85) 100%);
        background: linear-gradient(135deg, rgba(0, 28, 45, 0.902) 0%, rgba(2, 125, 139, 0.85) 100%);
        z-index: -1;
}

.form-container {
        max-width: 900px;
        /* Largura máxima do contêiner do formulário */
        margin: 0 auto;
        /* Centraliza o contêiner horizontalmente */
        padding: 3rem;
        /* Espaçamento interno dentro do contêiner */
        background-color: #fff;
        /* Cor de fundo do contêiner (Branco) */
        border-radius: 20px;
        /* Bordas arredondadas */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        /* Sombra para destaque */
}

.form-container h2 {
        text-align: center;
        /* Centraliza o título */
        font-size: 2rem;
        color: #333;
        margin-bottom: 1rem;
        line-height: 1.3;
}

.form-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 0.3rem;
}

.form-grid .form-group {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 calc(50% - 0.4rem);
        flex: 1 1 calc(50% - 0.4rem);
        min-width: 250px;
}

.form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0.3rem;
}

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

.form-group input,
.form-group select {
        padding: 0.8rem;
        border: 1px solid #ddd;
        /* Borda leve e sutil */
        border-radius: 8px;
        /* Bordas arredondadas para os campos */
        font-size: 1rem;
        color: #555;
}

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

.form-footer {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1rem;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
}

.privacy-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
        -ms-flex-align: start;
        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;
        /* Cor do link de privacidade (Verde) */
        text-decoration: none;
}

.privacy-link:hover {
        text-decoration: underline;
        /* Sublinhado ao passar o mouse */
}

.submit-button {
        background-color: #fea845;
        /* Cor de fundo do botão (Laranja/Amarelo) */
        color: white;
        border: none;
        padding: 1rem 2.5rem;
        border-radius: 25px;
        /* Botão arredondado */
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
}

.submit-button:hover {
        background-color: #008c44;
        /* Cor de fundo do botão ao passar o mouse (Verde escuro) */
}

/* Responsividade para Formulário */
@media (max-width: 768px) {
        .form-container {
                padding: 2rem 1.5rem;
                /* Reduz o padding em telas menores */
                margin: 0 1rem;
                /* Adiciona margem lateral para evitar grudar nas bordas */
        }

        .form-container h2 {
                font-size: 1.5rem;
                /* Reduz o tamanho do título */
        }

        .form-grid {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                gap: 1rem;
        }

        .form-grid .form-group {
                width: 100%;
                min-width: 0;
        }

        .privacy-check {
                font-size: 0.8rem;
                /* Reduz o tamanho da fonte */
        }
}

/* Responsive Design */
@media (max-width: 768px) {

        .hero {
                min-height: 100vh;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                background-image: url('img/foto_casal.webp');
                background-size: cover;
                background-position: 60%;
        }

        .hero-content {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                text-align: center;
                gap: 2rem;
        }

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

        .hero-text h1 {
                font-size: 2.5rem;
        }

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

        .about-content {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                text-align: center;
        }

        .contact-content {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
        }

        .footer-content {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                text-align: center;
        }

        .stats {
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
        }
}

@media (max-width: 495px) {

        .hero {
                min-height: 100vh;
                display: flex;
                align-items: center;
                background-image: url('img/casal_story.webp');
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                color: white;
                position: relative;
                overflow: hidden;
        }

        .hero-text h1 {
                font-size: 2rem;
        }

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

        .hero-buttons {
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
        }

        .btn {
                width: 100%;
                max-width: 300px;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
        }

        .footer-social {
                width: 100%;
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-orient: vertical;
                -webkit-box-direction: normal;
                -ms-flex-direction: column;
                flex-direction: column;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
        }

        .social-links {
                justify-content: center;

        }
}

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

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