/* ============================================
   LATINO LIQUORS — CUSTOM STYLES
   Palette: Midnight Blue (#0B2E52) + Mint (#6EE7B7)
   Fonts: DM Serif Display + Inter
   ============================================ */

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

:root {
  --midnight: #0B2E52;
  --midnight-light: #134074;
  --midnight-dark: #071E37;
  --mint: #6EE7B7;
  --mint-light: #A7F3D0;
  --mint-dark: #34D399;
  --cream: #F8FAF7;
  --warm-white: #FEFEFB;
  --sand: #F0EDE6;
  --text: #1A1A1A;
  --text-light: #4A4A4A;
  --text-muted: #7A7A7A;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(11,46,82,0.06);
  --shadow-md: 0 4px 20px rgba(11,46,82,0.08);
  --shadow-lg: 0 8px 40px rgba(11,46,82,0.12);
  --shadow-xl: 0 16px 60px rgba(11,46,82,0.14);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--midnight);
}

em {
  font-style: italic;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--mint);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--mint);
  color: var(--midnight-dark);
  border-color: var(--mint);
}

.btn-primary:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
}

.btn-mint {
  background: var(--mint);
  color: var(--midnight-dark);
  border-color: var(--mint);
}

.btn-mint:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
}

.btn-dark {
  background: var(--midnight);
  color: #fff;
  border-color: var(--midnight);
}

.btn-dark:hover {
  background: var(--midnight-light);
  border-color: var(--midnight-light);
}

.btn-outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--midnight);
}

.btn-outline:hover {
  background: var(--midnight);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--midnight);
  border-color: #fff;
}

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

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254,254,251,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(11,46,82,0.06);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--midnight);
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--midnight);
  color: var(--mint);
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.main-nav a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: all var(--transition);
}

.main-nav a:hover {
  color: var(--midnight);
  background: rgba(11,46,82,0.06);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 22px;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--midnight);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---- HERO ---- */
.hero {
  padding: 120px 0 0;
  background: var(--warm-white);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin-bottom: 28px;
  color: var(--midnight);
}

.hero-headline em {
  color: var(--mint-dark);
}

.hero-body {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
}

.meta-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--mint-dark);
  margin-top: 2px;
}

.meta-item a {
  color: var(--midnight);
  font-weight: 600;
  transition: color var(--transition);
}

.meta-item a:hover {
  color: var(--mint-dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-img-stack {
  position: relative;
}

.hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-img--main {
  width: 100%;
  aspect-ratio: 640/780;
}

.hero-img--main img,
.hero-img--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img--accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  width: 55%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--warm-white);
}

.hero-badge {
  position: absolute;
  top: 32px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--midnight);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  color: var(--mint);
}

.hero-wave {
  color: var(--cream);
  margin-top: -1px;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ---- ABOUT ---- */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-stats {
  position: absolute;
  bottom: -32px;
  right: -32px;
  display: flex;
  gap: 12px;
}

.stat {
  background: var(--warm-white);
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 120px;
}

.stat--accent {
  background: var(--midnight);
  color: #fff;
}

.stat-num {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 6px;
}

.stat--accent .stat-num {
  color: var(--mint);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.stat--accent .stat-label {
  color: rgba(255,255,255,0.7);
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-content .btn {
  margin-top: 12px;
}

/* ---- DEPARTMENTS ---- */
.departments {
  padding: 100px 0;
  background: var(--warm-white);
}

.dept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dept-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,46,82,0.06);
  transition: all var(--transition);
}

.dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dept-card-img {
  overflow: hidden;
  aspect-ratio: 480/360;
}

.dept-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dept-card-body {
  padding: 28px;
}

.dept-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(110,231,183,0.15);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  color: var(--midnight);
}

.dept-icon svg {
  width: 24px;
  height: 24px;
}

.dept-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--midnight);
}

.dept-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* ---- WHY US ---- */
.why-us {
  padding: 100px 0;
  background: var(--cream);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-content .why-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.why-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--mint-light);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.why-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 6px;
}

.why-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.65;
}

.why-visual {
  position: relative;
}

.why-img-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-img-main img {
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.why-floating-card {
  position: absolute;
  bottom: 40px;
  left: -24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--mint);
  color: var(--midnight-dark);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
}

.why-floating-card svg {
  width: 20px;
  height: 20px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  padding: 100px 0;
  background: var(--midnight);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(110,231,183,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(110,231,183,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 48px;
}

.cta-content {
  flex: 1;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-title em {
  color: var(--mint);
}

.cta-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex-shrink: 0;
}

.cta-actions .btn-mint {
  background: var(--mint);
  color: var(--midnight-dark);
}

.cta-actions .btn-mint:hover {
  background: var(--mint-light);
}

/* ---- VISIT ---- */
.visit {
  padding: 100px 0;
  background: var(--warm-white);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.visit-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--cream);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--midnight);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  color: var(--mint);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-card a {
  color: var(--midnight);
  font-weight: 600;
  transition: color var(--transition);
}

.contact-card a:hover {
  color: var(--mint-dark);
}

.visit-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 420px;
}

/* ---- CONTACT FORM ---- */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-text .section-title {
  margin-bottom: 16px;
}

.contact-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
}

.contact-form {
  background: var(--warm-white);
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(11,46,82,0.1);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--mint);
  background: var(--warm-white);
  box-shadow: 0 0 0 4px rgba(110,231,183,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

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

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(110,231,183,0.12);
  border-radius: var(--radius-md);
  color: var(--midnight);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 16px;
}

.form-success svg {
  width: 22px;
  height: 22px;
  color: var(--mint-dark);
  flex-shrink: 0;
}

.form-success.show {
  display: flex;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--midnight-dark);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .logo-mark {
  background: var(--mint);
  color: var(--midnight);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mint);
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

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

.footer-contact p,
.footer-hours p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--mint);
  font-weight: 600;
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--mint-light);
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    max-width: 520px;
  }

  .hero-img--accent {
    left: -20px;
    bottom: -24px;
  }

  .about-grid,
  .why-grid,
  .visit-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-stats {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .why-floating-card {
    left: 20px;
    bottom: -20px;
  }

  .dept-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-body {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(254,254,251,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid rgba(11,46,82,0.06);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--transition);
    pointer-events: none;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 4px;
    width: 100%;
  }

  .main-nav a {
    display: block;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }

  .main-nav a:hover {
    background: rgba(11,46,82,0.06);
  }

  .hero {
    padding: 100px 0 0;
  }

  .hero-grid {
    padding-bottom: 48px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-img--accent {
    display: none;
  }

  .hero-badge {
    right: 16px;
  }

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

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

  .contact-form {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .stat {
    flex: 1;
    min-width: 100px;
  }
}

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
