/* Estilos para la landing parallax */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos para la paginación de la galería */
.gallery-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.page-number:hover {
    background-color: #f1f1f1;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.page-number.active {
    background-color: #0DBAE8;
    color: white;
}

.section-divider {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
}

.divider-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0DBAE8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(13, 186, 232, 0.3);
    position: relative;
    z-index: 2;
}

.divider-icon::before,
.divider-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, #ccc, #ccc);
    width: 100px;
}

.divider-icon::before {
    right: 50px;
}

.divider-icon::after {
    left: 50px;
    background: linear-gradient(to left, transparent, #ccc, #ccc);
}

body, html {
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    color: white;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Dosis', sans-serif;
}

.navbar-logo img {
    height: 40px;
}

.navbar-menu {
    display: flex;
    list-style: none;
}

.navbar-menu li {
    margin-left: 30px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0DBAE8;
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: #0DBAE8;
}

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

.cta-button {
    background-color: #0DBAE8;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.cta-button:hover:before {
    left: 100%;
}

.cta-button:hover {
    background-color: #0a9ac2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 186, 232, 0.3);
}

/* Secciones Parallax */
.parallax-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /*transform: translateZ(0);*/
    /*will-change: transform;*/
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-section .parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    filter: brightness(0.5);
}

.hero-section .parallax-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-family: 'Dosis', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-section .parallax-content p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section .parallax-content .buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.1s;
}

.hero-details {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-detail-item {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-left: 4px solid #0DBAE8;
    min-width: 250px;
}

.hero-detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    background-color: rgba(13, 186, 232, 0.9);
    border-left: 4px solid white;
}

.hero-detail-item i {
    font-size: 30px;
    margin-right: 15px;
    color: #0DBAE8;
}

.hero-detail-item:hover i {
    color: white;
}

.hero-detail-item .detail-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #0DBAE8;
    font-weight: 600;
}

.hero-detail-item:hover .detail-info h4 {
    color: white;
}

.hero-detail-item .detail-info p {
    font-size: 16px;
    color: white;
    font-weight: 500;
}

.hero-detail-item:nth-child(3) {
    background-color: rgba(13, 186, 232, 0.9);
    border-left: 4px solid white;
}

.hero-detail-item:nth-child(3) i,
.hero-detail-item:nth-child(3) .detail-info h4 {
    color: white;
}

/* Sección About */
.about-section {
    background-color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 186, 232, 0.05);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.about-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(13, 186, 232, 0.05);
    border-radius: 50%;
    bottom: -250px;
    right: -250px;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #0DBAE8;
    top: -20px;
    left: -20px;
    border-radius: 10px;
    z-index: -1;
    transition: all 0.3s ease;
}

.about-image:hover::before {
    top: -10px;
    left: -10px;
}

.about-content {
    flex: 1;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Dosis', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #0DBAE8;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #666;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 5px;
}

.about-feature-item:hover {
    background-color: rgba(13, 186, 232, 0.05);
    transform: translateX(5px);
}

.about-feature-item i {
    font-size: 18px;
    color: #0DBAE8;
    margin-right: 10px;
}

/* Sección Features con animaciones */
.features-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(13, 186, 232, 0.1), rgba(13, 186, 232, 0.1));
    top: -150px;
    right: -150px;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(50px, 50px) rotate(5deg); }
    50% { transform: translate(0, 100px) rotate(0deg); }
    75% { transform: translate(-50px, 50px) rotate(-5deg); }
}

.features-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header .section-title {
    display: inline-block;
}

.features-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-bottom: 3px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 186, 232, 0.05), rgba(13, 186, 232, 0.05));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #0DBAE8;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(13, 186, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background-color: #0DBAE8;
    transform: scale(1.1) rotate(10deg);
}

.feature-icon i {
    font-size: 30px;
    color: #0DBAE8;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: #0DBAE8;
}

.feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Sección Gallery Parallax con animaciones */

.gallery-section{
    height: 98vh !important;
}
.gallery-section .parallax-bg {
    background-image: url('https://images.unsplash.com/photo-1605456670273-e5a1327ffd2a?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    filter: brightness(0.3);
}

.gallery-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    color: white;
    margin-bottom: 50px;
}

.gallery-header .section-title {
    color: white;
    display: inline-block;
}

.gallery-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: white;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item-overlay h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-item-overlay p {
    font-size: 12px;
    opacity: 0.8;
}

.gallery-zoom {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 24px;
    z-index: 3;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

/* Sección Planos con animaciones 3D */

/* Nuevo estilo para la sección de Distribución de Espacios */
.plans-section {
    background-color: #f5f7fa;
    padding: 100px 0;
    position: relative;
    border-top: 5px solid #0DBAE8;
}

/* Decoración de fondo */
.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%230dbae8' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.7;
}

.plans-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.plans-header {
    text-align: center;
    margin-bottom: 60px;
}

.plans-header .section-title {
    font-size: 36px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.plans-header .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #0DBAE8;
}

/* Nuevo diseño para las tarjetas */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.plan-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 1px solid #eaedf2;
}

.plan-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.plan-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: #0DBAE8;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(13, 186, 232, 0.3);
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
    letter-spacing: 1px;
}

.plan-content {
    padding: 30px;
}

.plan-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 1px solid #eaedf2;
    padding-bottom: 15px;
}

.plan-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.plan-detail-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.plan-detail-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(13, 186, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0DBAE8;
    margin-right: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.plan-card:hover .plan-detail-item i {
    background-color: #0DBAE8;
    color: white;
    transform: scale(1.1) rotate(10deg);
}

.plan-detail-item span {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.plan-action {
    margin-top: 25px;
    text-align: center;
}

.plan-action .cta-button {
    background-color: #0DBAE8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(13, 186, 232, 0.3);
}

.plan-action .cta-button:hover {
    background-color: #0a9ac2;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 186, 232, 0.4);
}

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

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        max-width: 450px;
        margin: 0 auto;
    }
}


/*.plans-section {*/
/*    background-color: white;*/
/*    !*padding: 100px 0;*!*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.plans-shape-1 {*/
/*    position: absolute;*/
/*    width: 400px;*/
/*    height: 400px;*/
/*    background: radial-gradient(circle, rgba(13, 186, 232, 0.05) 0%, rgba(13, 186, 232, 0) 70%);*/
/*    border-radius: 50%;*/
/*    top: -200px;*/
/*    left: -200px;*/
/*}*/

/*.plans-shape-2 {*/
/*    position: absolute;*/
/*    width: 300px;*/
/*    height: 300px;*/
/*    background: radial-gradient(circle, rgba(13, 186, 232, 0.05) 0%, rgba(13, 186, 232, 0) 70%);*/
/*    border-radius: 50%;*/
/*    bottom: -150px;*/
/*    right: -150px;*/
/*}*/

/*.plans-container {*/
/*    width: 90%;*/
/*    max-width: 1200px;*/
/*    margin: 0 auto;*/
/*    position: relative;*/
/*    z-index: 2;*/
/*}*/

/*.plans-header {*/
/*    text-align: center;*/
/*    margin-bottom: 60px;*/
/*}*/

/*.plans-header .section-title {*/
/*    display: inline-block;*/
/*}*/

/*.plans-header .section-title::after {*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*}*/

/*.plans-grid {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(3, 1fr);*/
/*    gap: 30px;*/
/*}*/

/*.plan-card {*/
/*    background-color: #f8f9fa;*/
/*    border-radius: 10px;*/
/*    overflow: hidden;*/
/*    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);*/
/*    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);*/
/*    transform-style: preserve-3d;*/
/*    perspective: 1000px;*/
/*}*/

/*.plan-card:hover {*/
/*    transform: translateY(-15px);*/
/*    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.plan-image {*/
/*    height: 220px;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.plan-image img {*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: cover;*/
/*    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);*/
/*}*/

/*.plan-card:hover .plan-image img {*/
/*    transform: scale(1.1);*/
/*}*/

/*.plan-badge {*/
/*    position: absolute;*/
/*    top: 15px;*/
/*    right: 15px;*/
/*    background-color: #0DBAE8;*/
/*    color: white;*/
/*    padding: 5px 15px;*/
/*    border-radius: 30px;*/
/*    font-size: 12px;*/
/*    font-weight: 600;*/
/*    text-transform: uppercase;*/
/*    box-shadow: 0 3px 10px rgba(13, 186, 232, 0.3);*/
/*    z-index: 2;*/
/*    transform: translateZ(30px);*/
/*}*/

/*.plan-content {*/
/*    padding: 25px;*/
/*    transform: translateZ(20px);*/
/*}*/

/*.plan-card h3 {*/
/*    font-size: 20px;*/
/*    font-weight: 600;*/
/*    margin-bottom: 15px;*/
/*    color: #333;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.plan-card:hover h3 {*/
/*    color: #0DBAE8;*/
/*}*/

/*.plan-details {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(2, 1fr);*/
/*    gap: 15px;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.plan-detail-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.plan-detail-item i {*/
/*    color: #0DBAE8;*/
/*    margin-right: 8px;*/
/*    font-size: 16px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.plan-card:hover .plan-detail-item i {*/
/*    transform: scale(1.2);*/
/*}*/

/*.plan-action {*/
/*    margin-top: 15px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.plan-price {*/
/*    font-size: 22px;*/
/*    font-weight: 700;*/
/*    color: #333;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.plan-card:hover .plan-price {*/
/*    color: #0DBAE8;*/
/*    transform: scale(1.05);*/
/*}*/

/*.plan-price small {*/
/*    font-size: 14px;*/
/*    font-weight: 400;*/
/*    color: #777;*/
/*}*/

/* Location Section */
.location-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.location-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.location-header {
    text-align: center;
    margin-bottom: 60px;
}

.location-header .section-title {
    display: inline-block;
}

.location-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.location-content {
    display: flex;
    gap: 50px;
}

.location-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
    position: relative;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.location-map:hover {
    transform: rotate3d(1, 1, 0, 5deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.location-map::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.location-map:hover::after {
    opacity: 1;
}

.location-info {
    flex: 1;
}

.location-info h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #0DBAE8;
    transition: width 0.3s ease;
}

.location-info h3:hover::after {
    width: 100%;
}

.location-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.location-features {
    margin-top: 30px;
}

.location-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 8px;
}

.location-feature-item:hover {
    background-color: rgba(13, 186, 232, 0.05);
    transform: translateX(10px);
}

.location-feature-item i {
    font-size: 24px;
    color: #0DBAE8;
    margin-right: 15px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.location-feature-item:hover i {
    transform: scale(1.2);
}

.location-feature-item .feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.location-feature-item:hover .feature-text h4 {
    color: #0DBAE8;
}

.location-feature-item .feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section (Parallax) */

.cta-section {
    position: relative;
    padding: 50px 0;
    background-image: url('https://images.unsplash.com/photo-1577415124269-fc1140a69e91?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efecto parallax simple */
    background-color: #333; /* Color de respaldo */
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Oscurece la imagen */
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-container h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    font-family: 'Dosis', sans-serif;
    opacity: 0;
    transform: translateY(30px);
    animation: cta-fade-in 1s ease forwards 0.3s;
}

@keyframes cta-fade-in {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 30px;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: cta-fade-in 1s ease forwards 0.6s;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: cta-fade-in 1s ease forwards 0.9s;
}

.cta-buttons .cta-button.secondary {
    background-color: transparent;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.cta-buttons .cta-button.secondary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-3px);
}

/* Detalles del Alquiler */
.rent-details-section {
    background-color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.rent-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 186, 232, 0.05) 0%, rgba(13, 186, 232, 0) 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.rent-details-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.rent-details-header {
    text-align: center;
    margin-bottom: 60px;
}

.rent-details-header .section-title {
    display: inline-block;
}

.rent-details-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.rent-details-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Contact Section */
.contact-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-shape-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 186, 232, 0.05) 0%, rgba(13, 186, 232, 0) 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
}

.contact-shape-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 186, 232, 0.05) 0%, rgba(13, 186, 232, 0) 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header .section-title {
    display: inline-block;
}

.contact-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateZ(0);
}

.contact-form:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #0DBAE8;
    transition: width 0.3s ease;
}

.contact-form:hover h3::after {
    width: 100px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group textarea:focus + label {
    color: #0DBAE8;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #0DBAE8;
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 186, 232, 0.1);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.contact-button {
    background-color: #0DBAE8;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.contact-button:hover::before {
    left: 100%;
}

.contact-button:hover {
    background-color: #0a9ac2;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 186, 232, 0.3);
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-info-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-info-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #0DBAE8;
    transition: width 0.3s ease;
}

.contact-info-header h3:hover::after {
    width: 100%;
}

.contact-info-header p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.contact-info-item:hover {
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.contact-info-item i {
    font-size: 24px;
    color: #0DBAE8;
    margin-right: 15px;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.contact-info-item:hover i {
    transform: scale(1.2);
}

.contact-info-item .item-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.contact-info-item:hover .item-content h4 {
    color: #0DBAE8;
}

.contact-info-item .item-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-social {
    margin-top: 30px;
}

.contact-social h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.contact-social h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #0DBAE8;
    transition: width 0.3s ease;
}

.contact-social h4:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f1f1f1;
    border-radius: 50%;
    color: #555;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0DBAE8;
    transform: scale(0);
    transition: all 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.social-link:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(13, 186, 232, 0.3);
}

.social-link:hover::before {
    transform: scale(1);
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0DBAE8, #0DBAE8, #0DBAE8);
    background-size: 200% 100%;
    animation: gradient-move 10s infinite linear;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    transition: all 0.3s ease;
}

.footer-logo:hover img {
    transform: scale(1.1);
}

.footer p {
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer p:hover {
    opacity: 1;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #0DBAE8;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(30px) scale(0.5);
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background-color: #0a9ac2;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.back-to-top i {
    transition: all 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

/* Modal Contact */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: white;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    transform: scale(0.8) translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

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

.modal-header {
    background: linear-gradient(135deg, #0DBAE8, #0a9ac2);
    color: white;
    padding: 20px;
    position: relative;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
        gap: 40px;
    }

    .about-image::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .hero-section .parallax-content h1 {
        font-size: 40px;
    }

    .hero-section .parallax-content p {
        font-size: 18px;
    }

    .hero-details {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-detail-item {
        width: 100%;
        max-width: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .rent-details-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-section .parallax-content .buttons {
        flex-direction: column;
        gap: 15px;
    }
}
