/* ========================================
   ESSENZA - SALON DE EVENTOS
   Clean & Optimized Styles
   ======================================== */

/* ========================================
   RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #003835;
    --color-primary-light: #005550;
    --color-white: #FFFFFF;
    --color-light-bg: #F8F9FA;
    --color-dark: #0a0a0a;
    --color-text: #4D515A;
    --color-text-light: #6c757d;
    --color-border: #e0e0e0;
    --font-primary: 'Lato', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 5rem 0;
}

.bg-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.bg-dark .section-label {
    color: #4fd1c5;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.bg-dark .section-title {
    color: var(--color-white);
}

.text-gradient {
    color: var(--color-primary);
}

.bg-dark .text-gradient {
    color: #4fd1c5;
}

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

.bg-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

/* Animation classes */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn__shine {
    display: none;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
}

.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav__logo-white {
    display: block;
}

.nav__logo-dark {
    display: none;
}

.nav.scrolled .nav__logo-white {
    display: none;
}

.nav.scrolled .nav__logo-dark {
    display: block;
}

.nav.scrolled .nav__logo img {
    height: 40px;
}

.nav__menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav__link {
    font-weight: 600;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.nav.scrolled .nav__link {
    color: var(--color-dark);
}

.nav__link:hover {
    color: var(--color-primary-light);
}

.nav__link--cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
}

.nav__link--cta:hover {
    background: var(--color-primary-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
}

.nav__toggle span {
    width: 100%;
    height: 3px;
    background: var(--color-white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav__toggle span {
    background: var(--color-dark);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
}

.hero__video-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 56, 53, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero__mesh,
.hero__orbs,
.orb {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem 0;
}

.hero__badge {
    margin-bottom: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.badge__glow,
.badge__ping {
    display: none;
}

.badge__dot {
    width: 8px;
    height: 8px;
    background: #4fd1c5;
    border-radius: 50%;
}

.badge__text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
}

.hero__title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.hero__title-main {
    display: block;
    font-weight: 400;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero__title-accent {
    display: block;
    color: var(--color-white);
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat__icon-box {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-white);
}

.stat__content {
    text-align: left;
}

.stat__number {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.stat__number::after {
    content: '+';
}

.stat__label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding-bottom: 2rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
    position: relative;
}

.about__bg,
.about__grid-pattern {
    display: none;
}

.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about__description {
    margin: 1.5rem 0;
}

.about__description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: var(--color-dark);
}

.feature__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-weight: 700;
}

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

.image-grid__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.image-grid__item--large {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
}

.image-grid__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-grid__item:hover img {
    transform: scale(1.05);
}

.image-grid__overlay {
    display: none;
}

/* ========================================
   SALONES SECTION
   ======================================== */
.salones {
    position: relative;
}

.salones__bg,
.salones__mesh,
.salones__particles,
.particle {
    display: none;
}

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

.salon-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.salon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.salon-card__image-container {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.salon-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.salon-card:hover .salon-card__image {
    transform: scale(1.05);
}

.salon-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 10;
}

.salon-card__badge--alt {
    background: var(--color-primary-light);
}

.salon-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 100%);
}

.salon-card__content {
    padding: 1.5rem;
}

.salon-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.salon-card__name {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-white);
}

.salon-card__capacity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.salon-card__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.salon-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    padding: 0.4rem 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    border-radius: 50px;
}

.salon-card__cta {
    width: 100%;
    justify-content: center;
}

/* ========================================
   SERVICIOS SECTION
   ======================================== */
.paquetes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.paquete-card {
    padding: 2rem;
    text-align: center;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.paquete-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
}

.paquete-card--featured {
    border-color: var(--color-primary);
    position: relative;
}

.paquete-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.paquete-card__header {
    margin-bottom: 1.5rem;
}

.paquete-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
}

.paquete-card__title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.paquete-card__desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.paquete-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
}

.paquete-card__link:hover {
    gap: 0.75rem;
}

/* Servicios incluidos */
.servicios-incluidos {
    margin-bottom: 3rem;
}

.servicios-incluidos__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.servicio-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--color-light-bg);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.servicio-item:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.servicio-item__icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.servicio-item__icon-box svg {
    width: 20px;
    height: 20px;
}

.servicio-item h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

/* Extras */
.extras {
    text-align: center;
}

.extras__title {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.extra-card {
    padding: 1.5rem;
    background: var(--color-light-bg);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.extra-card:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-5px);
}

.extra-card__icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.extra-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.extra-card p {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.extra-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ========================================
   GALLERY SECTION
   ======================================== */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery-filter__btn {
    padding: 0.75rem 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.gallery-filter__btn.active,
.gallery-filter__btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-item__overlay h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.gallery-item__overlay span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   EVENTOS SECTION
   ======================================== */
.eventos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.evento-card {
    padding: 2rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.evento-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.evento-card__icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 56, 53, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.evento-card:hover .evento-card__icon-box {
    background: var(--color-primary);
    color: var(--color-white);
}

.evento-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.evento-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta {
    text-align: center;
}

.cta__bg,
.cta__mesh,
.cta__orbs {
    display: none;
}

.cta__content {
    position: relative;
    z-index: 10;
}

.cta__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4fd1c5;
    margin-bottom: 1rem;
}

.cta__title {
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta__title .text-gradient {
    color: #4fd1c5;
}

.cta__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contacto-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contacto-info__item {
    padding: 1.5rem;
    background: var(--color-light-bg);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.contacto-info__item:hover {
    box-shadow: var(--shadow-sm);
}

.contacto-info__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.contacto-info__content h4 {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contacto-info__content p {
    color: var(--color-text);
    line-height: 1.5;
}

.contacto-info__extra {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 0.25rem;
}

.contacto-info__phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
    margin-bottom: 0.75rem;
}

.contacto-info__hours {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.contacto-info__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 0.75rem;
}

.contacto-info__link:hover {
    gap: 0.75rem;
}

/* Contact Form */
.contacto-form {
    padding: 2rem;
    background: var(--color-light-bg);
    border-radius: var(--radius-lg);
}

.contacto-form__title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.contacto-form__subtitle {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.contacto-form__privacy {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-align: center;
}

.contacto-form__privacy a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contacto-form__privacy a:hover {
    opacity: 0.7;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Map */
.contacto-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    border-radius: var(--radius-lg);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 3rem 0 1.5rem;
}

.footer__bg,
.footer__grid-pattern {
    display: none;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__logo {
    height: 45px;
    margin-bottom: 1rem;
}

.footer__tagline {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--color-primary);
}

.footer__title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__info li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer__info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer__privacy {
    margin-top: 0.5rem;
}

.footer__privacy a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.footer__privacy a:hover {
    color: var(--color-white);
}

.footer__credit {
    margin-top: 0.25rem;
    font-size: 0.8rem;
}

/* ========================================
   PRIVACY PAGE
   ======================================== */
.privacy-page {
    padding: 120px 0 60px;
    min-height: 100vh;
}

.privacy-page__content {
    max-width: 720px;
    margin: 0 auto;
}

.privacy-page__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: opacity 0.3s ease;
}

.privacy-page__back:hover {
    opacity: 0.7;
}

.privacy-page__content h1 {
    color: var(--color-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-page__content h2 {
    color: var(--color-primary);
    font-size: 1.15rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.privacy-page__content p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.privacy-page__content ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}

.privacy-page__content li {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0.25rem;
}

.privacy-page__updated {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.85rem;
}

/* ========================================
   LIGHTBOX
   ======================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox__prev {
    left: 20px;
}

.lightbox__next {
    right: 20px;
}

.lightbox__content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox__image {
    max-width: 100%;
    max-height: calc(90vh - 80px);
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox.active .lightbox__image {
    transform: scale(1);
    opacity: 1;
}

.lightbox__caption {
    text-align: center;
    margin-top: 1rem;
    color: white;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
}

.lightbox.active .lightbox__caption {
    opacity: 1;
    transform: translateY(0);
}

.lightbox__caption h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.lightbox__caption span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery item cursor */
.gallery-item {
    cursor: pointer;
}

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

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__text {
    font-weight: 700;
    font-size: 0.9rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.25rem;
    }

    .hero__title {
        font-size: 3rem;
    }

    .hero__title-main {
        font-size: 2rem;
    }

    .about__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

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

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

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

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

/* Mobile - OPTIMIZACIÓN COMPLETA */
@media (max-width: 767px) {
    /* Container */
    .container-main {
        padding: 0 1rem;
    }

    .section-padding {
        padding: 3rem 0;
    }

    /* Typography */
    .section-title {
        font-size: 1.875rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-label {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    /* Buttons - Touch optimized */
    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
        justify-content: center;
    }

    .btn-large {
        padding: 1.125rem 2rem;
        font-size: 1rem;
    }

    /* Navigation */
    .nav {
        padding: 1rem 0;
    }

    .nav.scrolled {
        padding: 0.75rem 0;
    }

    .nav__logo img {
        height: 40px;
    }

    .nav.scrolled .nav__logo img {
        height: 35px;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 100;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.active {
        right: 0;
    }

    .nav__menu .nav__link {
        color: var(--color-dark);
        font-size: 1.125rem;
        padding: 0.75rem 1.5rem;
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .nav__toggle {
        display: flex;
        z-index: 101;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 60px;
    }

    .hero__content {
        padding: 1.5rem 0 3rem;
    }

    .hero__badge {
        margin-bottom: 1.5rem;
    }

    .badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.8rem;
    }

    .badge__text {
        font-size: 0.75rem;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .hero__title-main {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero__subtitle br {
        display: none;
    }

    /* Stats */
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .stat {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 1rem;
    }

    .stat__icon-box {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }

    .stat__icon-box svg {
        width: 28px;
        height: 28px;
    }

    .stat__number {
        font-size: 1.75rem;
    }

    .stat__label {
        font-size: 0.8rem;
    }

    /* Hero CTA */
    .hero__cta {
        flex-direction: column;
        gap: 0.75rem;
        padding-bottom: 2rem;
    }

    .hero__cta .btn {
        width: 100%;
        max-width: 100%;
    }

    /* About Section */
    .about__description p {
        font-size: 1rem;
    }

    .feature {
        font-size: 0.9rem;
    }

    .feature__icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    /* Image Grid */
    .image-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .image-grid__item--large {
        grid-column: 1;
    }

    /* Salones */
    .salon-card__content {
        padding: 1.25rem;
    }

    .salon-card__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .salon-card__name {
        font-size: 1.5rem;
    }

    .salon-card__capacity {
        font-size: 0.8rem;
        padding: 0.4rem 0.875rem;
    }

    .salon-card__description {
        font-size: 0.95rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    /* Servicios - 2 columnas en móvil para reducir scroll vertical */
    .servicios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .servicio-item {
        padding: 0.625rem;
        flex-direction: column;
        text-align: center;
        gap: 0.375rem;
    }

    .servicio-item__icon-box {
        width: 32px;
        height: 32px;
    }

    .servicio-item__icon-box svg {
        width: 16px;
        height: 16px;
    }

    .servicio-item h4 {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* Paquetes */
    .paquete-card {
        padding: 1.5rem;
    }

    .paquete-card__icon {
        width: 60px;
        height: 60px;
    }

    .paquete-card__title {
        font-size: 1.125rem;
    }

    /* Extras */
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .extra-card {
        padding: 1.25rem;
    }

    .extra-card__icon {
        font-size: 2rem;
    }

    /* Eventos */
    .eventos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .evento-card {
        padding: 1.5rem 1.25rem;
    }

    .evento-card__icon-box {
        width: 70px;
        height: 70px;
    }

    .evento-card__icon-box svg {
        width: 40px;
        height: 40px;
    }

    .evento-card h3 {
        font-size: 1.125rem;
    }

    .evento-card p {
        font-size: 0.9rem;
    }

    /* Gallery */
    .gallery-filter {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .gallery-filter__btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        min-height: 44px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .gallery-item__overlay h4 {
        font-size: 1rem;
    }

    .gallery-item__overlay span {
        font-size: 0.8rem;
    }

    /* CTA Section */
    .cta__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .cta__subtitle {
        font-size: 1rem;
    }

    .cta__buttons {
        flex-direction: column;
    }

    .cta__buttons .btn {
        width: 100%;
    }

    /* Contact */
    .contacto-info__item {
        padding: 1.25rem;
    }

    .contacto-info__icon {
        width: 45px;
        height: 45px;
    }

    .contacto-info__icon svg {
        width: 28px;
        height: 28px;
    }

    .contacto-info__content h4 {
        font-size: 1rem;
    }

    .contacto-info__content p {
        font-size: 0.9rem;
    }

    .contacto-info__phone {
        font-size: 1.125rem;
    }

    /* Form */
    .contacto-form {
        padding: 1.5rem;
    }

    .contacto-form__title {
        font-size: 1.25rem;
    }

    .contacto-form__subtitle {
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.875rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.875rem;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Map */
    .map-container iframe {
        height: 300px;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer__logo {
        height: 40px;
    }

    .footer__tagline {
        font-size: 0.9rem;
    }

    .footer__social-link {
        width: 44px;
        height: 44px;
    }

    .footer__title {
        font-size: 0.95rem;
    }

    .footer__links a,
    .footer__info li {
        font-size: 0.875rem;
    }

    .footer__bottom {
        font-size: 0.85rem;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 14px;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
    }

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

    .whatsapp-float__text {
        display: none;
    }

    /* Lightbox mobile */
    .lightbox__close {
        top: 15px;
        right: 15px;
        width: 44px;
        height: 44px;
    }

    .lightbox__nav {
        width: 44px;
        height: 44px;
    }

    .lightbox__prev {
        left: 10px;
    }

    .lightbox__next {
        right: 10px;
    }

    .lightbox__caption h4 {
        font-size: 1rem;
    }

    .lightbox__caption span {
        font-size: 0.8rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container-main {
        padding: 0 0.875rem;
    }

    .hero__title {
        font-size: 1.75rem;
    }

    .hero__title-main {
        font-size: 1.125rem;
    }

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

    .cta__title {
        font-size: 1.5rem;
    }
}

/* Extra Small Mobile - 320px */
@media (max-width: 375px) {
    .container-main {
        padding: 0 0.75rem;
    }

    .hero__title {
        font-size: 1.625rem;
    }

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

    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
}
