:root {
    --primary-dark: #1d2839;
    --primary-accent: #ffffff;
    --secondary-gray: #626a76;
    --text-dark: #111111;
    --text-muted: #555555;
    --font-serif: 'Baskerville', 'Playfair Display', serif;
    --font-sans: 'ProximaNova', 'Lato', sans-serif;
    --font-script: 'BehindNineties', cursive
}

@font-face {
    font-family: Baskerville;
    src: local('Baskerville'), local('Baskerville-Regular');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Baskerville;
    src: url('../assets/fonts/Baskerville-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap
}

@font-face {
    font-family: BehindNineties;
    src: url('../assets/fonts/BehindNineties.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: ProximaNova;
    src: url('../assets/fonts/ProximaNova-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: ProximaNova;
    src: url('../assets/fonts/ProximaNova-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

body {
    font-family: var(--font-sans);
    color: #333;
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif)
}

a {
    text-decoration: none
}

.font-serif {
    font-family: var(--font-serif)
}

.font-sans {
    font-family: var(--font-sans)
}

.text-primary-dark {
    color: var(--primary-dark)
}

.text-accent {
    color: var(--primary-accent)
}

.section-title {
    font-family: var(--font-serif);
    color: #fff
}

.section-subtitle {
    font-family: var(--font-sans);
    font-weight: 400;
    color: #fff
}

.navbar {
    background: 0 0;
    padding: 20px 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, .5)
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")
}

.nav-capsule {
    background: rgba(230, 235, 240, .7);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto
}

.nav-link {
    font-family: var(--font-sans);
    font-size: .85rem;
    font-weight: 400;
    color: #444 !important;
    padding: 8px 25px !important;
    border-radius: 30px;
    transition: all .3s ease;
    margin: 0 2px
}

.nav-link.active-pill {
    background-color: #fff;
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .05)
}

.navbar-brand .brand-logo-img {
    max-height: 80px;
    width: auto;
    object-fit: contain
}

.btn-contact {
    font-family: var(--font-sans);
    background-color: #fff;
    color: #000;
    border-radius: 50px;
    padding: 10px 40px;
    font-size: .9rem;
    font-weight: 400;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .1);
    transition: all .3s ease
}

.btn-contact:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15)
}

.btn-intro-custom {
    font-family: var(--font-sans);
    background-color: var(--primary-dark);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 50px;
    border-radius: 10px;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    text-align: center;
}

.btn-intro-custom:hover {
    background-color: #2c3646;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .25)
}

.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .32);
    z-index: 0
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    line-height: 1
}

.hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    font-weight: 400;
    margin-top: -10px;
    margin-bottom: 30px
}

.hero-price-pill {
    display: inline-flex;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    margin-bottom: 20px
}

.pill-label,
.pill-value {
    padding: 15px 30px;
    font-weight: 700;
    font-size: 2rem;
    font-family: var(--font-sans);
    display: flex;
    align-items: center
}

.pill-label {
    background: #fff;
    color: #111
}

.pill-value {
    background: var(--primary-dark);
    color: #fff
}

.hero-footer-text {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 5px rgba(0, 0, 0, .5);
    letter-spacing: .5px
}

.intro-section {
    padding: 80px 0;
    text-align: center
}

.intro-section p {
    font-family: var(--font-sans);
    font-size: 1.8rem;
    font-weight: 400;
    color: #111;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.3
}

.curved-section-benefits {
    background-color: var(--primary-dark);
    color: #fff;
    border-top-right-radius: 10rem;
    border-bottom-left-radius: 10rem;
    padding: 150px 120px;
    position: relative;
    margin-bottom: 50px
}

.curved-section-benefits h2 {
    font-family: var(--font-serif)
}

.benefit-card-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px
}

.benefit-text-box {
    background-color: var(--secondary-gray);
    border-radius: 12px;
    padding: 25px 25px 25px 60px;
    width: 100%;
    min-height: 110px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1)
}

.benefit-text-box h5 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: .95rem;
    margin: 0;
    line-height: 1.5;
    color: #fff
}

.benefit-icon-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border: 1px solid #fff;
    border-radius: 12px;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .2)
}

.benefit-icon-box i {
    font-size: 2rem;
    color: #fff
}

.benefit-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.testimonials-section {
    background: url('../assets/img/testimonials-bg.webp');
    background-size: cover;
    background-position: center;
    padding: 100px 0 120px;
    position: relative
}

.testimonials-overlay {
    background: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.testimonials-section h2 {
    font-family: var(--font-serif)
}

.testimonials-section p.fs-5 {
    font-family: var(--font-sans);
    font-weight: 400
}

.google-rating-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, .95);
    padding: 14px 28px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15)
}

.google-rating-info {
    display: flex;
    flex-direction: column;
    gap: 2px
}

.google-rating-stars {
    display: flex;
    align-items: center;
    gap: 6px
}

.google-rating-number {
    font-weight: 700;
    font-size: 1.3rem;
    color: #111
}

.stars-row {
    display: flex;
    gap: 1px
}

.google-rating-count {
    font-size: .75rem;
    color: #666;
    font-family: var(--font-sans)
}

.review-stars {
    display: flex;
    gap: 1px;
    margin-top: 2px
}

.google-icon-small {
    opacity: .7;
    flex-shrink: 0
}

.swiper {
    width: 100%;
    padding-bottom: 50px
}

.swiper-wrapper {
    align-items: stretch
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column
}

.testimonial-card-new {
    background: #fff;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    position: relative;
    border-radius: 2px
}

.testimonio-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px
}

.user-info {
    display: flex;
    align-items: center
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1)
}

.user-avatar-initials {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 2px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-sans);
    flex-shrink: 0
}

.user-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #000;
    line-height: 1.2
}

.quote-icon-large {
    font-size: 3rem;
    color: #111;
    line-height: 1;
    font-family: serif
}

.testimonio-text {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: .95rem;
    color: #555;
    line-height: 1.6;
    text-align: left
}

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

.faq-section h2 {
    font-family: var(--font-serif)
}

.faq-section p {
    font-family: var(--font-sans);
    font-weight: 700
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e0e0e0
}

.accordion-button {
    font-family: var(--font-sans);
    font-size: .95rem;
    font-weight: 700;
    color: #444 !important;
    text-transform: uppercase;
    padding: 25px 0;
    background-color: transparent !important;
    box-shadow: none !important
}

.accordion-button:not(.collapsed) {
    color: #000 !important
}

.accordion-button::after {
    filter: grayscale(100%);
    opacity: .5;
    transform: scale(.8)
}

.accordion-body {
    font-family: var(--font-sans);
    font-weight: 400;
    padding: 0 0 25px 0;
    font-size: .95rem;
    line-height: 1.6;
    color: #333
}

footer {
    background-color: var(--primary-dark);
    color: #fff;
    border-top-right-radius: 12rem;
    border-top-left-radius: 0;
    padding: 80px 0 60px;
    margin-top: 50px
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%
}

.footer-col-title {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.6rem;
    margin-bottom: 25px;
    font-weight: 400
}

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

.footer-links li {
    margin-bottom: 15px
}

.footer-links .d-flex.text-white,
.footer-links a,
.social-link {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: .95rem;
    color: #fff;
    text-decoration: none
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px
}

.footer-links a:hover {
    opacity: .7
}

.social-link i {
    font-size: 1.2rem
}

.page-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center
}

.page-hero.tour-hero {
    height: 45vh;
    min-height: 300px;
    padding-top: 60px
}

.tour-subtitle {
    font-family: var(--font-sans);
    font-size: .85rem;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, .75);
    margin: 10px 0 0;
    font-weight: 300
}


.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
    z-index: 1
}

.page-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -250px
}

.page-hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    line-height: 1
}

.page-hero-subtitle-script {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    margin-top: -10px
}

.nosotros-collage-section {
    position: relative;
    margin-top: -360px;
    z-index: 3;
    padding-bottom: 60px
}

.collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    grid-template-rows: 280px 300px auto;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px
}

.collage-text-left {
    grid-column: 1/2;
    grid-row: 1/2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    padding-right: 10px
}

.collage-conoce {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4)
}

.collage-privanza {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .4)
}

.collage-img-top-center {
    grid-column: 2/3;
    grid-row: 1/2
}

.collage-img-top-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

.collage-img-top-right {
    grid-column: 3/4;
    grid-row: 1/3
}

.collage-img-top-right img {
    width: 100%;
    height: 76%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
    position: relative;
    margin-bottom: 23px
}

.collage-img-bottom-left {
    grid-column: 1/3;
    grid-row: 2/3
}

.collage-img-bottom-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15)
}

.collage-text-right {
    grid-column: 3/4;
    grid-row: 3/4;
    display: flex;
    align-items: flex-start;
    padding-top: 10px
}

.collage-text-right p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0
}

.nosotros-collage-mobile {
    display: none
}

.nosotros-features {
    padding: 20px 0 60px
}

.nosotros-card-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 30px
}

.nosotros-icon-box {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75px;
    height: 75px;
    border: 1px solid #fff;
    border-radius: 12px;
    background-color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .15)
}

.nosotros-icon-box i {
    font-size: 2rem;
    color: #fff
}

.nosotros-icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain
}

.nosotros-text-box {
    background-color: #c8c8c8;
    border-radius: 12px;
    padding: 25px 25px 25px 75px;
    width: 100%;
    min-height: 100px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08)
}

.nosotros-text-box h5 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    color: #333
}

.nosotros-footer {
    background-color: var(--primary-dark);
    color: #fff;
    border-top-right-radius: 12rem;
    padding: 80px 0 60px;
    margin-top: 50px
}

.btn-agenda-white {
    display: inline-block;
    font-family: var(--font-sans);
    background-color: #fff;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 20px 50px;
    border-radius: 10px;
    border: none;
    transition: all .3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2)
}

.btn-agenda-white:hover {
    background-color: #f0f0f0;
    color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, .25)
}

.nosotros-pool-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
    max-height: 500px
}

.nosotros-pool-wrapper .nosotros-pool-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block
}

.btn-brochure-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    background-color: var(--primary-dark);
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 14px 30px;
    transition: all .3s ease;
    white-space: nowrap
}

.btn-brochure-overlay i {
    margin-left: 8px;
    font-size: 1.2rem
}

.btn-brochure-overlay:hover {
    background-color: rgba(255, 255, 255, .15);
    color: #fff;
    transform: translate(-50%, -50%) translateY(-2px)
}

.lotes-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center
}

.lotes-hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    line-height: 1;
    color: #fff
}

.lotes-hero-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 3.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3);
    margin-top: -10px;
    color: #fff
}

.page-hero-video {
    background: #000
}

.page-hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.lotes-blue-section {
    background-color: var(--primary-dark);
    border-top-right-radius: 8rem;
    border-bottom-left-radius: 8rem;
    padding: 60px 0 80px;
    margin-top: -120px;
    position: relative;
    z-index: 3
}

.lotes-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .15);
    padding: 25px 35px;
    max-width: 580px;
    margin: 0 auto 50px
}

.lotes-info-card-inner {
    display: flex;
    align-items: center;
    gap: 20px
}

.lotes-info-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background-color: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lotes-info-icon i {
    font-size: 1.6rem;
    color: #fff
}

.lotes-info-icon-img {
    width: 100%
}

.lotes-info-text p {
    font-family: var(--font-sans);
    font-size: .88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    line-height: 1.5
}

.lotes-info-text p:last-child {
    margin-bottom: 0
}

.lotes-masterplan-wrapper img {
    display: block
}

.lotes-plano-section {
    padding: 50px 0
}

.lotes-plano-wrapper img {
    width: 100%;
    display: block
}

.lotes-cta-section {
    background: var(--primary-dark);
    border-top-right-radius: 8rem;
    border-bottom-left-radius: 8rem;
    padding: 70px 0 80px;
    margin-top: 0;
    overflow: hidden
}

.lotes-cta-title {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 3rem;
    letter-spacing: 3px;
    margin-bottom: 0
}

.lotes-cta-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px
}

.lotes-cta-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 0;
    align-items: center
}

.lotes-cta-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    position: relative;
    z-index: 2;
    margin-right: -40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .2);
    text-align: center
}

.lotes-cta-card p {
    font-family: var(--font-sans);
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 700
}

.lotes-cta-img {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

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

.lotes-footer {
    background-color: #fff;
    color: var(--primary-dark);
    border-top-right-radius: 0;
    padding: 80px 0 60px;
    margin-top: 50px
}

.lotes-footer .footer-col-title {
    color: var(--primary-dark)
}

.lotes-footer .footer-links .d-flex,
.lotes-footer .footer-links a,
.lotes-footer .social-link {
    color: var(--primary-dark)
}

.lotes-footer .social-link {
    color: var(--primary-dark)
}

.lotes-footer .fa-location-dot {
    color: var(--primary-dark)
}

.amenidades-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center
}

.amenidades-hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    line-height: 1;
    color: #fff
}

.amenidades-hero-swiper {
    position: relative
}

.amenidades-hero-swiper .amenidadesHeroSwiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0
}

.amenidades-hero-swiper .amenidadesHeroSwiper .swiper-wrapper {
    height: 100%
}

.amenidades-hero-swiper .amenidadesHeroSwiper .swiper-slide {
    height: 100%
}

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

.amenidades-hero-swiper .page-hero-overlay {
    z-index: 1
}

.amenidades-pagination {
    z-index: 4 !important;
    bottom: 30px !important
}

.amenidades-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: .6
}

.amenidades-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff
}

.amenidades-dark-section {
    background-color: var(--primary-dark);
    border-bottom-left-radius: 8rem;
    padding: 60px 0 80px
}

.amenidad-photo-card {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1
}

.amenidad-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.amenidad-photo-card:hover img {
    transform: scale(1.05)
}

.amenidad-card {
    background-color: #394455;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
}

.amenidad-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px
}

.amenidad-card-icon i {
    font-size: 2rem;
    color: #fff
}

.amenidad-icon-img {
    width: 70px;
    height: 70px;
    object-fit: contain
}

.amenidad-card h4 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 400
}

.amenidad-card p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: .85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
    margin: 0
}

.ubicacion-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center
}

.ubicacion-hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    line-height: 1;
    color: #fff
}

.ubicacion-map-section {
    padding: 0
}

.ubicacion-map-wrapper {
    width: 100%;
    position: relative
}

.ubicacion-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 450px
}

.ubicacion-bg-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 315px;
    display: flex;
    align-items: center;
    min-height: 600px
}

.ubicacion-footer {
    margin-top: -220px;
    position: relative;
    z-index: 3
}

.ubicacion-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .15);
    z-index: 1
}

.ubicacion-info-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.2);
    overflow: hidden;
    max-width: 700px;
    margin: 0 auto
}

.ubicacion-card-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr
}

.ubicacion-card-text {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.ubicacion-card-text p {
    font-family: var(--font-sans);
    font-size: .95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.5
}

.ubicacion-card-img {
    aspect-ratio: 1/1;
    overflow: hidden
}

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

.contacto-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center
}

.contacto-hero-title {
    font-family: var(--font-serif);
    font-size: 5rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 0;
    font-weight: 400;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .4);
    line-height: 1;
    color: #fff
}

.contacto-form-section {
    background-color: var(--primary-dark);
    border-top-left-radius: 8rem;
    padding: 80px 0 100px;
    margin-top: -120px;
    position: relative;
    z-index: 3
}

.contacto-form-inner {
    max-width: 600px;
    margin: 0 auto
}

.contacto-form-title {
    font-family: var(--font-serif);
    color: #fff;
    font-size: 2.8rem;
    letter-spacing: 2px;
    margin-bottom: 0;
    font-weight: 400
}

.contacto-form-subtitle {
    font-family: var(--font-serif);
    font-style: italic;
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 50px
}

.contacto-field {
    margin-bottom: 30px
}

.contacto-field label {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: .95rem;
    color: #fff;
    display: block;
    margin-bottom: 8px
}

.contacto-field input {
    width: 100%;
    background: 0 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    padding: 8px 0;
    outline: 0;
    transition: border-color .3s ease
}

.contacto-field input:focus {
    border-bottom-color: #fff
}

.contacto-field input::placeholder {
    color: rgba(255, 255, 255, .4)
}

@media (max-width:992px) {
    .page-hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0
    }

    .page-hero {
        position: relative;
        height: 50vh
    }

    .page-hero.tour-hero {
        height: auto;
        min-height: 280px;
        padding-top: 100px;
        padding-bottom: 40px
    }

    .curved-section-benefits {
        padding: 100px 60px
    }

    .hero-content h1 {
        font-size: 3.5rem
    }

    .hero-subtitle {
        font-size: 2.5rem
    }

    .page-hero-title {
        font-size: 3.5rem !important
    }

    .page-hero-subtitle-script {
        font-size: 3rem
    }

    .lotes-hero-title {
        font-size: 3.5rem
    }

    .lotes-hero-subtitle {
        font-size: 3rem
    }

    .nosotros-collage-section {
        display: none
    }

    .nosotros-collage-mobile {
        display: block;
        position: relative;
        margin-top: -120px;
        z-index: 3;
        padding-bottom: 40px
    }

    .collage-mobile-text {
        text-align: center;
        padding: 0 20px 20px
    }

    .collage-mobile-text .collage-conoce {
        font-size: 2.2rem
    }

    .collage-mobile-text .collage-privanza {
        font-size: 1.6rem
    }

    .nosotrosSwiper {
        padding-bottom: 40px
    }

    .nosotrosSwiper .swiper-slide img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 16px
    }

    .nosotros-mobile-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: var(--primary-dark);
        opacity: .4
    }

    .nosotros-mobile-pagination .swiper-pagination-bullet-active {
        opacity: 1
    }

    .collage-mobile-description {
        font-family: var(--font-sans);
        font-size: .95rem;
        line-height: 1.7;
        color: var(--text-muted);
        text-align: center;
        padding: 0 10px
    }

    .amenidades-hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px
    }

    .amenidades-dark-section {
        border-top-right-radius: 4rem;
        border-bottom-left-radius: 4rem
    }

    .ubicacion-hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px
    }

    .contacto-hero-title {
        font-size: 3.5rem;
        letter-spacing: 5px
    }

    .contacto-form-section {
        border-top-left-radius: 4rem;
        margin-top: -80px
    }

    .contacto-form-title {
        font-size: 2.2rem
    }

    .contacto-form-subtitle {
        font-size: 1.8rem
    }

    .lotes-cta-section {
        border-top-right-radius: 4rem;
        border-bottom-left-radius: 4rem;
        padding: 50px 0 60px
    }

    .lotes-cta-title {
        font-size: 2.2rem
    }

    .lotes-cta-subtitle {
        font-size: 2rem
    }

    .lotes-cta-layout {
        grid-template-columns: 1fr
    }

    .lotes-cta-card {
        margin-right: 0;
        margin-bottom: -30px
    }
}

@media (max-width:768px) {
    .curved-section-benefits {
        border-top-right-radius: 0;
        border-bottom-left-radius: 0;
        border-radius: 0;
        padding: 60px 20px;
        margin-bottom: 0
    }

    .intro-section p {
        font-family: var(--font-sans);
        font-size: 1.3rem;
        font-weight: 400;
        color: #111;
        max-width: 900px;
        margin: 0 auto 40px;
        line-height: 1.3
    }

    .container:has(.curved-section-benefits),
    .curved-section-benefits .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0
    }

    footer {
        border-top-right-radius: 5rem;
        text-align: center;
        margin-top: 0
    }

    .footer-logo-container {
        align-items: center;
        margin-bottom: 30px
    }

    .footer-col-title {
        margin-top: 20px
    }

    .footer-links ul {
        padding: 0
    }

    .footer-links .d-flex.text-white {
        justify-content: center
    }

    .social-link {
        justify-content: center
    }

    .faq-section {
        padding: 60px 20px
    }

    .accordion-button {
        font-size: .85rem
    }

    .hero-content h1 {
        font-size: 3rem
    }

    .hero-subtitle {
        font-size: 2rem
    }

    .pill-label,
    .pill-value {
        padding: 10px 20px;
        font-size: 1.5rem
    }

    .page-hero {
        height: 50vh;
        min-height: 350px
    }

    .page-hero.tour-hero {
        height: auto;
        min-height: 250px;
        padding-top: 100px;
        padding-bottom: 40px
    }

    .tour-subtitle {
        font-size: .7rem;
        letter-spacing: 4px
    }

    .tour-iframe-section iframe {
        min-height: 60vh
    }

    .page-hero-title {
        font-size: 2.8rem !important;
        letter-spacing: 3px !important
    }

    .page-hero-subtitle-script {
        font-size: 2.2rem
    }

    .lotes-hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px
    }

    .lotes-hero-subtitle {
        font-size: 2.2rem
    }

    .nosotros-features {
        padding: 20px 15px 40px
    }

    .nosotros-pool-wrapper .nosotros-pool-img {
        height: 250px
    }

    .btn-brochure-overlay {
        font-size: 1.1rem;
        padding: 12px 20px
    }

    .btn-agenda-white {
        padding: 16px 35px;
        font-size: 1rem
    }

    .nosotros-footer {
        border-top-right-radius: 5rem;
        padding: 50px 0 40px
    }

    .amenidades-hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px
    }

    .ubicacion-hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px
    }

    .contacto-hero-title {
        font-size: 2.8rem;
        letter-spacing: 3px
    }

    .contacto-form-section {
        border-top-left-radius: 3rem;
        padding: 50px 15px 70px;
        margin-top: -60px
    }

    .contacto-form-title {
        font-size: 1.8rem
    }

    .contacto-form-subtitle {
        font-size: 1.5rem;
        margin-bottom: 30px
    }

    .amenidades-dark-section {
        border-top-right-radius: 0;
        border-bottom-left-radius: 3rem;
        padding: 30px 15px 50px;
        margin-bottom: 50px
    }

    .amenidad-card {
        padding: 25px 15px
    }

    .lotes-blue-section {
        border-top-right-radius: 4rem;
        border-bottom-left-radius: 4rem;
        padding: 40px 15px 50px;
        margin-top: -80px
    }

    .lotes-info-card {
        padding: 20px;
        margin-bottom: 30px
    }

    .lotes-info-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px
    }

    .lotes-cta-section {
        margin-top: 0;
        padding: 40px 15px 50px;
        border-top-right-radius: 3rem;
        border-bottom-left-radius: 3rem
    }

    .lotes-cta-title {
        font-size: 1.8rem
    }

    .lotes-cta-subtitle {
        font-size: 1.5rem
    }

    .lotes-cta-card {
        padding: 30px 20px
    }

    .lotes-footer {
        text-align: center;
        padding: 50px 0 40px;
        margin-top: 30px
    }

    .lotes-footer .footer-logo-container {
        align-items: center;
        margin-bottom: 30px
    }

    .lotes-footer .footer-col-title {
        margin-top: 20px
    }

    .lotes-footer .footer-links ul {
        padding: 0
    }

    .lotes-footer .footer-links .d-flex {
        justify-content: center
    }

    .lotes-footer .social-link {
        justify-content: center
    }

    .ubicacion-bg-section {
        padding: 60px 15px 150px;
        min-height: auto
    }

    .ubicacion-footer {
        margin-top: -100px
    }

    .ubicacion-card-layout {
        grid-template-columns: 1fr
    }

    .ubicacion-card-img {
        aspect-ratio: 16/9
    }

    .ubicacion-card-text {
        padding: 25px 20px;
        text-align: center
    }

    .ubicacion-card-text .d-flex {
        justify-content: center
    }
    
}

/* --- AMENIDADES --- */
.amenidad-square-photo {
    aspect-ratio: 1/1;
    width: 100%;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
}

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

.amenidad-compact-card {
    padding: 1.5rem;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1; 
}
.amenidad-compact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem; /* mb-3 */
}

.amenidad-compact-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.amenidad-compact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.amenidad-compact-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* --- UBICACIÓN --- */
.bg-soft-gray {
    background-color: #f4f6f9;
    padding: 80px 0;
    min-height: auto;
}

.ubicacion-info-card-reset {
    margin-bottom: 0;
}

.icon-location-pin {
    width: 24px;
    height: 32px;
    min-width: 18px;
    color: var(--primary-dark);
    margin-right: 1rem; 
    margin-top: 0.25rem; 
}

.ubicacion-card-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
}

.ubicacion-media-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-action-center {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
}

.map-bg-section {
    background-image: url('../assets/img/ubicacion/021A7765.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    position: relative;
}

.map-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 40, 57, 0.7); /* Ajusta opacidad aquí si deseas */
    z-index: 1;
}

.map-iframe-container {
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.2);
    /* Shadow-lg se aplica via Bootstrap class, o puedes forzarlo aquí: */
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.map-iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Footer Reset (para Ubicación) */
.footer-reset-margin {
    margin-top: 0;
    border-radius: 0;
}

/* --- Botones Flotantes WhatsApp y Teléfono --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important; /* Forzar blanco */
    text-decoration: none; /* Evitar subrayados de enlaces */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

/* Controlar el tamaño del SVG dentro del botón */
.float-btn svg {
    width: 30px;
    height: 30px;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.wa-btn {
    background-color: #25D366; /* Color oficial WhatsApp */
}

.phone-btn {
    background-color: var(--primary-dark);
    border: 2px solid white;
}

/* Ajuste para móviles: hacerlos un poco más pequeños */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
    }
}
