/* 
   SISTEMA DE DISEÃ‘O COMPARTIDO - V3
   Minimalismo, Bento Grid & Glassmorphism
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

:root {
    /* Paleta Compartida - Nueva Base CÃ¡lida */
    --bg-primary: #fffcf8;      /* Fondo Principal Crema */
    --bg-subtle: #f6f4dd;       /* Fondo Sutil / Secciones */
    --gray-support: #606060;
    --dark-neutral: #212227;
    
    /* Tokens de DiseÃ±o */
    --accent-primary: #798146;   /* Verde Laguna GarzÃ³n por defecto */
    --bg-dark-contrast: #212227; /* Neutro Oscuro por defecto */
    --card-radius: 24px;
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --letter-spacing-subtle: 0.02em;
    --letter-spacing-wide: 0.05em;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.04);
    --glass-bg: rgba(255, 252, 248, 0.7); /* Basado en el nuevo fondo */
    --glass-blur: blur(12px);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--dark-neutral);
    line-height: 1.6;
    letter-spacing: var(--letter-spacing-subtle);
    font-weight: 200;
    overflow-x: hidden;
}

/* Transiciones de PÃ¡gina */
.fade-in {
    animation: fadeIn 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* NAVBAR GLASSMORPHISM */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo, .nav-logo a {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 33px; /* Reducido 40% del original 55px */
    width: auto;
    display: block; /* Elimina espacio inferior residual */
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 1.5rem;
}

@media (min-width: 1201px) {
    .nav-menu {
        display: flex;
        align-items: center;
        margin-left: auto;
        margin-right: 2rem;
        white-space: nowrap;
    }
}

.lang-selector {
    display: flex;
    justify-content: flex-end;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--dark-neutral);
    padding: 0.5rem;
    transition: var(--transition-smooth);
}

.lang-current .material-symbols-outlined {
    color: var(--accent-primary) !important;
}

.lang-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.5rem;
    z-index: 1001;
    min-width: 150px;
}

.lang-dropdown:hover .lang-options {
    display: block;
}

.lang-option {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--dark-neutral);
    transition: var(--transition-smooth);
}

.lang-option:hover {
    background: var(--bg-crema);
    color: var(--accent-primary);
}

.nav-link {
    text-decoration: none;
    color: var(--dark-neutral);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: var(--letter-spacing-wide);
    opacity: 0.6;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    opacity: 1;
    transform: translateY(-1px);
    color: var(--accent-primary) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--accent-primary);
}

.lang-selector-mobile {
    display: none;
}

/* HEADER MINIMALISTA */
.section-header {
    padding: 160px 5% 60px;
    text-align: center;
}

.section-header h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray-support);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 200;
}

/* BENTO GRID LAYOUT */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 20px 5% 100px;
    max-width: 1400px;
    margin: 0 auto;
}

/* CARDS CON BORDER RADIUS 24PX */
.activity-card {
    background: #ffffff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.activity-card:hover, .activity-card.active {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.activity-card.active {
    border-color: var(--accent-primary);
}

.activity-card.active .card-content h3 {
    color: var(--accent-primary);
}

.card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-subtle);
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

.activity-card:hover .card-content h3 {
    color: var(--accent-primary);
}

.card-content p {
    color: var(--gray-support);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* BOTONES CTA CON COLOR DE ACENTO */
.btn-main {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent-primary);
    color: var(--btn-text-color, #ffffff);
    border-radius: 100px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: var(--letter-spacing-wide);
    text-align: center;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    filter: brightness(1.1);
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-support);
    text-decoration: none;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-subtle);
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: var(--transition-smooth);
}

.btn-video:hover {
    color: var(--dark-neutral);
}

/* BADGE TAGS PARA TOKKO AMENITIES */
.badge-tag {
    display: inline-block;
    background: rgba(0,0,0,0.05);
    color: var(--dark-neutral);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 200;
    letter-spacing: var(--letter-spacing-wide);
    border: 1px solid rgba(0,0,0,0.08);
}

/* FOOTER OSCURO NEUTRO */
.footer {
    background: var(--bg-dark-contrast);
    color: rgba(255,255,255,0.5);
    padding: 60px 5%;
    text-align: center;
    font-size: 0.9rem;
}

/* DROPDOWN IDIOMAS SUTIL */
.lang-dropdown {
    position: relative;
    margin-left: 1.5rem;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 1.5rem;
}

.lang-current {
    background: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--dark-neutral);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.lang-current:hover {
    opacity: 1;
    color: var(--accent-primary);
}

.lang-options {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 120px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1100;
}

.lang-dropdown:hover .lang-options,
.lang-dropdown.active .lang-options {
    display: flex;
}

.lang-option {
    background: none;
    border: none;
    padding: 10px 15px;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 200;
    letter-spacing: var(--letter-spacing-wide);
    color: var(--dark-neutral);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.lang-option:hover {
    background: rgba(0,0,0,0.05);
    color: var(--accent-primary);
}

/* SECCION SOBRE NOSOTROS (BENTO STYLE) */
.about-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.profile-card {
    background: var(--bg-subtle);
    border-radius: var(--card-radius);
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
}

.profile-img-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 4px solid #fff;
    box-shadow: var(--shadow-soft);
}

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

.profile-card h2 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
}

.profile-card .tagline {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--gray-support);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
}

.profile-bio {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--dark-neutral);
    text-align: justify;
}

@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .lang-dropdown {
        order: 2;
        margin-left: auto;
        border: none;
        padding: 0;
    }

    .section-header {
        padding-top: 130px;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        display: flex;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        transform: none;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem 1rem;
        border-radius: 24px;
        gap: 1.5rem;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 1px solid rgba(0,0,0,0.05);
    }

    .nav-menu.active {
        display: flex;
    }

    .lang-selector {
        display: none;
    }
    
    .lang-selector-mobile {
        display: flex !important;
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(0,0,0,0.08);
    }

    .lang-selector-mobile .lang-option {
        background: #f5f5f5;
        border: 1px solid rgba(0,0,0,0.1);
        padding: 8px 12px;
        border-radius: 8px;
        font-size: 0.8rem;
        font-weight: 200;
        letter-spacing: var(--letter-spacing-wide);
        color: var(--dark-neutral);
    }
}

/* BOTON FLOTANTE DE WHATSAPP */
.wsp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wsp-float:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    background-color: #20ba5a;
}

.wsp-float svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .wsp-float {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
    }
    .wsp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ==========================================
   NUEVA SECCIÓN LIFESTYLE PREMIUM & MINIMALISTA
   ========================================== */

.lifestyle-section {
    position: relative;
    padding: 80px 5%;
    background-color: var(--bg-primary);
}

.lifestyle-section:nth-of-type(even) {
    background-color: var(--bg-subtle);
}

.lifestyle-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.lifestyle-section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 300;
    color: var(--accent-primary);
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.lifestyle-section-header p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-support);
    line-height: 1.5;
}

/* ICONOS ESTILO APPLE (SF SYMBOLS) */
.apple-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.3px;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    transition: var(--transition-smooth);
}

.apple-icon-large {
    width: 36px;
    height: 36px;
    stroke-width: 1.1px;
}

/* GRID DE COLUMNAS GEOGRÁFICAS */
.lifestyle-columns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.lifestyle-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lifestyle-column-title {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark-neutral);
    letter-spacing: var(--letter-spacing-wide);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

/* TARJETAS DE LIFESTYLE */
.lifestyle-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lifestyle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--accent-primary);
}

.lifestyle-card h4 {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--dark-neutral);
    margin: 0;
}

.lifestyle-card p.detail {
    font-size: 0.88rem;
    color: var(--gray-support);
    font-weight: 300;
    line-height: 1.45;
    margin: 0;
}

.lifestyle-card-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.05);
    padding-top: 0.75rem;
}

.contact-link-row {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--gray-support);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 300;
    width: fit-content;
}

.contact-link-row:hover {
    color: var(--accent-primary);
}

.contact-link-row .apple-icon {
    width: 15px;
    height: 15px;
    stroke-width: 1.3px;
    color: var(--accent-primary);
}

/* INVEST IN URUGUAY - ESTÉTICA CREMA COMPARTIDA */
.invest-section {
    padding: 80px 5%;
    background-color: var(--bg-primary);
}

.invest-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.invest-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 300;
    color: var(--accent-primary);
    letter-spacing: var(--letter-spacing-wide);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.invest-header p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-support);
    line-height: 1.6;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.invest-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.invest-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-primary);
}

.invest-card-icon {
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.invest-card h3 {
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark-neutral);
    margin: 0;
    letter-spacing: var(--letter-spacing-wide);
}

.invest-card p {
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.5;
    color: var(--gray-support);
    margin: 0;
    text-align: left;
}

.invest-footer {
    text-align: center;
    background: var(--bg-subtle);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.invest-footer h4 {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--dark-neutral);
    margin-bottom: 0.75rem;
}

.invest-footer p {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--gray-support);
    line-height: 1.6;
    margin: 0;
}

/* CONTENEDOR DE DETALLES DESPLEGABLES LIFESTYLE */
.lifestyle-details-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 100px;
}

.lifestyle-details-section {
    display: none;
    background-color: transparent;
    margin-top: 40px;
}

.lifestyle-details-section.active {
    display: block;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.lifestyle-details-section .lifestyle-section,
.lifestyle-details-section .invest-section {
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    padding: 60px 6%;
}

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

/* Ocultar secciones Sobre Nosotros y Lifestyle temporalmente */
li:has(> a[data-i18n="nav_about"]),
li:has(> a[data-i18n="nav_lifestyle"]) {
    display: none !important;
}

