/* ===========================================
   ESTILOS GENERALES Y VARIABLES
   =========================================== */

/* Variables de colores */
:root {
  --accent-color: #8C4E43;
  --accent-color-hover: #A36B5F;
  --accent-bg: #8C4E43;
  --accent-border: #8C4E43;
  --text-primary: #333333;
  --text-secondary: #4A4A4A;
  --text-light: #666666;
  --text-gray-100: #F3F4F6;
  --text-gray-200: #E5E7EB;
  --text-gray-300: #D1D5DB;
  --text-gray-400: #9CA3AF;
  --text-gray-500: #6B7280;
  --text-gray-600: #4B5563;
  --text-gray-700: #374151;
  --text-gray-800: #1F2937;
  --text-gray-900: #111827;
  --bg-light: #F8F6F3;
  --bg-dark: #333333;
  --bg-card-light: #FFFFFF;
  --bg-card-dark: #3D404A;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Reset y estilos base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

/* ===========================================
   CLASES UTILITARIAS (TAILWIND-LIKE)
   =========================================== */

/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Margins y Padding */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-10 { margin: 2.5rem; }
.m-12 { margin: 3rem; }
.m-16 { margin: 4rem; }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }

.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }

/* Tipografía */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-white { color: #FFFFFF; }
.text-gray-100 { color: var(--text-gray-100); }
.text-gray-200 { color: var(--text-gray-200); }
.text-gray-300 { color: var(--text-gray-300); }
.text-gray-400 { color: var(--text-gray-400); }
.text-gray-500 { color: var(--text-gray-500); }
.text-gray-600 { color: var(--text-gray-600); }
.text-gray-700 { color: var(--text-gray-700); }
.text-gray-800 { color: var(--text-gray-800); }
.text-gray-900 { color: var(--text-gray-900); }

.accent-color { color: var(--accent-color); }

/* Font families */
.font-playfair { font-family: 'Playfair Display', serif; }

/* Layout */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-center { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

.flex-grow { flex-grow: 1; }
.flex-shrink { flex-shrink: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.h-full { height: 100%; }
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-28 { width: 7rem; }
.w-36 { width: 9rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-28 { height: 7rem; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }

/* Espaciado */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }

/* Bordes y Redondeo */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-2xl { border-radius: 1rem; }

.border-gray-200 { border-color: var(--text-gray-200); }
.border-gray-400 { border-color: var(--text-gray-400); }
.border-gray-700 { border-color: var(--text-gray-700); }

/* Sombras */
.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }

/* Posicionamiento */
.relative { position: relative; }
.absolute { position: absolute; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.top-8 { top: 2rem; }
.-right-8 { right: -2rem; }
.overflow-hidden { overflow: hidden; }

/* Transiciones */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 300ms; }

.duration-300 { transition-duration: 300ms; }

/* Letter spacing */
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }

/* Line height */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* Z-index */
.z-0 { z-index: 0; }
.z-1 { z-index: 1; }
.z-2 { z-index: 2; }

/* Width and Height utilities */
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-28 { width: 7rem; }
.w-36 { width: 9rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-28 { height: 7rem; }

/* Background colors */
.bg-gray-100 { background-color: var(--text-gray-100); }
.bg-gray-800 { background-color: var(--text-gray-800); }
.bg-gray-900 { background-color: var(--text-gray-900); }

/* Custom accent utilities */
.accent-bg { background-color: var(--accent-bg); }
.accent-border { border-color: var(--accent-border); }

/* Shadow utilities with custom colors */
.shadow-\[\#a36464\]\/20 { box-shadow: 0 25px 50px -12px rgba(163, 100, 100, 0.2); }

/* Transform utilities */
.transform { transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }

/* Hover states */
.hover\:bg-gray-100:hover { background-color: var(--text-gray-100); }
.hover\:bg-gray-900:hover { background-color: var(--text-gray-900); }
.hover\:shadow-2xl:hover { box-shadow: var(--shadow-2xl); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.hover\:opacity-90:hover { opacity: 0.9; }

/* ===========================================
   SECCIONES PRINCIPALES
   =========================================== */

/* Sección Hero */
#hero-section {
  display: flex;
  min-height: 100vh;
  overflow: visible;
  position: relative;
  background-image: url('assets/images/fondo-abstracto.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #F0EDE8;
}

#hero-section .hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(240, 237, 232, 0.9), rgba(240, 237, 232, 0.6));
  background-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}

#hero-section .hero-content-left {
  flex: 2;
  padding: 40px 80px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  background-color: transparent;
}

#hero-section .hero-image-right {
  flex: 1;
  position: relative;
  z-index: 1;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.08);
  min-width: 300px;
}

#hero-section .hero-image-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sección ¿Qué es SACRART? */
#que-es-sacrart {
  display: flex;
  align-items: center;
  padding: 100px 80px;
  background-color: var(--bg-dark);
  color: #F8F8F8;
  overflow: hidden;
}

#que-es-sacrart .sacrart-image-col {
  flex: 1.5;
  padding-right: 60px;
}

#que-es-sacrart .sacrart-text-col {
  flex: 2;
}

/* Secciones con fondos */
.light-section-bg {
  background-color: var(--bg-light);
}

.dark-section-bg {
  background-color: var(--bg-dark);
  color: #F8F8F8;
}

/* Cards */
.card-bg {
  background-color: var(--bg-card-light);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.card-bg:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.card-bg-light {
  background-color: var(--bg-card-light);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.card-bg-light:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.02);
}

.card-bg-dark {
  background-color: var(--bg-card-dark);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.card-bg-dark:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px) scale(1.02);
}

/* Badge popular */
.popular-badge {
  transform: rotate(45deg);
  background-color: var(--accent-color);
  color: white;
  font-weight: bold;
  padding: 0.25rem 2rem;
  position: absolute;
  top: 2rem;
  right: -2rem;
  text-align: center;
  font-size: 0.875rem;
}

/* ===========================================
   SWIPER CARRUSEL
   =========================================== */

.gallery-swiper {
  width: 100%;
  height: 500px;
  border-radius: 1rem;
  overflow: hidden;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
  overflow: hidden;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

/* Estilos para navegación y paginación */
.swiper-button-next,
.swiper-button-prev {
  color: var(--accent-color) !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-color) !important;
}

/* ===========================================
   FAQ Y ACCORDION
   =========================================== */

.faq-item details {
  width: 100%;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item details[open] .icon {
  transform: rotate(45deg);
}

/* ===========================================
   MEDIA QUERIES RESPONSIVE
   =========================================== */

/* Small devices */
@media (min-width: 640px) {
  .sm\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
}

/* Mobile First - Extra Small devices */
@media (max-width: 640px) {
  .text-4xl { font-size: 2rem; line-height: 2.5rem; }
  .text-5xl { font-size: 2.5rem; line-height: 3rem; }
  .text-6xl { font-size: 3rem; line-height: 3.5rem; }
  
  .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
  .py-16 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  
  .mb-10 { margin-bottom: 1.5rem; }
  .mb-12 { margin-bottom: 2rem; }
}

/* Medium devices */
@media (min-width: 768px) {
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:gap-12 { gap: 3rem; }
}

/* Large devices */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:p-12 { padding: 3rem; }
}

/* Extra large devices */
@media (min-width: 1280px) {
  .max-w-3xl { max-width: 48rem; }
  .max-w-4xl { max-width: 56rem; }
  .max-w-5xl { max-width: 64rem; }
  .max-w-6xl { max-width: 72rem; }
}

/* ===========================================
   MEDIA QUERIES PARA SECCIONES EXISTENTES
   =========================================== */

@media (max-width: 992px) {
  #hero-section .hero-content-left,
  #que-es-sacrart .sacrart-image-col,
  #que-es-sacrart .sacrart-text-col {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  #hero-section {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 0;
  }
  
  #hero-section .hero-content-left {
    flex: auto;
    width: 100%;
    padding: 40px 25px;
    order: 1;
  }
  
  #hero-section .hero-image-right {
    flex: auto;
    width: 100%;
    min-width: unset;
    height: 400px;
    order: 2;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08);
  }

  #hero-section .hero-content-left img {
    width: 200px;
    margin-top: 0;
    margin-bottom: 20px;
  }
  
  #hero-section .hero-content-left h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  
  #hero-section .hero-content-left p {
    font-size: 1em;
    margin-bottom: 20px;
  }
  
  #hero-section .hero-content-left ul {
    font-size: 0.9em;
    margin-bottom: 25px;
  }
  
  #hero-section .hero-content-left button {
    font-size: 1em;
    padding: 14px 30px;
  }

  #que-es-sacrart {
    flex-direction: column;
    padding: 60px 25px;
  }
  #que-es-sacrart .sacrart-image-col {
    padding-right: 0;
    padding-bottom: 40px;
    width: 100%;
    order: 1;
  }
  #que-es-sacrart h2 {
    font-size: 2em;
    text-align: center;
    display: block;
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
  #que-es-sacrart p {
    font-size: 1em;
    text-align: center;
    margin-bottom: 30px;
  }
  #que-es-sacrart ul {
    font-size: 0.95em;
  }
  #que-es-sacrart ul li {
    justify-content: center;
    margin-bottom: 15px;
    text-align: center;
  }
  #que-es-sacrart ul li span {
    margin-right: 10px;
  }

  /* sin .hero-image-right-mobile en móvil */
}

.who-is-it-for-section {
    background-color: #f8f5f2;
    padding: 100px 20px;
    text-align: center;
}

.who-is-it-for-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a36464; /* <-- CAMBIO: Color de acento aplicado */
    margin-bottom: 25px;
}

.decorative-divider {
    width: 80px;
    height: 2px;
    background-color: #a36464;
    border: none;
    margin: 0 auto 80px auto;
}

.columns-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* <-- CAMBIO: Asegura que las tarjetas tengan la misma altura */
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.target-column {
    flex: 1;
    max-width: 400px;
    text-align: center;
    padding: 40px; /* Le damos padding para que parezca una tarjeta con espacio */
    background-color: #ffffff; /* Fondo blanco puro para que se vea la elevación */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03); /* Sombra inicial muy sutil */
    transition: all 0.3s ease; /* Transición para el efecto suave */
    cursor: pointer; /* Indica que es interactivo */
    /* Añadimos flexbox aquí también para un control interno si fuera necesario */
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- EFECTO HOVER: AL PASAR EL RATÓN --- */
.target-column:hover {
    transform: translateY(-10px); /* Se eleva 10px */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* La sombra se hace más pronunciada */
    background-color: #fffaf7; /* Un color ligeramente más cálido al pasar el ratón */
}

.target-column i {
    font-size: 3.5rem;
    color: #a36464;
    margin-bottom: 30px;
    display: inline-block;
}

.target-column h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #a36464;
    margin-bottom: 20px;
}

.target-column p {
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a;
    line-height: 1.8;
    text-align: center;
}

/* --- Media Queries para ¿Para Quién es Esto? --- */
@media (max-width: 992px) {
    .columns-container {
        gap: 40px; /* Reduce el espacio entre columnas */
        max-width: 800px;
    }
    
    .target-column {
        max-width: 350px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .who-is-it-for-section {
        padding: 60px 20px;
    }
    
    .who-is-it-for-section h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .decorative-divider {
        margin-bottom: 50px;
    }
    
    .columns-container {
        flex-direction: column; /* Cambia a columna en móvil */
        gap: 30px;
        max-width: 400px;
    }
    
    .target-column {
        max-width: 100%; /* Ocupa todo el ancho disponible */
        padding: 30px 25px;
    }
    
    .target-column i {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .target-column h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .target-column p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* --- Sección: ¿CÓMO FUNCIONA? --- */
.how-it-works-section {
    background-color: #2c2c2c; /* Fondo Gris Oscuro */
    padding: 100px 20px; /* Más padding vertical */
    text-align: center;
}

.how-it-works-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #f8f5f2; /* Blanco Roto para el título */
    margin-bottom: 25px; /* Reducimos el margen para el divisor */
}

/* Divisor para fondo oscuro */
.decorative-divider-dark {
    width: 80px;
    height: 2px;
    background-color: #a36464; /* Color de acento */
    border: none;
    margin: 0 auto 80px auto; /* Centra y le da espacio debajo */
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: stretch; /* Para que todas las tarjetas tengan la misma altura */
    gap: 30px; /* Espacio entre las tarjetas */
    max-width: 1200px; /* Ancho máximo para los pasos */
    margin: 0 auto;
}

.step-card {
    flex: 1; /* Cada tarjeta ocupa el mismo espacio */
    max-width: 280px; /* Ancho máximo individual */
    padding: 30px;
    background-color: #f8f5f2; /* Fondo blanco roto para las tarjetas */
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Sombra sutil */
    transition: all 0.3s ease; /* Transición para el efecto hover */
    cursor: pointer;
    text-align: left; /* Alineamos el texto a la izquierda dentro de la tarjeta */

    /* Para asegurar que el contenido interno se alinee correctamente */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* --- EFECTO HOVER PARA TARJETAS DE PASOS --- */
.step-card:hover {
    transform: translateY(-10px); /* Se eleva 10px */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* Sombra más pronunciada */
    background-color: #ffffff; /* Se ilumina a blanco puro al pasar el ratón */
}

.step-card .step-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.step-card .step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem; /* Un poco más pequeño que en la maqueta para mejor balance */
    font-weight: 700;
    color: #a36464; /* Color de acento */
    margin-right: 15px;
    line-height: 1;
}

.step-card i {
    font-size: 2rem;
    color: #a36464; /* Color de acento para los iconos */
}

.step-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #2c2c2c; /* Gris oscuro para el título del paso */
    margin-bottom: 15px;
}

.step-card p {
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a; /* Gris más suave para el texto */
    line-height: 1.7;
    /* text-align: left; por defecto ya está */
}

/* Media queries para responsividad */
@media (max-width: 992px) {
    .steps-container {
        flex-wrap: wrap; /* Permite que los elementos pasen a la siguiente línea */
        gap: 25px;
    }
    .step-card {
        flex-basis: calc(50% - 25px); /* Ocupan de 2 en 2 en tablets */
        max-width: calc(50% - 25px);
        margin-bottom: 0; /* Ya el gap maneja el espacio */
    }
}

@media (max-width: 768px) {
    .how-it-works-section h2 {
        font-size: 2.2rem;
    }
    .steps-container {
        flex-direction: column; /* Apila las tarjetas verticalmente */
        align-items: center;
        gap: 30px;
    }
    .step-card {
        max-width: 350px; /* Ancho en móvil */
        text-align: center; /* Centra el texto en móvil */
        align-items: center; /* Centra el contenido si la columna es flex */
        padding: 25px;
    }
    .step-card .step-header {
        justify-content: center; /* Centra el número y el icono */
    }
    .step-card p {
        text-align: center; /* Centra el párrafo en móvil */
    }
}

/* --- Sección: PLANES DE ACCESO --- */
.pricing-section {
    background-color: #f8f5f2; /* Fondo Blanco Roto */
    padding: 100px 20px;
    text-align: center;
}

.pricing-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #a36464; /* Color de acento */
    margin-bottom: 25px;
}

/* Reutilizamos el divisor de fondo claro */
.decorative-divider-light {
    width: 80px;
    height: 2px;
    background-color: #a36464;
    border: none;
    margin: 0 auto 50px auto; /* Espacio antes del freemium */
}

/* Estilos para la introducción al plan Freemium */
.freemium-intro {
    max-width: 800px;
    margin: 0 auto 60px auto; /* Espacio después de la intro */
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.freemium-intro p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #2c2c2c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.freemium-intro ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.freemium-intro ul li {
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.freemium-intro ul li i {
    color: #a36464;
    margin-right: 10px;
    font-size: 1rem;
}

/* Botón específico para Freemium (podría ser más sutil) */
.cta-button--freemium {
    background-color: #e9e6e3; /* Un gris claro, más sutil */
    color: #2c2c2c;
    border: 1px solid #dcdad8;
    padding: 12px 25px;
    font-size: 0.95rem;
    margin-top: 0;
}

.cta-button--freemium:hover {
    background-color: #dcdad8;
    color: #2c2c2c;
    transform: translateY(-2px);
}

.plans-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    flex: 1;
    max-width: 400px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

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

.plan-card--premium {
    border: 2px solid #a36464;
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background-color: #a36464;
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 10; /* Para asegurar que esté por encima de otros elementos */
}

.plan-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #2c2c2c;
    margin-bottom: 15px;
    text-align: center;
}

/* Precios */
.plan-card .price-old { /* Estilo para el precio tachado */
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #a36464; /* Color de acento para el precio antiguo */
    text-decoration: line-through;
    margin-bottom: 5px;
    text-align: center;
}

.plan-card .price {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px; /* Espacio reducido */
    text-align: center;
}

.plan-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #5a5a5a;
}

.plan-card .price-note { /* Nota del precio */
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #a36464; /* Color de acento */
    margin-bottom: 30px;
    text-align: center;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    font-family: 'Montserrat', sans-serif;
    color: #5a5a5a;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; /* Alinea los elementos al principio si hay texto largo */
    font-size: 0.95rem; /* Ligeramente más pequeño para listas largas */
}

.plan-features li i {
    color: #a36464;
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0; /* Evita que el icono se encoja */
}

/* Botón secundario (outline) - definido en global, aquí solo ajustes */
.cta-button--outline {
    background-color: transparent;
    color: #a36464;
    border: 2px solid #a36464;
}

.cta-button--outline:hover {
    background-color: #a36464;
    color: white;
}

.plan-card .cta-button {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
}

/* Media query */
@media (max-width: 768px) {
    .plans-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .freemium-intro {
        padding: 20px;
        margin-bottom: 40px;
    }
    .plan-card {
        max-width: 350px;
    }
}

/* --- Estilos para el nuevo diseño de Planes de Acceso con Tailwind --- */

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

.font-playfair {
    font-family: 'Playfair Display', serif;
}

/* Colores de acento */
.accent-color {
    color: #a36464;
}

.accent-bg {
    background-color: #a36464;
}

.accent-border {
    border-color: #a36464;
}

/* Estilos de tarjetas */
.card-bg {
    background-color: #ffffff; /* Fondo blanco puro y sólido */
    border: 1px solid rgba(0, 0, 0, 0.05); /* Borde sutil para definición */
}

/* Badge rotado */
.popular-badge {
    transform: rotate(45deg);
}

/* Estilos base para el body */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f5f2;
    color: #2c2c2c;
}

/* Utilidades adicionales para el nuevo diseño */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Grid system básico */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.gap-8 {
    gap: 2rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.items-start {
    align-items: flex-start;
}

/* Espaciado */
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 640px) {
    .sm\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.p-8 {
    padding: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .md\:mb-20 {
        margin-bottom: 5rem;
    }
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-20 {
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .md\:mt-24 {
        margin-top: 6rem;
    }
}

.mr-2 {
    margin-right: 0.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Tipografía */
.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

@media (min-width: 768px) {
    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

@media (min-width: 768px) {
    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-semibold {
    font-weight: 600;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.text-center {
    text-align: center;
}

.text-gray-900 {
    color: #111827;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-700 {
    color: #374151;
}

.text-white {
    color: #ffffff;
}

/* Layout */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-baseline {
    align-items: baseline;
}

.items-start {
    align-items: flex-start;
}

.justify-center {
    justify-content: center;
}

.h-full {
    height: 100%;
}

.w-full {
    width: 100%;
}

.w-28 {
    width: 7rem;
}

.h-28 {
    height: 7rem;
}

.w-36 {
    width: 9rem;
}

.h-7 {
    height: 1.75rem;
}

.w-7 {
    width: 1.75rem;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.flex-grow {
    flex-grow: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Espaciado interno */
.space-y-3 > * + * {
    margin-top: 0.75rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.inline-block {
    display: inline-block;
}

/* Bordes y redondeo */
.rounded-2xl {
    border-radius: 1rem;
}
.rounded-lg {
    border-radius: 0.5rem;
}
.rounded-full {
    border-radius: 9999px;
}

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-gray-400 {
    border-color: #9ca3af;
}

/* Sombras */
.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-[#a36464]/20 {
    box-shadow: 0 20px 25px -5px rgba(163, 100, 100, 0.2);
}

/* Posicionamiento */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}
.top-0 {
    top: 0;
}
.right-0 {
    right: 0;
}
.top-8 {
    top: 2rem;
}

.-right-8 {
    right: -2rem;
}

.overflow-hidden {
    overflow: hidden;
}

/* Transformaciones y transiciones */
.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.scale-105 {
    transform: scale(1.05);
}

.hover\:shadow-2xl:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.hover\:opacity-90:hover {
    opacity: 0.9;
}

.hover\:bg-gray-900:hover {
    background-color: #111827;
}

/* Background colors */
.bg-gray-800 {
    background-color: #1f2937;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-[#a36464]/10 {
    background-color: rgba(163, 100, 100, 0.1);
}

/* Iconos SVG */
svg {
    display: inline-block;
    vertical-align: middle;
}

/* Botones */
button {
    cursor: pointer;
    border: none;
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Antialiasing */
.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* =================================================================== */
/* NUEVOS ESTILOS PARA LAS SECCIONES ACTUALIZADAS */
/* =================================================================== */

/* Colores de fondo para secciones */
.light-section-bg {
    background-color: #F4EFE8;
}

.dark-section-bg {
    background-color: #3D404A;
}

/* Colores de acento */
.accent-color {
    color: #A36B5F;
}

.accent-bg {
    background-color: #A36B5F;
}

.accent-border {
    border-color: #A36B5F;
}

/* Fondos para tarjetas - ya definidos arriba con estilos mejorados */

/* Estilos para FAQ */
.faq-item details {
    width: 100%;
}

.faq-item details[open] .icon {
    transform: rotate(45deg);
}

.faq-item summary {
    list-style: none;
    outline: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

/* Badge popular */
.popular-badge {
    transform: rotate(45deg);
    background-color: #A36B5F;
    color: white;
    font-weight: bold;
    padding: 5px 0;
    text-align: center;
}

/* Sombras adicionales */
.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Transformaciones adicionales */
.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-\[1\.02\]:hover {
    transform: scale(1.02);
}

/* Espaciado adicional */
.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

/* Líneas divisorias */
.border-t {
    border-top: 1px solid #e5e7eb;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-700 {
    border-color: #374151;
}

/* Alineación de texto */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.justify-center {
    justify-content: center;
}

.items-center {
    align-items: center;
}

/* Tamaños de fuente adicionales */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

/* Grosor de fuente */
.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-extrabold {
    font-weight: 800;
}

/* Espaciado entre letras */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

/* Decoración de texto */
.line-through {
    text-decoration-line: line-through;
}

/* Overflow y recorte */
.overflow-hidden {
    overflow: hidden;
}

.rounded-full {
    border-radius: 9999px;
}

/* Posicionamiento */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.top-0 {
    top: 0px;
}

.right-0 {
    right: 0px;
}

.top-8 {
    top: 2rem;
}

.-right-8 {
    right: -2rem;
}

/* Flexbox adicional */
.flex-shrink-0 {
    flex-shrink: 0;
}

.items-start {
    align-items: flex-start;
}

/* Grid adicional */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lg\:col-span-3 {
    grid-column: span 3 / span 3;
}

.lg\:col-span-2 {
    grid-column: span 2 / span 2;
}

.md\:col-span-2 {
    grid-column: span 2 / span 2;
}

.md\:col-span-3 {
    grid-column: span 3 / span 3;
}

/* Tamaños de contenedor */
.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

/* Márgenes y padding adicionales */
.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

/* Altura completa */
.h-full {
    height: 100%;
}

/* Display adicional */
.inline-flex {
    display: inline-flex;
}

/* Cursor */
.cursor-pointer {
    cursor: pointer;
}

/* Opacidad */
.opacity-90 {
    opacity: 0.9;
}

/* Z-index */
.z-10 {
    z-index: 10;
}
