@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@300;400;500;600;700;800&display=swap");

:root {
  --navy: #18202f;
  --navy-2: #212735;
  --gold: #c19e6c;
  --gold-light: #e4c58e;
  --cream: #f7f2e8;
  --cream-2: #fffaf1;
  --white: #ffffff;
  --gray: #667085;
  --dark: #0e131d;
  --border: rgba(193, 158, 108, 0.28);
  --shadow: 0 30px 70px rgba(14, 19, 29, 0.14);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background: var(--cream-2);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(193, 158, 108, 0.15), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(33, 39, 53, 0.12), transparent 30%);
  pointer-events: none;
  z-index: -1;
}

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

.container {
  width: min(1180px, 90%);
  margin: auto;
}

/* HEADER */

.header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1240px, 94%);
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(193, 158, 108, 0.25);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(14, 19, 29, 0.12);
}

.navbar {
  height: 78px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.2px;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

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

/* BOTONES */

.btn-nav,
.btn-primary,
.btn-secondary,
.btn-card {
  border: none;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  transition: 0.35s ease;
}

.btn-nav,
.btn-primary,
.btn-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  box-shadow: 0 15px 35px rgba(193, 158, 108, 0.32);
}

.btn-nav:hover,
.btn-primary:hover,
.btn-card:hover {
  transform: translateY(-4px);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 22px 45px rgba(33, 39, 53, 0.28);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-4px);
}

.menu-btn {
  display: none;
  background: transparent;
  border: none;
  font-size: 30px;
  color: var(--navy);
  cursor: pointer;
}

/* HERO */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: var(--dark);
}

.hero-slider,
.slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
}

.slide {
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  filter: brightness(0.82) contrast(1.08) saturate(1.05);
  transition: opacity 1.4s ease, transform 6s ease;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 9, 18, 0.97) 0%,
      rgba(5, 9, 18, 0.82) 34%,
      rgba(5, 9, 18, 0.38) 68%,
      rgba(5, 9, 18, 0.22) 100%
    );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1180px, 90%);
  margin: auto;
  color: var(--white);
  padding-left: 48px;
}

.hero-side {
  position: absolute;
  left: 38px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  writing-mode: vertical-rl;
}

.hero-side::before,
.hero-side::after {
  content: "";
  width: 1px;
  height: 75px;
  background: var(--gold);
  opacity: 0.75;
}

.tagline {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.tagline::after {
  content: "";
  width: 55px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 720px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 700; /* más negrita */
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 28px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-carousel-controls {
  margin-top: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  font-weight: 800;
}

.slide-number {
  cursor: pointer;
  position: relative;
  padding-bottom: 12px;
  transition: 0.3s ease;
}

.slide-number.active {
  color: var(--gold);
}

.slide-number.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 2px;
  background: var(--gold);
}

/* PÁGINAS INTERNAS */

.page {
  padding-top: 118px;
}

.page-hero {
  margin: 0 auto;
  width: min(1180px, 90%);
  min-height: 360px;
  padding: 86px 60px;
  border-radius: 0 0 44px 44px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(24, 32, 47, 0.96), rgba(33, 39, 53, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(193, 158, 108, 0.35), transparent 34%);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "§";
  position: absolute;
  right: 50px;
  bottom: -50px;
  font-family: "Cormorant Garamond", serif;
  font-size: 250px;
  color: rgba(193, 158, 108, 0.13);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 780px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 620px;
  margin-top: 22px;
}

/* SECCIONES */

.section {
  padding: 110px 0;
  position: relative;
}

main > .section:nth-of-type(odd) {
  background: var(--cream-2);
}

main > .section:nth-of-type(even) {
  background: var(--cream);
}

.two-columns {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

h2 {
  color: var(--navy);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -1.6px;
  margin-bottom: 24px;
}

p {
  color: var(--gray);
  font-size: 16px;
  margin-bottom: 18px;
}

/* TARJETAS */

.about-card,
.service-card,
.stat-box,
.video-card,
.contact-form,
.info-box {
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(14, 19, 29, 0.06);
}

.about-card {
  background:
    linear-gradient(145deg, rgba(24, 32, 47, 0.98), rgba(33, 39, 53, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(193, 158, 108, 0.22), transparent 38%);
  color: var(--white);
  padding: 46px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  width: 5px;
  height: 70px;
  background: var(--gold);
  border-radius: 999px;
}

.about-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  line-height: 1;
  margin-bottom: 22px;
}

.about-card p,
.about-card li {
  color: rgba(255, 255, 255, 0.8);
}

.about-card ul {
  list-style: none;
}

.about-card li {
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.about-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.about-image-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.04);
}

.about-image-card .about-card {
  border-radius: 0;
  box-shadow: none;
}

/* SERVICIOS */

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

.service-card {
  min-height: 260px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  padding: 38px;
  border-radius: var(--radius);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193, 158, 108, 0.14), transparent 55%);
  opacity: 0;
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
  border-color: rgba(193, 158, 108, 0.55);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 31px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-card p {
  position: relative;
  z-index: 2;
}

.service-center {
  grid-column: 2 / 3;
}

/* TRAYECTORIA */

.stats-page {
  background:
    linear-gradient(135deg, var(--navy), var(--dark)) !important;
  color: var(--white);
}

.stats-page h2,
.stats-page > .container > p {
  color: var(--white) !important;
}

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

.stat-box {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(193, 158, 108, 0.32);
  border-radius: var(--radius);
  padding: 46px 30px;
  text-align: center;
  backdrop-filter: blur(14px);
}

.stat-box h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--gold-light) !important;
  font-size: clamp(58px, 6vw, 88px);
  line-height: 0.9;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 240px;
  margin: 18px auto 0;
}

/* TESTIMONIOS / VIDEOS */

.testimonials {
  background: var(--cream) !important;
}

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

.testimonial-card,
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.35s ease;
}

.testimonial-card {
  padding: 42px;
}

.testimonial-card:hover,
.video-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.testimonial-card::before {
  content: "“";
  font-family: "Cormorant Garamond", serif;
  font-size: 86px;
  color: var(--gold);
  line-height: 1;
}

.testimonial-card p {
  margin-top: -20px;
  font-style: italic;
}

.testimonial-card h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--navy);
  font-size: 28px;
  line-height: 1;
  margin-top: 24px;
}

.testimonial-card span {
  color: var(--gold);
  font-weight: 800;
}

.video-card {
  padding: 12px;
}

.video-card video {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 8px);
  display: block;
}

/* UBICACIÓN */

.info-box {
  margin: 28px 0;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border-left: 6px solid var(--gold);
}

.info-box strong {
  color: var(--navy);
}

.map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: grayscale(0.18) contrast(1.05);
}

/* CONTACTO */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.contact-info {
  padding: 26px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-info p {
  margin-bottom: 14px;
}

.contact-form {
  background: var(--white);
  padding: 42px;
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
}

.contact-form input,
.contact-form textarea,
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(33, 39, 53, 0.16);
  border-radius: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  outline: none;
  background: #fffdf8;
  transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(193, 158, 108, 0.16);
}

.contact-form textarea {
  height: 150px;
  resize: none;
}

.contact-form button {
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background: var(--gold);
  color: var(--dark);
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: var(--white);
  padding: 34px 24px;
  text-align: center;
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* WHATSAPP */

.whatsapp-float {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: #25d366;
  color: var(--white);
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  z-index: 999;
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.36);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.03);
}

/* MODAL */

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14, 19, 29, 0.78);
  z-index: 9999;
  justify-content: center;
  align-items: flex-start;
  overflow-y: auto;
  padding: 34px 18px;
}

.modal.active {
  display: flex;
}

.modal-content {
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--cream-2);
  padding: 38px;
  border-radius: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.28);
  position: relative;
  margin: auto;
  animation: aparecer 0.3s ease;
}

@keyframes aparecer {
  from {
    transform: translateY(-22px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content h2{
    font-family: "Cinzel", serif !important;
    font-size: 4rem !important;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 35px;
}

.close-modal {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 34px;
  cursor: pointer;
  color: var(--navy);
}

#appointmentForm {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 900;
  color: var(--navy);
  font-size: 14px;
}

.form-group input {
  height: 50px;
}

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

#appointmentForm button {
  padding: 16px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s ease;
}

#appointmentForm button:hover {
  background: var(--navy);
  color: var(--white);
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 950px) {
  .header {
    top: 10px;
    width: 94%;
    border-radius: 24px;
  }

  .navbar {
    height: 74px;
  }

  .nav-links,
  .btn-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links.active {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 28px;
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .two-columns,
  .contact-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .testimonials-grid,
  .videos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-center {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .logo img {
    height: 46px;
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -1.5px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 76px 0;
  }

  .page {
    padding-top: 96px;
  }

  .page-hero {
    padding: 62px 26px;
    min-height: 300px;
  }

  .services-grid,
  .testimonials-grid,
  .videos-grid {
    grid-template-columns: 1fr;
  }

  .about-card,
  .contact-form,
  .modal-content {
    padding: 28px;
  }

  .video-card video {
    height: 420px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 13px 18px;
  }
}

/* Quitar texto vertical izquierdo */
.hero-side {
  display: none !important;
}

/* Centrar números del carrusel */
.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 5;
}

  /* Mover texto del hero más a la izquierda */
.hero-content {
  width: min(1280px, 92%);
  padding-left: 0;
  margin-left: 9%;
}

/* Degradado menos oscuro */
.hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(5, 9, 18, 0.78) 0%,
      rgba(5, 9, 18, 0.55) 38%,
      rgba(5, 9, 18, 0.18) 72%,
      rgba(5, 9, 18, 0.08) 100%
    ) !important;
}
/* Números del carrusel centrados y más abajo */
.hero-carousel-controls {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 5;
}
/* Forzar la misma tipografía del título principal en el modal */
.modal-content h2,
#appointmentModal .modal-content h2 {
  font-family: "Cinzel", serif !important;
  font-size: clamp(38px, 5vw, 58px) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}

.practice-preview {
  background: #f8f5ef !important;
  padding: 90px 0;
}

.section-heading-center {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading-center .section-label {
  justify-content: center;
}

.section-heading-center h2 {
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.practice-card {
  background: linear-gradient(145deg, #101827, #070d16);
  color: white;
  padding: 32px 24px;
  min-height: 300px;
  border-radius: 10px;
  border: 1px solid rgba(193, 158, 108, 0.35);
  position: relative;
  overflow: hidden;
  transition: 0.35s ease;
}

.practice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.practice-number {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  color: rgba(255, 255, 255, 0.08);
}

.practice-icon {
  color: var(--gold);
  font-size: 34px;
  margin: 42px 0 24px;
}

.practice-card h3 {
  font-family: "Cinzel", serif;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.practice-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
}

.practice-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
}

@media (max-width: 950px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

/* Tipografía elegante tipo logo */
.hero h1,
.practice-preview h2,
.services h2,
.stats-page h2,
.testimonials h2,
.section h2 {
  font-family: "Cinzel", serif !important;
  font-weight: 500 !important;
  letter-spacing: 1px;
}

/* Títulos de tarjetas con estilo más elegante */
.practice-card h3,
.service-card h3 {
  font-family: "Cinzel", serif !important;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Quitar emojis y usar símbolos elegantes */
.practice-icon {
  font-size: 0 !important;
  width: 42px;
  height: 42px;
  margin: 42px 0 24px;
  position: relative;
}

.practice-icon::before {
  font-size: 34px;
  color: var(--gold);
  font-family: "Times New Roman", serif;
}

/* Derecho Civil */
.practice-card:nth-child(1) .practice-icon::before {
  content: "⚖";
}

/* Derecho Familiar */
.practice-card:nth-child(2) .practice-icon::before {
  content: "◉";
}

/* Derecho Constitucional */
.practice-card:nth-child(3) .practice-icon::before {
  content: "⌂";
}

/* Derecho Penal */
.practice-card:nth-child(4) .practice-icon::before {
  content: "◇";
}

/* Título elegante de áreas de práctica */
.practice-preview .section-label {
  color: var(--gold) !important;
  font-family: "Cinzel", serif !important;
  font-weight: 700 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.practice-preview h2 {
  font-family: "Cinzel", serif !important;
  color: var(--navy) !important;
  font-weight: 500 !important;
  letter-spacing: 2px;
}

/* Números en beige */
.practice-number {
  color: rgba(193, 158, 108, 0.28) !important;
  font-family: "Cinzel", serif !important;
  font-size: 38px !important;
}

/* Íconos como imagen */
.practice-icon {
  display: none !important;
}

.practice-img-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  margin: 42px 0 24px;
  display: block;
}

/* Color de títulos dentro de tarjetas */
.practice-card h3 {
  font-family: "Cinzel", serif !important;
  color: #ffffff !important;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Quitar símbolos anteriores */
.practice-icon::before {
  content: none !important;
}

/* Ajustes sección áreas de práctica */

/* Título más pequeño */
.practice-preview h2 {
  font-size: clamp(32px, 4vw, 50px) !important;
  letter-spacing: 3px !important;
}

/* Subtítulo beige más visible */
.practice-preview .section-label {
  color: var(--gold) !important;
  font-weight: 800 !important;
}

/* Tarjetas más pequeñas */
.practice-grid {
  gap: 18px !important;
  max-width: 1080px;
  margin: auto;
}

.practice-card {
  min-height: 260px !important;
  padding: 26px 24px !important;
}

/* Números más claros */
.practice-number {
  color: rgba(193, 158, 108, 0.55) !important;
  opacity: 1 !important;
  font-size: 42px !important;
}

/* Íconos un poco más compactos */
.practice-img-icon {
  width: 36px !important;
  height: 36px !important;
  margin: 38px 0 20px !important;
}

/* Texto más compacto dentro de tarjetas */
.practice-card h3 {
  font-size: 18px !important;
}

.practice-card p {
  font-size: 14px !important;
  line-height: 1.6 !important;
}

/* Evitar que número e ícono se sobrepongan */
.practice-card {
  padding-top: 34px !important;
}

.practice-number {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  display: block;
  margin-bottom: 14px;
}

.practice-img-icon {
  margin: 0 0 24px !important;
  display: block;
}

/* Trayectoria tipo franja horizontal */
.trajectory-strip {
  padding: 0 !important;
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  background: #f8f5ef !important;
}

.trajectory-left {
  background:
    linear-gradient(rgba(7, 13, 22, 0.88), rgba(7, 13, 22, 0.88)),
    url("consultorio3.jpeg");
  background-size: cover;
  background-position: center;
  padding: 58px 70px;
  color: white;
}

.trajectory-left .section-label {
  color: var(--gold) !important;
  font-weight: 800;
}

.trajectory-left h2 {
  color: white !important;
  font-family: "Cinzel", serif !important;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.05;
  text-transform: uppercase;
}

.trajectory-left p {
  color: rgba(255, 255, 255, 0.78) !important;
  max-width: 380px;
}

.trajectory-right {
  background: #f8f5ef;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  padding: 50px 42px;
}

.trajectory-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(193, 158, 108, 0.35);
}

.trajectory-item:last-child {
  border-right: none;
}

.trajectory-icon {
  display: block;
  color: var(--gold);
  font-size: 28px;
  margin-bottom: 10px;
}

.trajectory-item h3 {
  font-family: "Cinzel", serif;
  font-size: clamp(34px, 4vw, 50px);
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.trajectory-item p {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

@media (max-width: 950px) {
  .trajectory-strip {
    grid-template-columns: 1fr;
  }

  .trajectory-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .trajectory-item {
    border-right: none;
  }
}

@media (max-width: 620px) {
  .trajectory-left {
    padding: 46px 28px;
  }

  .trajectory-right {
    grid-template-columns: 1fr;
  }
}

/* Hacer mucho más ancha la parte azul */
.trajectory-strip {
  grid-template-columns: 3fr 1.2fr !important;
}

/* Más espacio interno */
.trajectory-left {
  padding: 70px 90px !important;
}

/* Ajuste responsive */
@media (max-width: 950px) {
  .trajectory-strip {
    grid-template-columns: 1fr !important;
  }

  .trajectory-left {
    padding: 45px 35px !important;
  }
}

/* Forzar ancho mayor de la parte azul de trayectoria */
.trajectory-strip {
  display: grid !important;
  grid-template-columns: 42% 58% !important;
}

.trajectory-left {
  width: 100% !important;
  min-width: 42vw !important;
}

.trajectory-right {
  width: 100% !important;
  grid-template-columns: repeat(4, 1fr) !important;
}

/* Si lo quieres aún más grande, cambia 42% por 48% */
/* Corregir trayectoria para que no se salga "Compromiso" */
.trajectory-strip {
  display: grid !important;
  grid-template-columns: 42% 58% !important;
  overflow: hidden !important;
}

.trajectory-right {
  min-width: 0 !important;
  overflow: hidden !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  padding: 50px 28px !important;
}

.trajectory-item {
  min-width: 0 !important;
  padding: 0 14px !important;
}

.trajectory-item h3 {
  font-size: clamp(28px, 3vw, 46px) !important;
  white-space: normal !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

.trajectory-item:nth-child(4) h3 {
  font-size: clamp(24px, 2.6vw, 38px) !important;
}

.video-testimonials {
  background: #fffdf8 !important;
  padding: 70px 0 80px !important;
}

.video-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.video-heading span {
  width: 70px;
  height: 1px;
  background: rgba(193, 158, 108, 0.55);
}

.video-heading p {
  margin: 0;
  color: var(--navy);
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

.video-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.video-mini-card {
  position: relative;
  height: 165px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 18px 40px rgba(14, 19, 29, 0.16);
}

.video-mini-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
  display: block;
}

.play-btn {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid white;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 22px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.video-more-btn {
  margin: 26px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 36px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.video-more-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

@media (max-width: 950px) {
  .video-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .video-row {
    grid-template-columns: 1fr;
  }

  .video-mini-card {
    height: 220px;
  }
}

/* Videos tipo publicación de Instagram */
.video-testimonials {
  padding: 80px 0 90px !important;
}

.video-row {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 30px !important;
}

.video-mini-card {
  height: auto !important;
  aspect-ratio: 4 / 5;
  border-radius: 18px !important;
  border: 12px solid #ffffff;
  box-shadow: 0 22px 55px rgba(14, 19, 29, 0.18);
}

.video-mini-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) !important;
}

/* Botón play centrado */
.play-btn {
  width: 70px !important;
  height: 70px !important;
  font-size: 26px !important;
  border: 2px solid #ffffff !important;
}

/* Responsive */
@media (max-width: 950px) {
  .video-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .video-row {
    grid-template-columns: 1fr !important;
  }

  .video-mini-card {
    aspect-ratio: 4 / 5;
  }
}

/* Footer moderno */
.footer-modern {
  background: linear-gradient(135deg, #070d16, #101827);
  color: white;
  padding: 55px 0 22px;
  position: relative;
  overflow: hidden;
}

.footer-modern::after {
  content: "A";
  position: absolute;
  right: 70px;
  bottom: -35px;
  font-family: "Cinzel", serif;
  font-size: 190px;
  color: rgba(193, 158, 108, 0.08);
  line-height: 1;
}

.footer-container {
  width: min(1180px, 90%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.4fr;
  gap: 45px;
  position: relative;
  z-index: 2;
}

.footer-brand img {
  width: 190px;
  background: white;
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 260px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

.footer-col h4 {
  color: var(--gold);
  font-family: "Cinzel", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  width: min(1180px, 90%);
  margin: 35px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(193, 158, 108, 0.22);
  text-align: center;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  position: relative;
  z-index: 2;
}

@media (max-width: 950px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-modern::after {
    font-size: 130px;
    right: 20px;
  }
}

/* FOOTER LIMPIO Y ELEGANTE */

.footer-clean {
  background: linear-gradient(135deg, #070d16, #101827);
  padding: 55px 0 24px;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer-clean-container {
  width: min(1180px, 90%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

.footer-clean-brand img {
  width: 245px;
  background: white;
  padding: 10px 16px;
  border-radius: 6px;
  margin-bottom: 22px;
}

.footer-clean-brand p {
  color: rgba(255, 255, 255, 0.76);
  max-width: 340px;
  font-size: 15px;
  line-height: 1.7;
}

.footer-clean-contact h4,
.footer-clean-social h4 {
  font-family: "Cinzel", serif;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 22px;
}

.footer-clean-contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-clean-contact span {
  color: var(--gold);
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: var(--gold);
  color: #070d16;
  transform: translateY(-4px);
}

.footer-clean-bottom {
  width: min(1180px, 90%);
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(193, 158, 108, 0.35);
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

@media (max-width: 900px) {
  .footer-clean-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 35px;
  }

  .footer-clean-brand p {
    margin: auto;
  }

  .footer-clean-contact p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }
}
.footer-clean,
.footer-simple,
.footer-modern,
.footer {
  background: #212735 !important;
}

.modal-content h2,
#appointmentModal .modal-content h2 {
  font-size: 34px !important;
}
/* NUEVA PÁGINA NOSOTROS */

.about-hero-new {
  width: min(1180px, 90%);
  margin: 40px auto 80px;
  min-height: 420px;
  background: linear-gradient(135deg, #212735, #141821);
  border-radius: 0 0 42px 42px;
  padding: 95px 70px;
  color: white;
  position: relative;
  overflow: hidden;
}

.about-hero-new::after {
  content: "§";
  position: absolute;
  right: 70px;
  bottom: -60px;
  font-family: "Cinzel", serif;
  font-size: 250px;
  color: rgba(193, 158, 108, 0.12);
}

.about-hero-new span,
.about-text-new span,
.team-heading-new span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 800;
  font-size: 13px;
}

.about-hero-new h1 {
  font-family: "Cinzel", serif;
  font-size: clamp(50px, 7vw, 95px);
  line-height: 1;
  text-transform: uppercase;
  max-width: 720px;
  margin: 24px 0;
}

.about-hero-new p {
  color: rgba(255,255,255,.78);
  font-size: 18px;
}

.about-main-new {
  padding: 40px 0 100px;
}

.about-main-container {
  width: min(1180px, 90%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.about-text-new h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  margin: 20px 0 30px;
}

.about-text-new p {
  color: #667085;
  font-size: 17px;
}

.about-values-new {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(33, 39, 53, 0.16);
}

.about-values-new img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.values-box-new {
  background: #212735;
  padding: 42px;
  color: white;
  border-left: 6px solid var(--gold);
}

.values-box-new h3 {
  font-family: "Cinzel", serif;
  font-size: 34px;
  margin-bottom: 22px;
}

.values-box-new ul {
  list-style: none;
}

.values-box-new li {
  color: rgba(255,255,255,.82);
  margin-bottom: 14px;
  padding-left: 26px;
  position: relative;
}

.values-box-new li::before {
  content: "✦";
  color: var(--gold);
  position: absolute;
  left: 0;
}

.team-section-new {
  background: #fffaf1;
  padding: 90px 0 110px;
}

.team-heading-new {
  text-align: center;
  margin-bottom: 50px;
}

.team-heading-new h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(42px, 5vw, 70px);
  text-transform: uppercase;
  margin: 18px 0;
}

.team-heading-new p {
  max-width: 650px;
  margin: auto;
  color: #667085;
}

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

.team-card-new {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(193, 158, 108, 0.25);
  box-shadow: 0 24px 55px rgba(33, 39, 53, 0.10);
  transition: 0.35s ease;
}

.team-card-new:hover {
  transform: translateY(-8px);
}

.team-card-new img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.team-card-new div {
  padding: 28px;
}

.team-card-new h3 {
  font-family: "Cinzel", serif;
  color: #212735;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.team-card-new p {
  color: #667085;
  margin: 0;
}

@media (max-width: 950px) {
  .about-main-container,
  .team-grid-new {
    grid-template-columns: 1fr;
  }

  .about-hero-new {
    padding: 70px 34px;
  }
}

/* HERO NOSOTROS más pequeño y elegante */
.about-hero-new {
  min-height: 280px !important;
  margin: 26px auto 55px !important;
  padding: 58px 64px !important;
  border-radius: 0 0 28px 28px !important;
}

.about-hero-new h1 {
  font-size: clamp(38px, 5vw, 64px) !important;
  line-height: 1.02 !important;
  max-width: 620px !important;
  margin: 18px 0 16px !important;
  letter-spacing: 1px !important;
}

.about-hero-new p {
  font-size: 16px !important;
  max-width: 560px !important;
}

.about-hero-new::after {
  font-size: 150px !important;
  right: 50px !important;
  bottom: -35px !important;
  opacity: 0.65 !important;
}

@media (max-width: 620px) {
  .about-hero-new {
    padding: 48px 28px !important;
    min-height: 240px !important;
  }
}

/* Hero Nosotros más angosto y elegante */
.about-hero-new {
  min-height: 230px !important;
  padding: 48px 60px !important;
  width: min(980px, 86%) !important;
}

.about-hero-new h1 {
  font-size: clamp(34px, 4vw, 52px) !important;
  max-width: 760px !important;
  line-height: 1.05 !important;
  white-space: nowrap !important;
}

.about-hero-new p {
  font-size: 15px !important;
  max-width: 640px !important;
}

.about-hero-new::after {
  font-size: 120px !important;
}

/* Reducir espacio entre navbar y cuadro de Nosotros */
.about-hero-new {
  margin-top: 0 !important;
  margin-bottom: 45px !important;
}

/* Reducir espacio antes de la sección del equipo */
.team-section-new {
  padding-top: 45px !important;
}

/* Hacer más pequeño el título Abogados del estudio */
.team-heading-new h2 {
  font-size: clamp(34px, 4vw, 54px) !important;
  letter-spacing: 1px !important;
}

/* Acomodar fotos del equipo */
.team-card-new img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center top;
}

/* Ajuste especial para la foto del medio */
.team-card-new:nth-child(2) img {
  object-position: center 18%;
}

/* Título de abogados igual al estilo de testimonios */
.team-heading-new {
  text-align: center !important;
  margin-bottom: 42px !important;
}

.team-heading-new span {
  display: none !important;
}

.team-heading-new h2 {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-family: "Cinzel", serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: #212735 !important;
  margin: 0 !important;
}

.team-heading-new h2::before,
.team-heading-new h2::after {
  content: "";
  width: 75px;
  height: 1px;
  background: rgba(193, 158, 108, 0.55);
}

.team-heading-new p {
  display: none !important;
}

.team-more-btn {
  margin: 38px auto 0;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 48px;
  border-radius: 999px;
  border: 1.5px solid var(--gold);
  color: #212735;
  font-weight: 900;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.team-more-btn:hover {
  background: var(--gold);
  color: #212735;
  transform: translateY(-3px);
}
.team-section-new .container {
  text-align: center !important;
}

.team-more-btn {
  display: inline-flex !important;
}

/* AJUSTES RESPONSIVE FINALES */

/* Evitar sobreposición del header en tablet/celular */
@media (max-width: 950px) {
  .navbar > .btn-primary,
  .navbar > .btn-nav {
    display: none !important;
  }

  .nav-links.active {
    z-index: 2000;
  }
}

/* Hero principal en celular */
@media (max-width: 620px) {
  .hero-content {
    width: 90% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero h1 {
    font-size: 42px !important;
    line-height: 0.95 !important;
  }

  .hero-buttons {
    gap: 12px !important;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
  }
}

/* Evitar que los títulos internos se salgan */
@media (max-width: 620px) {
  .about-hero-new h1 {
    white-space: normal !important;
    font-size: 34px !important;
  }

  .about-hero-new {
    width: 90% !important;
    padding: 42px 26px !important;
  }
}

/* Servicios: tarjetas correctas en tablet/celular */
@media (max-width: 950px) {
  .practice-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .practice-grid {
    grid-template-columns: 1fr !important;
  }

  .practice-card {
    min-height: auto !important;
  }
}

/* Equipo de abogados */
@media (max-width: 950px) {
  .team-grid-new {
    grid-template-columns: 1fr !important;
  }

  .team-card-new img {
    height: 420px !important;
  }
}

@media (max-width: 620px) {
  .team-card-new img {
    height: 360px !important;
  }

  .team-heading-new h2 {
    font-size: 15px !important;
    gap: 12px !important;
  }

  .team-heading-new h2::before,
  .team-heading-new h2::after {
    width: 45px !important;
  }
}

/* Trayectoria corregida */
@media (max-width: 950px) {
  .trajectory-strip {
    grid-template-columns: 1fr !important;
  }

  .trajectory-right {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .trajectory-right {
    grid-template-columns: 1fr !important;
  }

  .trajectory-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(193, 158, 108, 0.35);
    padding: 24px 0 !important;
  }

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

/* Videos */
@media (max-width: 950px) {
  .video-row {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 620px) {
  .video-row {
    grid-template-columns: 1fr !important;
  }
}

/* Footer */
@media (max-width: 900px) {
  .footer-clean-container {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .footer-clean-contact p {
    justify-content: center;
  }

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


.team-card-new h3 .cargo-abogado {
  display: block !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #c19e6c !important;
  margin-bottom: 8px !important;
  line-height: 1.2 !important;
}