.btn.btn-emerald {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white !important;
  border: none;
  box-shadow: var(--shadow-medium);
}

.btn.btn-emerald:hover {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}
/* ========================================
   VARIABLES CSS Y RESET
======================================== */

:root {
  /* Colores principales */
  --primary-color: #10B981;
  --secondary-color: #F59E0B;
  --background-color: #FFFFFF;
  --text-color: #1F2937;
  --text-light: #6B7280;
  --text-lighter: #9CA3AF;

  /* Gradientes */
  --primary-gradient: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --secondary-gradient: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  --hero-gradient: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);

  /* Tipografía */
  --font-primary: 'Playfair Display', serif;
  --font-secondary: 'Inter', sans-serif;

  /* Espaciado */
  --container-max-width: 1200px;
  --section-padding: 80px 0;
  --border-radius: 12px;
  --border-radius-large: 20px;

  /* Sombras */
  --shadow-light: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-medium: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 20px 40px rgba(0, 0, 0, 0.15);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-color);
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   TIPOGRAFÍA
======================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   BOTONES
======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border: none;
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: white;
  box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-large);
}

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

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

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

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

.btn-large {
  padding: 18px 36px;
  font-size: 1.125rem;
}

/* ========================================
   HERO SECTION
======================================== */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    url('Recepción.png') center/cover no-repeat;
  z-index: -2;
  filter: brightness(0.7) blur(2px);
}

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.15);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  text-align: center;
  color: var(--primary-color);
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #34e8a1 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #34e8a1 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary-color);
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s both;
}

/* ========================================
   DIAGNÓSTICO SECTION
======================================== */

.diagnostico-section {
  padding: var(--section-padding);
  background: #F9FAFB;
}

.problemas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.problema-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-light);
  cursor: pointer;
  transition: all var(--transition-medium);
  border: 2px solid transparent;
}

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

.problema-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.problema-icon i {
  font-size: 1.5rem;
  color: white;
}

.problema-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.problema-stat {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.problema-details {
  color: var(--text-light);
  font-size: 0.95rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
}

.problema-card:hover .problema-details {
  max-height: 200px;
}

/* ========================================
   SOLUCIONES SECTION
======================================== */

.soluciones-section {
  padding: var(--section-padding);
}

.soluciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 3rem;
}

.solucion-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  text-align: center;
  transition: all var(--transition-medium);
  border: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.solucion-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
}

.solucion-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-large);
}

.solucion-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.solucion-icon i {
  font-size: 2rem;
  color: white;
}

.solucion-card h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

.solucion-content {
  text-align: left;
  margin-bottom: 30px;
}

.solucion-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.solucion-content ul {
  list-style: none;
  margin-bottom: 20px;
}

.solucion-content ul li {
  padding: 5px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  position: relative;
  padding-left: 20px;
}

.solucion-content ul li::before {
  content: '•';
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.beneficios li {
  color: var(--primary-color);
  font-weight: 500;
}

.beneficios li i {
  margin-right: 8px;
}

/* ========================================
   DEMO SECTION
======================================== */

.demo-section {
  padding: var(--section-padding);
  background: #F9FAFB;
}

.demo-container {
  background: white;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
  overflow: hidden;
  margin-top: 3rem;
}

.demo-tabs {
  display: flex;
  background: #F3F4F6;
  overflow-x: auto;
}

.demo-tab {
  flex: 1;
  padding: 20px 15px;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-medium);
  font-weight: 500;
  color: var(--text-light);
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.demo-tab.active {
  background: var(--primary-color);
  color: white;
}

.demo-tab:hover:not(.active) {
  background: #E5E7EB;
}

.demo-content {
  position: relative;
}

.demo-panel {
  display: none;
  padding: 40px;
}

.demo-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.demo-left h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

/* Chatbot Simulator */
.chatbot-simulator {
  background: #F8FAFC;
  border-radius: var(--border-radius);
  padding: 20px;
  min-height: 300px;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: var(--border-radius);
}

.chat-message.bot {
  background: var(--primary-color);
  color: white;
  margin-right: 20%;
}

.chat-message.user {
  background: #E5E7EB;
  color: var(--text-color);
  margin-left: 20%;
  flex-direction: row-reverse;
}

.qr-code {
  text-align: center;
  padding: 20px;
  font-size: 3rem;
  color: var(--primary-color);
}

/* Profile Simulator */
.profile-simulator {
  background: #F8FAFC;
  border-radius: var(--border-radius);
  padding: 20px;
}

.guest-profile {
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.guest-profile h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.profile-data p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.ai-recommendations {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #E5E7EB;
}

.ai-recommendations h5 {
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.ai-recommendations ul {
  list-style: none;
}

.ai-recommendations li {
  padding: 5px 0;
  font-size: 0.9rem;
}

/* Dashboard Simulator */
.dashboard-simulator {
  background: #F8FAFC;
  border-radius: var(--border-radius);
  padding: 20px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
}

.dashboard-card {
  background: white;
  padding: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.dashboard-card h5 {
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.dashboard-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.status {
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

.status.ok {
  background: #D1FAE5;
  color: #065F46;
}

.status.warning {
  background: #FEF3C7;
  color: #92400E;
}

/* Pricing Simulator */
.pricing-simulator {
  background: #F8FAFC;
  border-radius: var(--border-radius);
  padding: 20px;
}

.pricing-factors {
  margin-bottom: 20px;
}

.factor {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.factor-bar {
  flex: 1;
  height: 8px;
  background: #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
}

.factor-fill {
  height: 100%;
  background: var(--primary-gradient);
  transition: width var(--transition-medium);
}

.price-recommendation {
  background: white;
  padding: 15px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--secondary-color);
}

/* Metrics Display */
.metrics-display, .revenue-impact, .efficiency-metrics, .revenue-metrics {
  background: #F8FAFC;
  border-radius: var(--border-radius);
  padding: 25px;
}

.metrics-display h4, .revenue-impact h4, .efficiency-metrics h4, .revenue-metrics h4 {
  margin-bottom: 25px;
  color: var(--text-color);
}

.metric {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow-light);
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

.demo-cta {
  padding: 40px;
  text-align: center;
  background: #F8FAFC;
  border-top: 1px solid #E5E7EB;
}

.demo-cta p {
  font-size: 1.125rem;
  margin-bottom: 25px;
  color: var(--text-color);
}

/* ========================================
   CASOS DE ÉXITO SECTION
======================================== */

.casos-section {
  padding: var(--section-padding);
}

.casos-carousel {
  position: relative;
  margin-top: 3rem;
}

.caso-card {
  background: white;
  padding: 40px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-large);
  display: none;
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

.caso-card.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.caso-quote {
  margin-bottom: 30px;
}

.caso-quote i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.caso-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-color);
  line-height: 1.7;
}

.caso-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #E5E7EB;
}

.author-photo {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-photo i {
  font-size: 1.5rem;
  color: white;
}

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

.author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 5px;
  color: var(--text-color);
}

.author-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.hotel-name {
  font-weight: 600;
  color: var(--primary-color) !important;
}

.caso-metrics {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

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

.metric-small span {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.metric-small small {
  font-size: 0.8rem;
  color: var(--text-light);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

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

.carousel-btn:hover {
  background: var(--text-color);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E5E7EB;
  cursor: pointer;
  transition: all var(--transition-medium);
}

.dot.active {
  background: var(--primary-color);
}

.client-logos {
  margin-top: 50px;
  text-align: center;
}

.client-logos p {
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 20px;
}

.logos-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.logo-placeholder {
  padding: 15px 25px;
  background: #F3F4F6;
  border-radius: var(--border-radius);
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ========================================
   FAQ SECTION
======================================== */

.faq-section {
  padding: var(--section-padding);
  background: #F9FAFB;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow-light);
  overflow: hidden;
}

.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-medium);
}

.faq-question:hover {
  background: #F9FAFB;
}

.faq-question h3 {
  font-size: 1.125rem;
  margin: 0;
  color: var(--text-color);
}

.faq-question i {
  color: var(--primary-color);
  transition: transform var(--transition-medium);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
  background: #F8FAFC;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 25px;
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========================================
   CTA FINAL SECTION
======================================== */

.cta-final-section {
  padding: var(--section-padding);
  background: var(--primary-gradient);
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: white;
}

.cta-content > p {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.form-container {
  background: white;
  border-radius: var(--border-radius-large);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto 40px;
  box-shadow: var(--shadow-large);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #E5E7EB;
  border-radius: var(--border-radius);
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: border-color var(--transition-medium);
}

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

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

.form-disclaimer {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 20px;
}

.contact-alternatives {
  text-align: center;
  margin-top: 40px;
}

.contact-alternatives p {
  font-size: 1.125rem;
  margin-bottom: 20px;
  opacity: 0.95;
}

.contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--border-radius);
  transition: all var(--transition-medium);
}

.contact-option:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
======================================== */

.footer {
  background: var(--text-color);
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand h3 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-brand p {
  color: #9CA3AF;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color var(--transition-medium);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #374151;
}

.footer-bottom p {
  color: #9CA3AF;
  font-size: 0.9rem;
}

/* ========================================
   ANIMACIONES
======================================== */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .demo-panel.active {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .demo-tabs {
    flex-direction: column;
  }

  .demo-tab {
    min-width: auto;
  }

  .caso-author {
    flex-direction: column;
    text-align: center;
  }

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

  .caso-metrics {
    gap: 20px;
  }

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

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .problemas-grid,
  .soluciones-grid {
    grid-template-columns: 1fr;
  }

  .solucion-card,
  .problema-card {
    padding: 25px 20px;
  }

  .demo-panel {
    padding: 25px 20px;
  }

  .form-container {
    padding: 25px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

/* ========================================
   UTILIDADES
======================================== */

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
