:root {
  --primary-color: #8fa60c;       /* Verde de marca legible y contrastado */
  --primary-light: #b4cc1c;       /* Verde brillante exacto del logotipo */
  --secondary-color: #c4d649;     /* Tonalidad de transición suave */
  --accent-color: #575756;        /* Gris exacto del logotipo */
  --dark-color: #3b3b3a;          /* Gris oscuro para fondos y textos fuertes */
  --light-color: #f7f9f4;         /* Crema verdoso muy suave para fondo de página */
  --bg-card: #ffffff;
  --glass-bg: rgba(247, 249, 244, 0.85); /* Vidrio esmerilado de marca */
  --glass-border: rgba(180, 204, 28, 0.2);
  --text-color: #4c4c4b;          /* Gris carbón para óptima legibilidad */
  --text-muted: #757574;          /* Gris medio atenuado */
  
  --font-main: 'Outfit', 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-main);
  color: var(--text-color);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

/* Typography */
h1, h2, h3, h4 {
  color: var(--dark-color);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: var(--transition);
}

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

.logo-container {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-slogan {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Buscador Central */
.navbar-search {
  flex: 0 1 350px;
  margin: 0 1.5rem;
}

.search-form {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(191, 87, 55, 0.2);
  border-radius: 50px;
  padding: 4px 6px 4px 16px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02), 0 2px 8px rgba(0,0,0,0.02);
  transition: var(--transition);
}

.search-form:focus-within {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(191, 87, 55, 0.15);
  background: #ffffff;
}

.search-input {
  border: none;
  background: none;
  outline: none;
  width: 100%;
  padding: 6px 0;
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--dark-color);
}

.search-input::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.search-btn {
  border: none;
  background: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover {
  background: var(--primary-light);
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 1.5rem;
}

.nav-links li a {
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links li a:hover::after,
.nav-links li a.active::after {
  width: 100%;
}

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

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark-color);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding-top: 80px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.hero-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.25);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 15;
  transition: var(--transition);
  opacity: 0;
}

.hero:hover .hero-control {
  opacity: 1;
}

.hero-control:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.hero-control.prev {
  left: 2rem;
}

.hero-control.next {
  right: 2rem;
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 15;
}

.hero-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.hero-indicators .indicator.active {
  background: var(--primary-light);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  .hero-control {
    display: none;
  }
  .hero-indicators {
    bottom: 1.5rem;
  }
}

.hero-content h1 {
  font-size: 4rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  animation: slideUp 1s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: slideUp 1s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

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

.btn-outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

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

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: slideUp 1s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(30px);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* Cards Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

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

.card-img {
  height: 220px;
  overflow: hidden;
}

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

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

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 1rem;
  display: block;
}

.footer-text {
  color: #9ca3af;
  margin-bottom: 1.5rem;
}

.footer h3 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #9ca3af;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Animations */
@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}

/* Internal Page Header */
.page-header {
  padding: 120px 0 60px;
  background-color: var(--primary-color);
  background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: white;
  text-align: center;
}

.page-header h1 {
  color: white;
  font-size: clamp(1.6rem, 5.5vw, 3rem);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Card Logo Centered Style */
.card-logo-container {
  height: 220px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(87, 87, 86, 0.1);
  overflow: hidden;
  position: relative;
}

.card-logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

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

/* About / History Section */
.section-about {
  background-color: #f1f3ee;
  border-top: 1px solid rgba(87, 87, 86, 0.1);
  border-bottom: 1px solid rgba(87, 87, 86, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-content h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.about-content h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-light);
  border-radius: 2px;
}

.about-text {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(45, 36, 33, 0.12);
  border: 6px solid white;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive updates for search bar and menu */
@media (max-width: 768px) {
  .navbar .container {
    flex-wrap: wrap;
  }
  .navbar-search {
    flex: 0 0 100%;
    order: 3;
    margin: 0.75rem 0 0 0;
  }
  .nav-links {
    top: 125px !important;
    height: calc(100vh - 125px) !important;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Global Search Results Dropdown */
.search-results-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(59, 59, 58, 0.15);
  max-height: 320px;
  overflow-y: auto;
  z-index: 2000;
  padding: 6px 0;
}

/* Custom Scrollbar for Dropdown */
.search-results-dropdown::-webkit-scrollbar {
  width: 6px;
}
.search-results-dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.search-results-dropdown::-webkit-scrollbar-thumb {
  background: rgba(87, 87, 86, 0.2);
  border-radius: 10px;
}
.search-results-dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(143, 166, 12, 0.4);
}

.search-result-item {
  display: block;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(87, 87, 86, 0.05);
  text-decoration: none;
  color: var(--text-color);
  transition: var(--transition);
  text-align: left;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: var(--light-color);
}

.search-result-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-result-snippet {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-highlight {
  background-color: rgba(180, 204, 28, 0.25);
  color: var(--dark-color);
  font-weight: 600;
  padding: 0 2px;
  border-radius: 2px;
}

.search-no-results {
  padding: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* History Timeline and Toggle Section */
.continue-history-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  cursor: pointer;
  margin-top: 1rem;
  font-size: 0.95rem;
  transition: var(--transition);
}

.continue-history-btn:hover {
  color: var(--primary-light);
  gap: 0.75rem;
}

.continue-history-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  background: rgba(143, 166, 12, 0.1);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.continue-history-btn:hover i {
  background: rgba(180, 204, 28, 0.2);
}

.continue-history-btn.active i {
  transform: rotate(180deg);
}

.history-extended {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
  margin-top: 3.5rem;
  border-top: 1px solid rgba(87, 87, 86, 0.1);
  padding-top: 3rem;
  width: 100%;
}

.history-extended.expanded {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.history-intro-card {
  background: var(--bg-card);
  border-left: 4px solid var(--primary-color);
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(45,36,33,0.03);
  margin-bottom: 3.5rem;
  border-top: 1px solid rgba(87, 87, 86, 0.03);
  border-right: 1px solid rgba(87, 87, 86, 0.03);
  border-bottom: 1px solid rgba(87, 87, 86, 0.03);
}

.history-intro-card h4 {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.history-intro-card p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-color);
  margin: 0;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 0 3rem;
  display: flow-root;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary-color) 50%, var(--accent-color) 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 1rem 2.5rem;
  clear: both;
}

.timeline-item-left {
  float: left;
}

.timeline-item-right {
  float: right;
}

.timeline-badge {
  width: 38px;
  height: 38px;
  position: absolute;
  top: 1.5rem;
  background: var(--bg-card);
  border: 3px solid var(--primary-color);
  border-radius: 50%;
  text-align: center;
  z-index: 10;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(45,36,33,0.1);
  transition: var(--transition);
}

.timeline-item-left .timeline-badge {
  right: -19px;
}

.timeline-item-right .timeline-badge {
  left: -19px;
}

.timeline-item:hover .timeline-badge {
  transform: scale(1.15);
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-light);
}

.timeline-content {
  padding: 1.5rem;
  background: var(--bg-card);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(45,36,33,0.04);
  border: 1px solid rgba(87, 87, 86, 0.05);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(143,166,12,0.1);
  border-color: rgba(180, 204, 28, 0.25);
}

.timeline-epoch {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  display: block;
}

.timeline-title {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.timeline-details {
  padding: 0;
  list-style: none;
  margin: 0;
}

.timeline-details li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--text-color);
  font-size: 0.92rem;
  line-height: 1.45;
}

.timeline-details li:last-child {
  margin-bottom: 0;
}

.timeline-details li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
  position: absolute;
  left: 0;
  top: -1px;
}

.timeline-img-box {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  border: 2px solid white;
}

.timeline-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

.timeline-img-box:hover img {
  transform: scale(1.04);
}

.timeline-img-caption {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.4rem;
  font-style: italic;
  display: block;
}

.timeline-clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Responsive Timeline */
@media (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item-left,
  .timeline-item-right {
    width: 100%;
    float: none;
  }
  
  .timeline-item {
    padding-left: 45px;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
  
  .timeline-item-left .timeline-badge,
  .timeline-item-right .timeline-badge {
    left: 1px;
    right: auto;
  }
  
  .timeline-content {
    text-align: left;
  }
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(143,166,12,0.3);
}

.back-to-top:active {
  transform: translateY(-1px);
}

/* Promo Modal CSS */
.promo-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-modal.show {
  opacity: 1;
  visibility: visible;
}

.promo-modal-content {
  background: var(--bg-card);
  border-radius: 20px;
  max-width: 700px;
  width: 90%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.25);
  border: 1px solid var(--glass-border);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.promo-modal.show .promo-modal-content {
  transform: scale(1);
}

.promo-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-size: 1.6rem;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #333333;
  z-index: 15;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.promo-modal-close:hover {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

.promo-modal-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.promo-modal-image {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
  position: relative;
}

.promo-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-modal-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.promo-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.promo-modal-info h2 {
  font-size: 1.6rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 700;
}

.promo-modal-info p {
  font-size: 0.92rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.promo-actions {
  display: flex;
}

.promo-actions .btn {
  width: 100%;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 600px) {
  .promo-modal-body {
    grid-template-columns: 1fr;
  }
  .promo-modal-image {
    min-height: 180px;
  }
  .promo-modal-info {
    padding: 1.5rem;
  }
  .promo-modal-info h2 {
    font-size: 1.3rem;
  }
}


