/* Variables CSS */
:root {
    --primary-dark: #47462D;
    --primary: #686845;
    --primary-light: #5B5940;
    --secondary: #868471;
    --light: #D0D0C6;
    --white: #ffffff;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f9f9f7;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation - Flotante Centrado */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 14px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid rgba(71, 70, 45, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    top: 16px;
    padding: 12px 36px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 1400px;
}

.nav-logo {
    flex-shrink: 0;
    margin-right: auto;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    transition: var(--transition);
}

.nav-logo a:hover {
    opacity: 0.85;
}

.logo-l {
    color: #686845;
    font-weight: 700;
    font-size: 1.5em;
    line-height: 0.8;
    vertical-align: baseline;
    display: inline-block;
}

.logo-text {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0 auto;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    padding: 4px 0;
    position: relative;
    white-space: nowrap;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-dark);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background: #f9f9f7;
    overflow: visible;
}

.hero-content {
    width: 100%;
    text-align: center;
}

.hero-title {
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 12px;
    margin-bottom: 60px;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
}

.hero-tree-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: white;
}

.hero-tree-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 600px;
    object-fit: cover;
}

.hero-tree-container video {
    width: 100%;
    height: auto;
    display: block;
    min-height: 600px;
    object-fit: cover;
}

/* Commitment Section */
.commitment-section {
    width: 100%;
    background: var(--bg-white);
    padding: 60px 0;
    text-align: center;
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.commitment-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Carousel Section */
.carousel-section {
    width: 100%;
    overflow: hidden;
    background: var(--bg-white);
    padding: 60px 0;
}

.carousel-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: calc(20% - 12.8px);
    width: calc(20% - 12.8px);
    flex-shrink: 0;
    position: relative;
    margin-right: 16px;
}

.carousel-slide:last-child {
    margin-right: 0;
}

.carousel-image-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.carousel-image-wrapper:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.carousel-image-wrapper:hover .carousel-image {
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 32px 0 0;
    position: relative;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-dark);
    color: white;
    box-shadow: 0 4px 16px rgba(71, 70, 45, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(71, 70, 45, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-dark);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Section Styles */
section {
    padding: 60px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-family: 'Playfair Display', serif;
}

.locations-section .section-title {
    font-size: clamp(32px, 4.5vw, 42px);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.categories-section .section-subtitle {
    font-size: 16px;
    letter-spacing: 0.5px;
    font-weight: 400;
    opacity: 0.8;
}

/* Locations Section */
.locations-section {
    background: white;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.location-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    transition: var(--transition);
    cursor: pointer;
    background: white;
    text-decoration: none;
    display: block;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.location-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.location-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.location-card:hover .location-image-wrapper img {
    transform: scale(1.08);
}

.location-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.85) 100%);
    padding: 60px 24px 24px;
    color: white;
}

.location-name {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-description {
    font-size: 14px;
    opacity: 0.9;
    margin: 8px 0 0 0;
    font-weight: 400;
}

.location-link {
    display: none;
}

/* Categories Section */
.categories-section {
    background: linear-gradient(135deg, #f9f9f7 0%, #f5f5f3 50%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(104, 104, 69, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(71, 70, 45, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    padding: 32px 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(104, 104, 69, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 24px 64px rgba(71, 70, 45, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(104, 104, 69, 0.3);
}

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

.category-icon-wrapper {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, 
        rgba(104, 104, 69, 0.15) 0%, 
        rgba(71, 70, 45, 0.1) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 16px auto 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(104, 104, 69, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    order: 2;
}

.category-card:hover .category-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, 
        rgba(104, 104, 69, 0.25) 0%, 
        rgba(71, 70, 45, 0.2) 100%);
    box-shadow: 
        0 12px 32px rgba(104, 104, 69, 0.25),
        inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

.category-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, 
        rgba(104, 104, 69, 0.3), 
        rgba(71, 70, 45, 0.2),
        rgba(104, 104, 69, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-card:hover .category-icon-wrapper::after {
    opacity: 1;
}

.category-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-icon {
    transform: scale(1.15);
}

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

.category-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 0;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    order: 1;
    margin-bottom: 0;
}

.category-card:hover h3 {
    color: var(--primary);
}

.highlight-text {
    color: #686845;
    font-weight: 700;
}

.highlight-bold {
    font-weight: 900;
}

.section-subtitle-italic {
    font-style: italic;
    opacity: 0.7;
    font-size: 16px;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(104, 104, 69, 0.08);
    border: 1px solid rgba(104, 104, 69, 0.15);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    align-self: center;
    order: 3;
}

.category-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
}

.category-link:hover {
    gap: 14px;
    color: white;
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(71, 70, 45, 0.3);
    transform: translateX(4px);
}

.category-link:hover::before {
    left: 100%;
}

.category-link svg {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category-link:hover svg {
    transform: translateX(4px);
}

/* Featured Properties Section */
.featured-properties-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.featured-properties-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

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

.featured-property-slide {
    min-width: calc(33.333% - 21.33px);
    width: calc(33.333% - 21.33px);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.featured-property-slide .property-card {
    width: 100%;
    max-width: 100%;
}

.featured-properties-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.featured-properties-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(104, 104, 69, 0.3);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.featured-properties-dot:hover {
    background: rgba(104, 104, 69, 0.5);
    transform: scale(1.2);
}

.featured-properties-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

/* Properties Section */
.properties-section {
    background: white;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.property-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.property-card-link:hover .property-card {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.property-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-color: var(--primary);
}

.property-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--light);
}

.property-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.property-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 193, 7, 0.95);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.property-category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-dark);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.property-available-from-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: linear-gradient(135deg, rgba(71, 70, 45, 0.95), rgba(104, 104, 69, 0.95));
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.property-info {
    padding: 28px;
}

.property-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.property-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 16px;
}

.property-features-list {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-light);
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.property-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    font-family: 'Playfair Display', serif;
}

.property-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.property-link:hover {
    color: var(--primary-dark);
}

.section-footer {
    text-align: center;
    margin-top: 48px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.empty-state p {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-card h4 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-dark);
}

.btn-contact-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    gap: 16px;
}

.btn-contact-cta:hover svg {
    transform: translateX(4px);
}

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

.contact-card p {
    color: var(--text-light);
    margin-top: 8px;
}

/* Social Media Section */
.social-section {
    background: var(--bg-light);
    padding: 40px 0;
}

.social-logo-wrapper {
    text-align: center;
    margin-bottom: 12px;
}

.social-username {
    text-align: center;
    margin-bottom: 30px;
}

.social-username-text {
    font-size: 20px;
    font-weight: 400;
    color: #686845;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    font-style: italic;
}

.social-logo {
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
}

.social-logo:hover {
    opacity: 0.85;
    transform: scale(1.05);
}

.social-logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    -ms-interpolation-mode: nearest-neighbor;
}

.social-media-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-icons-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.social-icon-link {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.social-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: var(--transition);
    min-width: 140px;
    opacity: 0.7;
}

.social-icon-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    opacity: 0.85;
}

.social-icon {
    width: 32px;
    height: 32px;
    color: var(--text-light);
    transition: var(--transition);
    opacity: 0.8;
}

.social-icon-wrapper:hover .social-icon {
    transform: scale(1.05);
    color: var(--primary);
    opacity: 1;
}

.social-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    opacity: 0.8;
}

.social-icon-wrapper:hover .social-label {
    color: var(--primary);
    opacity: 1;
}

/* Partners Carousel */
/* Partners Section */
.partners-section {
    width: 100%;
    padding: 80px 0;
    background: white;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
}

.partners-subtitle {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.partners-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0;
}

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

.partner-slide {
    min-width: 200px;
    flex-shrink: 0;
}

.partner-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: 220px;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: rgba(104, 104, 69, 0.1);
}

.partner-link {
    text-decoration: none;
    color: inherit;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.partner-logo-wrapper {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    margin-bottom: 8px;
}

.partner-card:hover .partner-logo-wrapper {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: scale(1.02);
}

.partner-logo {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(20%) opacity(0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.partner-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    text-align: center;
    width: 100%;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.partner-card:hover .partner-name {
    color: var(--primary);
    font-weight: 600;
}


/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 24px 0;
    border-top: none;
    text-align: center;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        border-radius: 0;
        padding: 16px 24px;
        width: 100%;
    }
    
    .navbar.scrolled {
        top: 0;
    }
    
    .nav-container {
        justify-content: space-between;
        gap: 16px;
    }
    
    .nav-logo {
        margin-right: 0;
    }
    
    .nav-logo a {
        font-size: 16px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px 24px;
        box-shadow: 0 5px 30px rgba(0,0,0,0.15);
        transition: var(--transition);
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .hero-title {
        margin-bottom: 24px;
        font-size: clamp(36px, 8vw, 64px);
        letter-spacing: 4px;
    }
    
    .hero-tree-container {
        margin: 0 auto 24px;
        border-radius: 16px;
    }
    
    .hero-tree-image {
        min-height: 300px;
        width: 100%;
        height: auto;
    }
    
    .hero-tree-container video {
        min-height: 300px;
        width: 100%;
        height: auto;
    }
    
    .hero-actions {
        flex-direction: column;
        margin-top: 24px;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .featured-property-slide {
        min-width: 100%;
        width: 100%;
    }
    
    .featured-properties-carousel-track {
        gap: 24px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .footer {
        padding: 20px 0;
        font-size: 12px;
    }
    
    .properties-grid,
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .category-card {
        padding: 24px 20px 20px;
        border-radius: 24px;
    }
    
    .category-icon-wrapper {
        width: 100%;
        height: 250px;
        margin: 16px auto 20px;
    }
    
    .category-icon {
        font-size: 42px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
    
    .category-link {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .commitment-section {
        padding: 40px 0;
    }
    
    .commitment-text {
        font-size: 18px;
        line-height: 1.5;
    }
    
    .partners-title {
        font-size: 28px;
    }
    
    .partners-subtitle {
        font-size: 14px;
    }
    
    .partner-slide {
        /* Una tarjeta visible por vista en móvil para mejor legibilidad */
        min-width: 80%;
    }
    
    .partner-logo-wrapper {
        width: 110px;
        height: 110px;
        padding: 15px;
    }
    
    .partner-logo {
        max-width: 90px;
        max-height: 90px;
    }
    
    .partner-name {
        font-size: 13px;
    }
    
    .partner-card {
        padding: 30px 20px;
        min-height: 200px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Tablet */
    @media (min-width: 769px) and (max-width: 1024px) {
        .featured-property-slide {
            min-width: calc(50% - 16px);
            width: calc(50% - 16px);
        }
        
        .partner-slide {
            min-width: calc(33.333% - 20px);
        }
        
        .partner-slide {
            min-width: 180px;
        }
        
        .partner-logo-wrapper {
            width: 120px;
            height: 120px;
        }
        
        .partner-logo {
            max-width: 100px;
            max-height: 100px;
        }
    }
    
    .location-image-wrapper {
        height: 350px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-section {
        padding: 30px 0;
    }
    
    .social-logo-img {
        height: 140px;
    }
    
    .social-logo-wrapper {
        margin-bottom: 10px;
        text-align: center;
    }
    
    .social-username {
        margin-bottom: 24px;
        text-align: center;
    }
    
    .social-username-text {
        font-size: 18px;
        letter-spacing: 0.8px;
    }
    
    .social-media-wrapper {
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
    
    .social-icons-container {
        gap: 24px;
        justify-content: center;
        align-items: center;
    }
    
    .social-icon-wrapper {
        min-width: 120px;
        padding: 20px;
        opacity: 0.7;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
    }
    
    .social-label {
        font-size: 12px;
    }
    
    .carousel-section {
        padding: 40px 0;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .carousel-slide {
        min-width: calc(50% - 8px);
        width: calc(50% - 8px);
        margin-right: 16px;
    }
    
    .carousel-image {
        height: 250px;
    }
    
    .carousel-image-wrapper {
        border-radius: 12px;
    }
    
    /* Tablet */
    @media (min-width: 769px) and (max-width: 1024px) {
        .carousel-slide {
            min-width: calc(33.333% - 10.67px);
            width: calc(33.333% - 10.67px);
        }
        
        .carousel-image {
            height: 300px;
        }
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .location-image-wrapper {
        height: 400px;
    }
}
