@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@600;700;800&display=swap');

:root {
  --navy: #0c2340;
  --navy-light: #16325b;
  --teal: #00b4d8;
  --teal-dark: #0096b4;
  --coral: #ff6b6b;
  --gold: #ffd166;
  --sandy: #fef9ef;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.display-heading {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
}

/* ===== NAVBAR ===== */
.navbar-modern {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar-modern.scrolled {
  background: rgba(12, 35, 64, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
}

.navbar-modern .navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white) !important;
  letter-spacing: -0.5px;
}

.navbar-modern .navbar-brand span {
  color: var(--teal);
}

.navbar-modern .nav-link {
  color: rgba(255,255,255,0.8) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-modern .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-modern .nav-link:hover {
  color: var(--white) !important;
}

.navbar-modern .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-modern .btn-nav {
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 8px 24px !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.navbar-modern .btn-nav:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,180,216,0.3);
}

.navbar-modern .btn-nav::after { display: none; }

/* ===== HERO ===== */
.hero-full {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0f2b4a 40%, #14375c 100%);
  overflow: hidden;
}

.hero-full::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(0,180,216,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255,107,107,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(255,209,102,0.05) 0%, transparent 50%);
  z-index: 1;
}

.hero-full .hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  z-index: 1;
}

.hero-full .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.hero-full .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  color: var(--teal);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-full h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-full h1 .highlight {
  background: linear-gradient(135deg, var(--teal), #48cae4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-full p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-full .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
  margin-top: 32px;
}

.hero-full .btn-hero-primary {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-full .btn-hero-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,180,216,0.3);
  color: var(--white);
}

.hero-full .btn-hero-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-full .btn-hero-secondary:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
  color: var(--white);
}

.hero-full .hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-full .hero-stat h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  line-height: 1;
}

.hero-full .hero-stat p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 4px 0 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Floating shapes */
.hero-full .hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.hero-full .hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero-full .hero-shapes .shape-1 {
  width: 600px;
  height: 600px;
  background: var(--teal);
  top: -200px;
  right: -200px;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero-full .hero-shapes .shape-2 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  bottom: -100px;
  left: -100px;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

.hero-full .hero-shapes .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--gold);
  top: 40%;
  right: 10%;
  animation: floatSlow 15s ease-in-out infinite 2s;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* ===== SECTION ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-50);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto;
}

.section-header .section-tag {
  display: inline-block;
  background: rgba(0,180,216,0.1);
  color: var(--teal-dark);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ===== CARDS PREMIUM ===== */
.card-premium {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  height: 100%;
}

.card-premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-premium .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

.card-premium:hover .card-img-wrap img {
  transform: scale(1.08);
}

.card-premium .card-img-wrap .card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(12,35,64,0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}

.card-premium .card-img-wrap .card-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  z-index: 2;
}

.card-premium .card-img-wrap .card-price small {
  font-weight: 400;
  opacity: 0.7;
  font-size: 0.75rem;
}

.card-premium .card-body {
  padding: 24px;
}

.card-premium .card-body h5 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}

.card-premium .card-body .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.card-premium .card-body .card-meta svg {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.card-premium .card-body p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-premium .card-body .btn-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.card-premium .card-body .btn-card:hover {
  gap: 14px;
  color: var(--navy);
}

/* ===== SERVICE CARDS (index) ===== */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all var(--transition);
}

.service-card:nth-child(1) .service-icon {
  background: rgba(0,180,216,0.1);
  color: var(--teal);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(255,107,107,0.1);
  color: var(--coral);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(255,209,102,0.1);
  color: #d4a800;
}

.service-card:hover .service-icon {
  transform: scale(1.1) translateY(-4px);
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.service-card .btn-service {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  padding: 10px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
  display: inline-block;
}

.service-card:hover .btn-service {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,180,216,0.25);
}

/* ===== DETAIL PAGE ===== */
.detail-hero {
  background: var(--navy);
  padding: 140px 0 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.detail-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.detail-hero .detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.detail-hero .detail-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-hero .detail-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal);
}

/* ===== CAROUSEL ===== */
.carousel-premium .carousel-img {
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.carousel-premium .carousel-item {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-premium .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  margin: 0 4px;
  transition: all 0.3s ease;
}

.carousel-premium .carousel-indicators button.active {
  background: var(--teal);
  width: 30px;
  border-radius: 5px;
}

.carousel-premium .carousel-control-prev,
.carousel-premium .carousel-control-next {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.carousel-premium:hover .carousel-control-prev,
.carousel-premium:hover .carousel-control-next {
  opacity: 1;
}

.carousel-premium .carousel-control-prev { left: 20px; }
.carousel-premium .carousel-control-next { right: 20px; }

/* ===== FOOTER ===== */
.footer-modern {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-modern .footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-modern .footer-brand span {
  color: var(--teal);
}

.footer-modern p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-modern h5 {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-modern ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-modern ul li {
  margin-bottom: 10px;
}

.footer-modern ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-modern ul li a:hover {
  color: var(--teal);
  transform: translateX(4px);
}

.footer-modern .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-modern {
  background: transparent;
  padding: 16px 0;
  margin: 0;
}

.breadcrumb-modern .breadcrumb-item {
  font-size: 0.85rem;
}

.breadcrumb-modern .breadcrumb-item a {
  color: var(--gray-400);
  text-decoration: none;
}

.breadcrumb-modern .breadcrumb-item.active {
  color: var(--gray-600);
}

.breadcrumb-modern .breadcrumb-item + .breadcrumb-item::before {
  color: var(--gray-400);
}

/* ===== FORM ===== */
.form-premium .form-control,
.form-premium .form-select {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-premium .form-control:focus,
.form-premium .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.1);
}

.form-premium label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

/* ===== BUTTON ===== */
.btn-modern {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-modern-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,180,216,0.3);
  color: var(--white);
}

.btn-modern-outline {
  background: transparent;
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
}

.btn-modern-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

/* ===== TABLE ===== */
.table-modern {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
}

.table-modern thead th {
  background: var(--gray-50);
  color: var(--gray-600);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 16px;
  border-bottom: 2px solid var(--gray-200);
}

.table-modern tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.9rem;
  vertical-align: middle;
}

.table-modern tbody tr {
  transition: background 0.2s ease;
}

.table-modern tbody tr:hover {
  background: var(--gray-50);
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 120px 0 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 800;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-d1 { transition-delay: 0.1s; }
.fade-in-d2 { transition-delay: 0.2s; }
.fade-in-d3 { transition-delay: 0.3s; }

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

/* ===== DETAIL INFO CARD ===== */
.info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.info-card .info-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}

.info-card .info-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.info-card .info-divider {
  height: 1px;
  background: var(--gray-100);
  margin: 20px 0;
}

.info-card .info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
}

.info-card .info-row .label {
  color: var(--gray-500);
}

.info-card .info-row .value {
  font-weight: 600;
  color: var(--gray-800);
}

.info-card .btn-reservar {
  width: 100%;
  padding: 14px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
  text-align: center;
}

.info-card .btn-reservar:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,180,216,0.3);
  color: var(--white);
}

/* ===== STATUS BADGE ===== */
.badge-status {
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-pendiente {
  background: rgba(255,209,102,0.15);
  color: #b8860b;
}

.badge-confirmada {
  background: rgba(0,200,83,0.15);
  color: #00a86b;
}

.badge-cancelada {
  background: rgba(255,107,107,0.15);
  color: #dc3545;
}

/* ===== ADMIN ===== */
.admin-sidebar {
  min-height: 100vh;
  background: var(--navy);
}

.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
  margin: 2px 12px;
  padding: 10px 16px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-sidebar .nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  transform: translateX(4px);
}

.admin-sidebar .nav-link.active {
  color: var(--white);
  background: rgba(0,180,216,0.15);
}

.table-actions { white-space: nowrap; }

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}

.stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ===== DETAIL PAGES ===== */
.detail-info {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.detail-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.detail-tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  background: var(--navy);
  color: var(--white);
}

.detail-tag.tag-sale { background: var(--coral); }
.detail-tag.tag-rent { background: var(--teal); }

.detail-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.detail-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.detail-spec {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.spec-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-700);
}

.detail-description h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.detail-description p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== AUTH PAGES ===== */
.auth-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.auth-brand {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -1px;
}

.auth-brand span { color: var(--accent, var(--teal)); }

.auth-card .form-control-lg {
  border-radius: 12px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.auth-card .form-control-lg:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.1);
}

/* ===== BANK CARDS ===== */
.bank-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
}

.bank-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.bank-detail {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 4px;
}

.bank-detail span {
  font-weight: 600;
  color: var(--gray-700);
}

.reserva-num {
  font-weight: 700;
  font-family: 'Courier New', monospace;
  color: var(--navy);
}

/* ===== GLOBAL BUTTON OVERRIDES ===== */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  border: none;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,180,216,0.35);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,180,216,0.45);
  color: var(--white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-full { min-height: 90vh; }
  .hero-full h1 { font-size: 2rem; }
  .hero-full .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section { padding: 48px 0; }
  .section-header h2 { font-size: 1.75rem; }
  .carousel-premium .carousel-img { height: 280px; }
  .detail-hero { padding: 120px 0 40px; }
  .detail-hero h1 { font-size: 1.75rem; }
  .info-card { position: static; }
  .footer-modern { padding: 40px 0 0; }
}
