﻿/* ==========================================================================
   Tango Ecommerce - Mercado Libre (ML) Brand Theme
   Gris Neutro (#EDEDED), Amarillo ML (#FFE600), Azul ML (#3483FA), Grafito (#242424)
   Background Image on Hero, Modern Cards & Workflow
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Mercado Libre & Tango Brand Colors */
  --ml-yellow: #f2c007;
  --ml-yellow-hover: #ce9600;
  --ml-yellow-light: #FFFDE6;
  --ml-yellow-subtle: #FFFBE0;

  --ml-blue: #3483FA;
  --ml-blue-hover: #2968C8;
  --ml-blue-light: #EAF2FE;
  
  --ml-dark: #222222;
  --ml-dark-card: #2B2B2B;
  --ml-dark-deep: #191919;
  
  /* System / Backward-compatible variables */
  --tango-purple: #3483FA;
  --tango-purple-dark: #2968C8;
  --tango-purple-card: #242424;
  --tango-purple-strip: #FFE600;
  --tango-purple-light: #FFFDE6;
  --tango-purple-subtle: #EDEDED;
  
  --color-gestion: #00aeeF;
  --color-pdv: #00a3e0;
  --color-eecc: #ff8200;
  --color-resto: #e30613;
  
  --bg-body: #EDEDED;
  --bg-card: #FFFFFF;
  
  --text-main: #333333;
  --text-dark: #191919;
  --text-muted: #555555;
  --text-light: #777777;
  --text-white: #FFFFFF;
  --text-red: #E53E3E;
  
  --border-color: #D6D6D6;
  --border-light: #E5E5E5;
  --border-focus: #3483FA;
  
  --status-success: #00A650;
  --status-warning: #FF7733;
  --status-danger: #F04438;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: 'Montserrat', 'Plus Jakarta Sans', -apple-system, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  width: 100%;
  background-color: var(--bg-body);
}

h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-muted);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  width: 100%;
}

.section-padding {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 5rem 0;
  }
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem auto;
}

.section-header .tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  background: var(--ml-yellow);
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 6px rgba(255, 230, 0, 0.35);
}

.section-header h2 {
  font-size: 1.85rem;
  margin-bottom: 0.85rem;
  color: var(--text-dark);
  line-height: 1.25;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 2.35rem;
  }
}

.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Header Brand Strip */
header nav {
  background-color: #000000;
  box-shadow: none;
  height: 64px;
  line-height: 64px;
  width: 100%;
  position: relative;
  display: block;
}

header nav .nav-wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

header nav .brand-logo {
  position: absolute;
  color: #fff;
  display: inline-block;
  font-size: 2.1rem;
  padding: 0;
  height: 100%;
  width: 226px;
  background: url(/img/logos/logo_TangoSoftware-blanco.svg) no-repeat center;
}

header nav .brand-logo.center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media only screen and (max-width: 600px) {
  header nav {
    height: 56px;
    line-height: 56px;
  }
}

/* ==========================================================================
   Hero Section (Color Sólido Amarillo #f2c007)
   ========================================================================== */
.hero {
  position: relative;
  background: var(--ml-yellow);
  padding: 2.5rem 0 4rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 5rem 0;
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: start;
  }
}

/* Hero Left Card Box (Fondo Gris Grafito con Acentos Amarillos) */
.hero-card-box {
  background: linear-gradient(150deg, #222222 0%, #2d2d2d 100%);
  border-radius: 20px 20px 60px 20px;
  padding: 2.25rem 1.75rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  border: 2px solid rgba(242, 192, 7, 0.5);
  width: 100%;
  height: 100%;
  align-self: stretch;
  backdrop-filter: blur(2px);
}

@media (min-width: 768px) {
  .hero-card-box {
    border-radius: 20px 20px 140px 20px;
    padding: 2.5rem 2.25rem;
    gap: 1.5rem;
  }
}

/* Tango Ecommerce Logo */
.hero-card-brand-logo {
  width: 80%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.35));
}

.hero-card-headline {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-top: 0.25rem;
}

.hero-card-headline span {
  color: var(--ml-yellow);
}

@media (min-width: 768px) {
  .hero-card-headline {
    font-size: 1.9rem;
  }
}

.hero-card-subtitle {
  font-size: 0.98rem;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  line-height: 1.55;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-card-subtitle {
    font-size: 1.05rem;
  }
}

.hero-card-subtitle svg {
  width: 24px;
  height: 24px;
  color: var(--ml-yellow);
  flex-shrink: 0;
}

/* Hero Media Display */
.hero-media-wrap {
  text-align: center;
  width: 100%;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0.5rem;
}

.hero-media-wrap img {
  max-width: 100%;
  max-height: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
}

/* Compatible Systems Badges in Hero */
.hero-systems-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.hero-systems-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #CBD5E1;
  letter-spacing: 0.05em;
  margin-right: 0.25rem;
}

.hero-sys-badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Hero Form (Clean Light Card with ML Yellow Accent) */
.hero-form-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  border-top: 6px solid var(--ml-yellow);
  width: 100%;
  align-self: start;
  height: fit-content;
}

@media (min-width: 768px) {
  .hero-form-card {
    padding: 2.25rem 2rem;
  }
}

.hero-form-card h2 {
  font-size: 1.35rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .hero-form-card h2 {
    font-size: 1.45rem;
  }
}

.hero-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  line-height: 1.45;
}

.purple-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .purple-form {
    grid-template-columns: 1fr 1fr;
  }
}

form span.error {
  color: #FF2323;
  font-size: 0.75rem;
  margin-top: 2px;
  display: block;
}

form .error-message {
  color: #58151c;
  background-color: #f8d7da;
  border: #f1aeb5 1px solid;
  margin: 0;
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.field-full {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .field-full {
    grid-column: span 2;
  }
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.field-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
}

.field-group label span {
  color: var(--status-danger);
}

.field-input {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: #f8f8f8;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text-main);
  transition: var(--transition);
}

.field-input:focus {
  outline: none;
  border-color: var(--ml-blue);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(52, 131, 250, 0.18);
}

select.field-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233483fa'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  padding-right: 2.25rem;
}

textarea.field-input {
  resize: vertical;
  min-height: 70px;
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.2rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text-main);
  font-weight: 500;
}

.radio-option input {
  accent-color: var(--ml-blue);
  cursor: pointer;
}

/* Submit Button - Mercado Libre Blue */
.btn-purple-submit {
  grid-column: span 1;
  margin-top: 0.5rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--ml-blue);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(52, 131, 250, 0.35);
  width: 100%;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .btn-purple-submit {
    grid-column: span 2;
    padding: 0.95rem 1.75rem;
    font-size: 1.05rem;
  }
}

.btn-purple-submit:hover {
  background: var(--ml-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 131, 250, 0.5);
}

/* ==========================================================================
   Value Proposition Strip (Mercado Libre Yellow BG)
   ========================================================================== */
.value-strip {
  background-color: var(--ml-yellow-light);
  color: var(--text-dark);
  padding: 1.6rem 0;
  border-bottom: 2px solid #e8d000;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .value-strip {
    padding: 1.85rem 0;
  }
}

.value-strip-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 768px) {
  .value-strip-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.value-strip-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-dark);
}

.value-strip-icon-wrap {
  width: 44px;
  height: 44px;
  background: #f2c007;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-strip-icon-wrap svg {
  width: 22px;
  height: 22px;
  color: var(--text-dark);
}

.value-strip-content h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}

.value-strip-content p {
  font-size: 0.82rem;
  color: #333333;
  font-weight: 500;
  line-height: 1.35;
}

/* ==========================================================================
   Features Detail Showcase (Canales y Automatizaciones)
   ========================================================================== */
.features-section {
  background: #ffffff;
  overflow: hidden;
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .features-section {
    padding: 5.5rem 0;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .feature-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3.5rem;
  }
}

.feature-text .tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark);
  background: var(--ml-yellow);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.85rem;
}

.feature-text h2 {
  font-size: 1.85rem;
  color: var(--text-dark);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .feature-text h2 {
    font-size: 2.25rem;
  }
}

.feature-text p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .feature-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-mini-card {
  background: #fcfcfc;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition);
}

.feature-mini-card:hover {
  transform: translateY(-3px);
  border-color: var(--ml-yellow);
  box-shadow: var(--shadow-sm);
  background: #ffffff;
}

.feature-mini-icon {
  width: 38px;
  height: 38px;
  background: var(--ml-blue-light);
  color: var(--ml-yellow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-mini-icon svg {
  width: 20px;
  height: 20px;
}

.feature-mini-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-mini-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.feature-media {
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  text-align: center;
  width: 100%;
}

.feature-media img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

/* ==========================================================================
   4-Step Workflow Section (De la venta a la facturación)
   ========================================================================== */
.workflow-section {
  background: var(--bg-body);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .workflow-section {
    padding: 5.5rem 0;
  }
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.workflow-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.workflow-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ml-yellow);
}

.workflow-step-num {
  width: 42px;
  height: 42px;
  background: var(--ml-yellow);
  color: var(--text-dark);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(255, 230, 0, 0.4);
  margin-bottom: 0.5rem;
}

.workflow-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.workflow-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Ecosystem & API Banner (Dark Graphite)
   ========================================================================== */
.ecosystem-section {
  background: linear-gradient(135deg, #242424 0%, #191919 100%);
  color: #ffffff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 992px) {
  .ecosystem-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.ecosystem-text h2 {
  color: #ffffff;
  font-size: 1.85rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.ecosystem-text h2 span {
  color: var(--ml-yellow);
}

@media (min-width: 768px) {
  .ecosystem-text h2 {
    font-size: 2.2rem;
  }
}

.ecosystem-text p {
  color: #D1D5DB;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.btn-ecosystem-cta {
  display: inline-block;
  background: var(--ml-yellow);
  color: var(--text-dark);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(255, 230, 0, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.btn-ecosystem-cta:hover {
  background: var(--ml-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 230, 0, 0.5);
  color: var(--text-dark);
}

.ecosystem-badges-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  backdrop-filter: blur(10px);
}

.ecosystem-badge-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.92rem;
}

.ecosystem-badge-item svg {
  width: 22px;
  height: 22px;
  color: var(--ml-yellow);
  flex-shrink: 0;
}

/* ==========================================================================
   Footer (#pie)
   ========================================================================== */
#pie {
  background-color: #191919 !important;
  background-image: url(https://www.axoft.com/img/footer/footer_textura.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  padding: 40px 0 20px 0 !important;
  color: #a0a0a0;
  font-weight: 400;
}

#pie .container.contenedorPie,
#pie .contenedorPie {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

#pie .row {
  margin-bottom: 20px;
}

#pie .valign-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

#pie .text-white {
  color: #ffffff !important;
  margin-top: 8px;
}

#pie a {
  color: #ffffff;
  transition: opacity 0.2s ease;
}

#pie a:hover {
  opacity: 0.8;
}

#pie .img-ico {
  width: 44px;
  height: 44px;
  margin: 0 8px;
  display: inline-block;
  vertical-align: middle;
}

#pie .img-ico2 {
  width: 110px;
  height: auto;
  display: inline-block;
}

/* ==========================================================================
   Gracias Page (Thank You Page) Styles
   ========================================================================== */
.gracias-section {
  min-height: calc(100vh - 64px - 200px);
  background: linear-gradient(135deg, #FFFDE6 0%, #EDEDED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.25rem;
}

.gracias-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-top: 5px solid var(--ml-yellow);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 3rem 2rem;
  max-width: 620px;
  width: 100%;
  text-align: center;
  position: relative;
}

.gracias-icon-wrap {
  width: 76px;
  height: 76px;
  background: var(--ml-yellow);
  color: var(--text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 15px rgba(255, 230, 0, 0.4);
}

.gracias-icon-wrap svg {
  width: 40px;
  height: 40px;
}

.gracias-card h1 {
  font-size: 2.1rem;
  color: var(--text-dark);
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.2;
}

.gracias-card p.subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.gracias-card p.redirect-info {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.btn-gracias-home {
  display: inline-block;
  background: var(--ml-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(52, 131, 250, 0.3);
}

.btn-gracias-home:hover {
  background: var(--ml-blue-hover);
  box-shadow: 0 6px 20px rgba(52, 131, 250, 0.45);
  transform: translateY(-1px);
}