/* RESET Y TIPOGRAFÍA */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', 'Montserrat', Arial, sans-serif;
  background: #f7f8fa;
  color: #23263A;
  line-height: 1.6;
}

/* NAVBAR MODERNO */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(60,60,90,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  transition: background 0.3s;
}
nav .logo img {
  height: 60px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(102,126,234,0.08);
}
nav ul {
  display: flex;
  gap: 2vw;
  list-style: none;
}
nav ul li a {
  color: #23263A;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a.active, nav ul li a:hover {
  background: #e0e7ff;
  color: #6366f1;
}
nav .icon, .nav-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-login, .btn-register {
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 8px 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(102,126,234,0.08);
  text-decoration: none;
  font-size: 1rem;
}
.btn-login {
  background: #667eea;
  color: #fff;
}
.btn-login:hover {
  background: #6366f1;
}
.btn-register {
  background: #10b981;
  color: #fff;
}
.btn-register:hover {
  background: #059669;
}

/* BUSCADOR RESPONSIVO */
.search-bar-inner {
  max-width: 320px;
  position: relative;
}

.search-bar-input-wrap { 
  position: relative; 
}

.search-bar-input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  border-radius: 12px;
  border: 1.5px solid #d1d5db;
  font-size: 1em;
  background: #fff;
  color: #23263A;
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.10);
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
}

.search-bar-input:focus {
  border: 1.5px solid #667eea;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.13);
}

.search-bar-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #667eea;
  font-size: 1.1em;
  pointer-events: none;
}

.search-bar-suggestions {
  position: absolute;
  left: 0; right: 0;
  top: 110%;
  background: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10);
  margin-top: 6px;
  z-index: 100;
  max-height: 320px;
  overflow-y: auto;
  padding: 0;
  list-style: none;
  min-width: 280px;
}

.search-bar-suggestions li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.98em;
  color: #23263A;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s;
}

.search-bar-suggestions li:last-child { 
  border-bottom: none; 
}

.search-bar-suggestions li:hover, 
.search-bar-suggestions li.active {
  background: #eef2ff;
}

.search-bar-suggestions img {
  width: 60px !important;
  height: 80px !important;
  max-width: none !important;
  object-fit: contain;
  border-radius: 8px !important;
  background: #f3f4f6;
  flex-shrink: 0;
  align-self: center;
}

/* NAVEGACIÓN DESKTOP */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  margin-right: 250px;
}

.desktop-nav ul li a {
  text-decoration: none;
  color: #23263A;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.desktop-nav ul li a:hover {
  background: #e0e7ff;
  color: #667eea;
}

.desktop-nav .icon {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* NAVEGACIÓN MÓVIL */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 999;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav .search-bar-inner {
  width: 100%;
  max-width: 320px;
}

.mobile-nav .nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.mobile-nav .nav-links li a {
  text-decoration: none;
  color: #23263A;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav .nav-links li a:hover {
  background: #e0e7ff;
  color: #667eea;
}

.mobile-nav .nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 100%;
  max-width: 320px;
}

.mobile-nav .nav-buttons a,
.mobile-nav .nav-buttons button {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, transform 0.2s;
}

.mobile-nav .nav-buttons a:hover,
.mobile-nav .nav-buttons button:hover {
  transform: translateY(-2px);
}

/* HERO / HOME */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #667eea 0%, #764ba2 100%), url('../img/logo.png') no-repeat center/cover;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40,40,60,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  animation: fadeInUp 1.2s cubic-bezier(.23,1.01,.32,1) both;
}
.hero-text {
  flex: 1;
  max-width: 600px;
}
.hero-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1.2s cubic-bezier(.23,1.01,.32,1) both;
}
.hero-logo-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(255,255,255,0.2));
  animation: float 6s ease-in-out infinite;
}
.hero-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(60,60,90,0.18);
}
.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #e0e7ff;
  font-weight: 400;
}
.hero-cta {
  background: linear-gradient(90deg, #fac031 0%, #f39c12 100%);
  color: #23263A;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  padding: 16px 38px;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(250,192,49,0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-top: 1rem;
}
.hero-cta:hover {
  background: #fbbf24;
  color: #fff;
  transform: scale(1.05);
}

/* ABOUT */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0 80px 0;
}
.about-img {
  flex: 1 1 320px;
  max-width: 420px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(99,102,241,0.10);
  overflow: hidden;
  animation: fadeInLeft 1.2s both;
}
.about-img img {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.about-content {
  flex: 2 1 400px;
  max-width: 600px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(60,60,90,0.08);
  padding: 2.5rem 2rem;
  animation: fadeInRight 1.2s both;
}
.about-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #6366f1;
  margin-bottom: 1rem;
}
.about-content h3 {
  font-size: 1.3rem;
  color: #23263A;
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* MENU */
.menu {
  background: linear-gradient(120deg, #fff 0%, #f1f5f9 100%);
  padding: 80px 0;
}
.menu-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fac031;
  margin-bottom: 2.5rem;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(99,102,241,0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  position: relative;
  min-height: 260px;
  animation: fadeInUp 1s both;
}
.menu-card:hover {
  box-shadow: 0 8px 32px rgba(99,102,241,0.18);
  transform: translateY(-6px) scale(1.03);
}
.menu-card .menu-icon {
  font-size: 2.5rem;
  color: #667eea;
  margin-bottom: 1rem;
}
.menu-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #23263A;
}
.menu-card p {
  color: #6b7280;
  font-size: 1rem;
  text-align: center;
}

/* NOTICIAS */
.noticias {
  background: linear-gradient(120deg, #fff 0%, #f1f5f9 100%);
  padding: 80px 0;
}
.noticias-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #6366f1;
  margin-bottom: 2.5rem;
}
.noticias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.noticia-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(60,60,90,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  animation: fadeInUp 1s both;
}
.noticia-card:hover {
  box-shadow: 0 8px 32px rgba(99,102,241,0.18);
  transform: translateY(-6px) scale(1.03);
}
.noticia-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e0e7ff;
}
.noticia-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.noticia-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #23263A;
  margin-bottom: 0.5rem;
}
.noticia-date {
  color: #667eea;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}
.noticia-summary {
  color: #6b7280;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.noticia-btn {
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.noticia-btn:hover {
  background: #667eea;
  color: #fff;
}
.noticias-cta {
  text-align: center;
  margin-top: 3rem;
}
.noticias-btn {
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 16px 38px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(102,126,234,0.18);
}
.noticias-btn:hover {
  background: #6366f1;
  transform: scale(1.05);
}

/* CARTAS */
.cartas {
  background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
}
.cartas-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 2.5rem;
}
.cartas-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.cartas-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 2rem;
}
.carta-card {
  min-width: calc(33.333% - 1.33rem);
  flex-shrink: 0;
  padding: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(102, 126, 234, 0.9);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
}
.carousel-btn:hover {
  background: rgba(102, 126, 234, 1);
}
.carousel-btn.prev {
  left: 20px;
}
.carousel-btn.next {
  right: 20px;
}
.carta-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  animation: fadeInUp 1s both;
}
.carta-card:hover {
  box-shadow: 0 8px 32px rgba(102,126,234,0.18);
  transform: translateY(-6px) scale(1.03);
}
.carta-image {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
.carta-img {
  width: 280px;
  height: 390px;
  object-fit: contain;
  transition: transform 0.3s;
  margin-top: 15px;
  margin-left: 50px;
}
.carta-card:hover .carta-img {
  transform: scale(1.05);
}
.carta-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.carta-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #23263A;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.carta-type {
  color: #667eea;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.carta-price {
  color: #059669;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.carta-btn {
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.carta-btn:hover {
  background: #6366f1;
  color: #fff;
}

/* GALERÍA */
.galeria {
  background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
}
.galeria-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 2.5rem;
}
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.galeria-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(250,192,49,0.08);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  animation: fadeInUp 1s both;
}
.galeria-item:hover {
  box-shadow: 0 8px 32px rgba(250,192,49,0.18);
  transform: scale(1.04);
}
.galeria-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.3s;
}
.galeria-item:hover .galeria-img {
  transform: scale(1.08);
}
.galeria-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: #667eea;
  color: #fff;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(102,126,234,0.12);
}

/* REVIEWS */
.reviews {
  background: linear-gradient(120deg, #fff 0%, #f1f5f9 100%);
  padding: 80px 0;
}
.reviews-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 2.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.review-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(102,126,234,0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 1s both;
  transition: all 0.3s ease;
  border: 1px solid rgba(102,126,234,0.1);
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}
.review-card:hover {
  box-shadow: 0 12px 40px rgba(102,126,234,0.15);
  transform: translateY(-8px);
  border-color: rgba(102,126,234,0.2);
}

/* Review Header */
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.review-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.review-user-details {
  flex: 1;
}

.review-name {
  font-weight: 700;
  color: #1f2937;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.review-role {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.review-role i {
  color: #667eea;
}

/* Review Rating */
.review-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.review-stars {
  color: #fbbf24;
  font-size: 1rem;
}

.review-score {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Review Content */
.review-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Review Tags */
.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-tag {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
  color: #4f46e5;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

/* Review Reputation */
.review-reputation {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.reputation-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.reputation-item i {
  color: #667eea;
  width: 16px;
}

/* Review Transaction */
.review-transaction {
  margin-top: auto;
}

.transaction-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.transaction-card-img {
  width: 48px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.transaction-card-info {
  flex: 1;
}

.transaction-card-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.transaction-date {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Review Empty State */
.review-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
  color: #6b7280;
}

.review-empty i {
  font-size: 3rem;
  color: #667eea;
  margin-bottom: 1rem;
}

.review-empty-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.review-empty-subtext {
  font-size: 0.875rem;
  color: #6b7280;
}

/* TEAM */
.team {
  background: linear-gradient(120deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 80px 0;
}
.team-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #667eea;
  margin-bottom: 2.5rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(219,39,119,0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1s both;
  transition: box-shadow 0.2s, transform 0.2s;
}
.team-card:hover {
  box-shadow: 0 8px 32px rgba(219,39,119,0.18);
  transform: scale(1.04);
}
.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #667eea;
}
.team-name {
  font-weight: 700;
  color: #23263A;
  margin-bottom: 0.3rem;
}
.team-role {
  color: #667eea;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.team-social {
  display: flex;
  gap: 10px;
  margin-top: 0.5rem;
}
.team-social a {
  color: #667eea;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.team-social a:hover {
  color: #6366f1;
}

/* FOOTER */
footer {
  background: linear-gradient(120deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  padding: 60px 25px 20px 25px;
  text-align: center;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.footer-logo {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 200px;
}
.footer-logo-img {
  width: 120px;
  height: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-logo-text {
  color: #e0e7ff;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.4;
}
.footer-col {
  min-width: 180px;
}
.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.footer-links-grid ul {
  margin: 0;
}
.footer-col ul li a {
  color: #e0e7ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fbbf24;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.footer-social a {
  color: #fbbf24;
  font-size: 1.4rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #fff;
}
.footer-copy {
  color: #e0e7ff;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* ANIMACIONES */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: none; }
}
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: none; }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: none; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .desktop-nav ul {
    margin-right: 200px;
  }
}

@media (max-width: 1200px) {
  .desktop-nav ul {
    margin-right: 150px;
  }
}

@media (max-width: 1024px) {
  .menu-grid, .noticias-grid, .galeria-grid, .reviews-grid, .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    padding: 0 1rem;
  }
  
  .review-card {
    padding: 1.5rem;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .review-rating {
    align-items: flex-start;
  }
  .cartas-carousel {
    max-width: 90vw;
  }
  .carta-card {
    min-width: calc(50% - 1rem);
  }
  nav ul {
    gap: 1vw;
  }
  
  .desktop-nav ul {
    margin-right: 100px;
  }
}
@media (max-width: 1160px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .hero-text {
    max-width: 100%;
  }
  .hero-logo-img {
    max-width: 300px;
  }
  
  /* NAVBAR MÓVIL */
  nav {
    padding: 0.5rem 1rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  .desktop-nav {
    display: none;
  }
  
  .desktop-nav ul {
    margin-right: 50px;
  }
  
  .mobile-nav .search-bar-inner { 
    max-width: 100%; 
  }
  
  .mobile-nav .search-bar-input { 
    font-size: 0.97em; 
    padding: 8px 8px 8px 36px; 
  }
  
  .mobile-nav .search-bar-suggestions li { 
    font-size: 0.95em; 
    padding: 8px 12px; 
  }
  
  .mobile-nav .search-bar-suggestions img { 
    width: 30px !important; 
    height: 40px !important; 
  }
  .about {
    flex-direction: column;
    padding: 60px 0;
  }
  .about-img, .about-content {
    max-width: 95vw;
  }
  .menu-grid, .noticias-grid, .galeria-grid, .reviews-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
    padding: 0 0.5rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .review-user-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .review-avatar {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .transaction-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .transaction-card-img {
    width: 40px;
    height: 56px;
  }
  .cartas-carousel {
    max-width: 95vw;
  }
  .carta-card {
    min-width: 100%;
  }
  
  .carta-img {
    width: 200px;
    height: 280px;
  }
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  .footer-main {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-logo {
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .footer-logo-img {
    width: 100px;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 768px) {
  .desktop-nav ul {
    margin-right: 25px;
  }
}

@media (max-width: 480px) {
  .desktop-nav ul {
    margin-right: 10px;
  }
}

@media (min-width: 1160px) {
  .mobile-nav {
    display: none !important;
  }
  
  .hamburger {
    display: none;
  }
}