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

:root {
    --primary-color:  #926a2e;
    --secondary-color: #9a9a99;
    --accent-color: #a48b61;
    --dark-color: #323038;
    --light-color: #fafafa;
    --gray-color: #c3cacb;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --whatsapp-green: #25D366;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.espacios {
    padding: 5% 0 !important;
}

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

.container-full {
    width: 100%;
    padding: 0;
}

/* Hero Top Bar - Logo and Instagram */
.hero-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    z-index: 10;
    animation: fadeInDown 1s ease;
    transition: all 0.3s ease;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-logo {
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.4)) drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo img {
    height: 100px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo:hover {
    filter: drop-shadow(0 6px 30px rgba(0, 0, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.5));
    transform: translateY(-3px);
}

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

.hero-language-btn,
.hero-instagram {
    width: auto;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
    padding: 0 18px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
}

.hero-language-btn:hover,
.hero-instagram:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.3);
}

.hero-language-btn svg,
.hero-instagram svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.hero-language-btn:hover svg,
.hero-instagram:hover svg {
    transform: rotate(10deg) scale(1.1);
}

.language-btn-text {
    white-space: nowrap;
}

.hero-instagram {
    width: 50px;
    padding: 0;
    border-radius: 50%;
}

/* Language Dropdown Menu */
.language-dropdown {
    position: relative;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.language-option:hover {
    background: rgba(72, 180, 213, 0.1);
    color: var(--primary-color);
}

.language-option.active {
    background: rgba(72, 180, 213, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.flag-icon-small {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://rmackdiseno.com/wp-content/uploads/2024/09/DECORACION-E-INTERIORISMO-3-1024x576.jpg') center/cover no-repeat fixed;
    text-align: center;
    color: white;
    padding-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(50, 48, 56, 0.85) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-definition {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.definition-word {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
}

.definition-text {
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Main Heading Section */
.main-heading {
    padding: 20px 0;
    text-align: center;
    background: var(--light-color);
}

/* Property Management Section */
.property-management {
    padding: 80px 0;
    text-align: center;
    background: white;
}

.management-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.4;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: var(--dark-color);
    line-height: 1.4;
    justify-self: center;
}

.section-description {
    max-width: 900px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    border: 2px solid #926a2e;
    background: transparent;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.btn-primary::before,
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #926a2e;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before,
.btn-outline:hover::before {
    left: 0;
}

.btn-primary:hover,
.btn-outline:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn svg {
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: rotate(10deg) scale(1.1);
}

/* Features Section */
.features {
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.feature-item {
    text-align: center;
    padding: 0 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 20%;
    height: auto;
    margin: 0 auto 25px;
    transition: transform 0.4s ease;
    fill:  #926a2e;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(72, 180, 213, 0.3));
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 15px;
}

/* Services Section */
.services {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0000004f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    transition: background 0.4s ease;
}

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

.service-card:hover .service-overlay {
    background: rgba(64, 66, 11, 0.7);
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    letter-spacing: 1px;
    text-align: center;
    transition: transform 0.4s ease;
    line-height: 1.3;
    word-wrap: break-word;
    font-weight: 600;
}

.service-card:hover .service-title {
    transform: translateY(-10px);
}

/* Properties Section */
.properties {
    padding: 7% 0 0% 0;
    background: white;
}

.properties-carousel-wrapper {
    position: relative;
    margin: 60px auto 40px;
    max-width: 1400px;
}

.properties .carousel-viewport {
    overflow: hidden;
    border-radius: 20px;
}

.properties .carousel-track {
    display: flex;
    gap: 30px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.properties .carousel-slide {
    flex: 0 0 auto;
}

.property-card {
    min-width: 350px;
    flex-shrink: 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
    will-change: transform;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.property-card:nth-child(1) { animation-delay: 0.1s; }
.property-card:nth-child(2) { animation-delay: 0.2s; }
.property-card:nth-child(3) { animation-delay: 0.3s; }
.property-card:nth-child(4) { animation-delay: 0.4s; }
.property-card:nth-child(5) { animation-delay: 0.5s; }

.property-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.property-image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.property-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.property-card:hover .property-image::after {
    opacity: 1;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-image img {
    transform: scale(1.15);
}

.property-info {
    padding: 25px;
    background: white;
}

.property-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.6;
    min-height: 60px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #926a2e;
    transition: color 0.3s ease;
}

.property-card:hover .property-price {
    color: var(--dark-color);
}

/* Botones del carrusel de propiedades - usando los mismos estilos que testimonios */
.properties .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    aspect-ratio: 1 / 1;
    box-sizing: border-box;
    border-radius: 50%;
    border: 2px solid rgba(146, 106, 46, 0.3);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    color: var(--dark-color);
    font-size: 24px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    font-weight: 300;
    -webkit-tap-highlight-color: rgba(146, 106, 46, 0.3);
}

.properties .carousel-button:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
    background: #926a2e;
    border-color: #926a2e;
    color: white;
    box-shadow: 0 8px 30px rgba(146, 106, 46, 0.4);
}

.properties .carousel-button:active:not(:disabled) {
    transform: translateY(-50%) scale(0.95);
    background: #926a2e;
    border-color: #926a2e;
    color: white;
}

.properties .carousel-button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(50, 48, 56, 0.15);
}

.properties .carousel-button.prev {
    left: 0;
}

.properties .carousel-button.next {
    right: 0;
}

.carousel-dots,
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

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

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    text-align: center;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.reviews-title {
    font-family: 'Aboreto', serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
}

.reviews-carousel-wrapper {
    position: relative;
    margin: 60px 0 40px;
    padding: 0 60px;
    overflow: hidden;
}

.reviews-carousel {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 20px 0;
    will-change: transform;
}

.review-card {
    min-width: 400px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 35px;
    text-align: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: slideInUp 0.6s ease forwards;
    will-change: transform;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }
.review-card:nth-child(4) { animation-delay: 0.4s; }

.review-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    background: white;
    border-color: rgba(255, 255, 255, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.1rem;
}

.review-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.google-icon {
    margin-left: auto;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars span {
    color: #FFA000;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 0.95rem;
}

.reviews-prev {
    left: -25px;
}

.reviews-next {
    right: -25px;
}

.btn-reviews {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.btn-reviews:hover {
    background: white;
    color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/* Contact Section - Profile Layout */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(72, 180, 213, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(164, 139, 97, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact .container,
.contact .con {
    position: relative;
    z-index: 1;
}

.con {
    padding: 5%;
}

.contact {
    padding-bottom: 0;
}
.contact-profile-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-profile-image-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-profile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
}

.contact-profile-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.contact-profile-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #926a2e;
    margin: 0;
    line-height: 1.2;
}

.contact-profile-description {
    font-size: 1rem;
    color: white;
    line-height: 1.8;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.contact-profile-quote {
    position: relative;
}

.contact-quote-mark {
    width: 60px;
    height: 60px;
    fill: #926a2e;
    opacity: 0.7;
}

.contact-quote-left {
    float: left;
    margin-right: 20px;
    margin-bottom: -10px;
    margin-top: -5px;
}

.contact-quote-right {
    float: right;
    margin-left: 20px;
    margin-top: -10px;
    margin-bottom: -5px;
}

.contact-quote-text {
    font-size: 1.15rem;
    color: #926a2e;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    padding: 15px 0;
    font-family: 'Poppins', sans-serif;
    clear: both;
    font-weight: bold;
}

.contact .btn-primary {
    border-color: #926a2e;
    color: black;
    padding: 15px 30px;
    align-self: flex-start;
    margin-top: 10px;
}

.contact .btn-primary::before {
    background: #926a2e;
}

.contact .btn-primary:hover {
    color: white;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: white;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    height: 90px;
    width: auto;
}

.footer-badges {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.footer-badge {
    max-width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.footer-badge:hover {
    transform: scale(1.05);
}

.footer-contacts {
    display: flex;
    justify-content: center;
    gap: 15%;
    flex-wrap: wrap;
}

.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-contact svg {
    flex-shrink: 0;
}


/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.whatsapp-right {
    right: 30px;
    left: auto;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .properties-carousel-wrapper,
    .reviews-carousel-wrapper {
        padding: 0 60px;
    }

    .properties .carousel-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .property-card {
        min-width: 320px;
    }

    .review-card {
        min-width: 360px;
    }

    .hero-top-bar {
        padding: 25px 30px;
    }

    .hero-actions {
        gap: 12px;
    }

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

    .service-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    .hero-top-bar {
        padding: 20px 20px;
    }

    .hero-logo img {
        height: 75px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-language-btn,
    .hero-instagram {
        height: 45px;
        padding: 0 15px;
        font-size: 0.85rem;
    }

    .hero-language-btn svg,
    .hero-instagram svg {
        width: 18px;
        height: 18px;
    }

    .hero-instagram {
        width: 45px;
        padding: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero {
        background-attachment: scroll;
    }

    .properties-carousel-wrapper,
    .reviews-carousel-wrapper {
        padding: 0 50px;
    }

    .properties .carousel-button {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .properties .carousel-button.prev {
        left: 5px;
    }

    .properties .carousel-button.next {
        right: 5px;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .section-description {
        padding: 0 10px;
    }

    .property-management {
        padding: 60px 0;
    }

    .management-subtitle {
        font-size: 1.3rem;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }

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

    .service-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }

    .service-overlay {
        padding: 30px 15px;
    }

    .property-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }

    .review-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }

    .reviews-title {
        font-size: 1.8rem;
        padding: 0 10px;
    }

    .reviews-subtitle {
        padding: 0 10px;
    }

    .contact-title {
        font-size: 2.2rem;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-content {
        gap: 40px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        height: 70px;
    }

    .footer-badges {
        justify-content: center;
        gap: 25px;
    }

    .footer-badge {
        max-width: 150px;
    }

    .footer-contacts {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .whatsapp-float {
        bottom: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-right {
        right: 20px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

}

@media (max-width: 480px) {
    .hero-top-bar {
        padding: 15px 15px;
    }

    .hero-logo img {
        height: 65px;
    }

    .hero-actions {
        gap: 8px;
    }

    .hero-language-btn,
    .hero-instagram {
        height: 40px;
        padding: 0 12px;
        font-size: 0.8rem;
    }

    .hero-language-btn svg,
    .hero-instagram svg {
        width: 16px;
        height: 16px;
    }

    .hero-language-btn {
        padding: 0 10px;
        font-size: 0.75rem;
    }

    .hero-instagram {
        width: 40px;
        padding: 0;
    }

    .language-menu {
        min-width: 160px;
        right: 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-definition {
        padding: 20px;
    }

    .properties-carousel-wrapper,
    .reviews-carousel-wrapper {
        padding: 0 45px;
    }

    .properties .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .property-management {
        padding: 40px 0;
    }

    .management-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .service-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
        line-height: 1.4;
    }

    .service-overlay {
        padding: 25px 10px;
    }

    .property-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
    }

    .review-card {
        min-width: calc(100vw - 100px);
        max-width: calc(100vw - 100px);
        padding: 25px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .btn-primary,
    .btn-outline {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-top {
        gap: 25px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-badges {
        gap: 20px;
    }

    .footer-badge {
        max-width: 120px;
    }

    .footer-contacts {
        gap: 25px;
    }

    .whatsapp-float {
        bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-right {
        right: 15px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .feature-item {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
    }

    .feature-item:nth-child(1) { animation-delay: 0.1s; }
    .feature-item:nth-child(2) { animation-delay: 0.2s; }
    .feature-item:nth-child(3) { animation-delay: 0.3s; }
    .feature-item:nth-child(4) { animation-delay: 0.4s; }

    .service-card {
        opacity: 0;
        animation: fadeInUp 0.8s ease forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
}

/* Formulario Section */
.formulario-section {
    padding: 0 0 100px 0;
    background: white;
    position: relative;
}

.formulario-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.formulario-content {
    max-width: 100%;
    margin: 0;
    position: relative;
    z-index: 1;
}

.formulario-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    margin: 0 0 30px 0;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-align: left;
}

.formulario-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 0 40px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.formulario-challenge-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 25px 0;
    line-height: 1.4;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.formulario-challenges-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.formulario-challenge-item {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0 0 18px 0;
    padding-left: 30px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.formulario-challenge-item::before {
    content: '+';
    position: absolute;
    left: 0;
    top: 0;
    color: #926a2e;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.formulario-solution {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.formulario-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 0 50px 0;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-align: center;
}

.formulario-separator {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 0 0 50px 0;
}

.formulario-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.formulario-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.formulario-feature-item:nth-child(1) { animation-delay: 0.3s; }
.formulario-feature-item:nth-child(2) { animation-delay: 0.4s; }
.formulario-feature-item:nth-child(3) { animation-delay: 0.5s; }
.formulario-feature-item:nth-child(4) { animation-delay: 0.6s; }

.formulario-feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #926a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.formulario-feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: #926a2e;
}

.formulario-feature-text {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.formulario-form-container {
    max-width: 100%;
    margin: 0;
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
    position: sticky;
    top: 20px;
}

.formulario-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark-color);
    margin: 0 0 35px 0;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.formulario-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 2px;
}

.formulario-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.formulario-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.formulario-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.formulario-input,
.formulario-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
    outline: none;
}

.formulario-input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.formulario-input:focus,
.formulario-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(72, 180, 213, 0.1);
    transform: translateY(-2px);
}

.formulario-input:hover:not(:focus),
.formulario-select:hover:not(:focus) {
    border-color: var(--accent-color);
}

.formulario-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23323038' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.formulario-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: #926a2e;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 10px;
    box-shadow: 0 6px 25px rgba(72, 180, 213, 0.3);
    position: relative;
    overflow: hidden;
}

.formulario-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: black;
    transition: left 0.4s ease;
    z-index: -1;
}

.formulario-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(72, 180, 213, 0.4);
    background: black;
}

.formulario-submit-btn:hover::before {
    left: 0;
}

.formulario-submit-btn:active {
    transform: translateY(-1px);
}

.formulario-submit-btn svg {
    transition: transform 0.3s ease;
}

.formulario-submit-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design para Formulario */
@media (max-width: 1024px) {
    .formulario-section .container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .formulario-content {
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .formulario-section-title {
        font-size: 2rem;
        text-align: center;
    }

    .formulario-description {
        text-align: center;
    }

    .formulario-challenge-question {
        font-size: 1.3rem;
        text-align: center;
    }

    .formulario-main-title {
        font-size: 1.4rem;
    }

    .formulario-form-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 40px 35px;
        position: static;
    }

    .contact-profile-wrapper {
        gap: 50px;
    }

    .contact-profile-name {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .formulario-section {
        padding: 60px 0;
    }

    .formulario-section .container {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    .formulario-content {
        margin-bottom: 50px;
        padding: 0 5px;
    }

    .formulario-section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }

    .formulario-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 35px;
    }

    .formulario-challenge-question {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .formulario-challenge-item {
        font-size: 0.95rem;
        margin-bottom: 15px;
        padding-left: 25px;
    }

    .formulario-solution {
        font-size: 1rem;
        text-align: center;
    }

    .formulario-main-title {
        font-size: 1.2rem;
    }

    .formulario-separator {
        margin: 0 0 40px 0;
    }

    .formulario-features-list {
        gap: 25px;
    }

    .formulario-feature-item {
        gap: 18px;
    }

    .formulario-form-container {
        padding: 40px 30px;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .formulario-form-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .formulario-contact-form {
        gap: 22px;
    }

    .formulario-input,
    .formulario-select {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .contact-profile-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-profile-image {
        max-width: 350px;
    }

    .contact-profile-name {
        font-size: 1.8rem;
        text-align: center;
    }

    .contact-profile-description {
        text-align: center;
    }

    .contact-profile-quote {
        text-align: center;
    }

    .contact-quote-mark {
        width: 50px;
        height: 50px;
    }

    .contact-profile-content-column {
        align-items: center;
    }

    .contact .btn-primary {
        align-self: center;
        padding: 12px 25px;
        font-size: 0.95rem;
    }

}

@media (max-width: 480px) {
    .formulario-section {
        padding: 40px 0;
    }

    .formulario-section .container {
        padding: 0 10px;
    }

    .formulario-content {
        margin-bottom: 40px;
        padding: 0;
    }

    .formulario-section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .formulario-description {
        font-size: 0.95rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .formulario-challenge-question {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 18px;
    }

    .formulario-challenge-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
        padding-left: 22px;
    }

    .formulario-challenge-item::before {
        font-size: 1.3rem;
    }

    .formulario-solution {
        font-size: 0.95rem;
        text-align: center;
    }

    .formulario-main-title {
        font-size: 1rem;
        line-height: 1.5;
    }

    .formulario-separator {
        margin: 0 0 30px 0;
    }

    .formulario-features-list {
        gap: 20px;
    }

    .formulario-feature-item {
        gap: 15px;
    }

    .formulario-feature-icon {
        width: 20px;
        height: 20px;
    }

    .formulario-feature-text {
        font-size: 0.95rem;
    }

    .formulario-form-container {
        padding: 35px 25px;
        border-radius: 15px;
        max-width: 100%;
        margin: 0;
        width: 100%;
    }

    .formulario-form-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .formulario-label {
        font-size: 0.95rem;
    }

    .formulario-input,
    .formulario-select {
        padding: 15px 18px;
        font-size: 1rem;
    }

    .formulario-submit-btn {
        padding: 16px 35px;
        font-size: 1.05rem;
        width: 100%;
    }

    .formulario-contact-form {
        gap: 22px;
    }

    .contact-profile-wrapper {
        gap: 30px;
    }

    .contact-profile-name {
        font-size: 1.5rem;
    }

    .contact-quote-mark {
        width: 40px;
        height: 40px;
    }

    .contact .btn-primary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .properties {
        padding: 20% 0 0% 0;
    }
    .espacios {
        padding: 15% 0 !important;
    }
    
}
