/* style.css */
:root {
  --primary: #692a34; /* Dark Maroon/Burgundy based on image */
  --primary-hover: #522028;
  --text-main: #333333;
  --text-light: #555555;
  --bg-main: #ffffff;
  --bg-gray: #f9f9f9;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  background-color: var(--bg-main);
  -webkit-font-smoothing: antialiased;
}

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

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h1 em { font-style: italic; color: var(--primary); }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}

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

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid #ccc;
}

.btn-outline:hover {
  border-color: var(--text-main);
  background-color: var(--bg-gray);
}

.btn-block {
  width: 100%;
}

.badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(105, 42, 52, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Header */
.header {
  border-bottom: 1px solid #eee;
  padding: 1.2rem 0;
  background-color: #fff;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--primary);
  font-size: 1.25rem;
}

.logo-icon {
  background-color: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 2px;
}

.logo-text {
  font-family: var(--font-heading);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.nav .btn {
  padding: 0.6rem 1.2rem;
}

/* Hero */
.hero {
  background-color: var(--bg-gray);
  padding: 4rem 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-checks {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-checks span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-checks svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

.hero-image {
  background-color: white; /* fallback */
  height: 600px; /* approximates image */
  background-image: url('assets/lawyer_portrait.jpg');
  background-size: cover;
  background-position: center top;
  border-radius: 4px;
}

/* Trust Bar */
    /* Handled by .trust-bar below */

/* Trust Bar */
.trust-bar {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
  background-color: #fff;
}

.trust-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  color: var(--text-light);
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
}

.trust-inner span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-inner span::before {
  content: "•";
  color: #ccc;
  font-style: normal;
}

.trust-inner span:first-child::before {
  display: none;
}

/* About */
.about {
  padding: 6rem 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section-line {
  width: 50px;
  height: 3px;
  background-color: var(--primary);
  margin-bottom: 1.5rem;
}

.about h2 {
  max-width: 400px;
}

.about p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.check-list {
  list-style: none;
  margin-top: 1.5rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.check-list svg {
  width: 16px;
  height: 16px;
  fill: var(--text-main);
  flex-shrink: 0;
}

.about-image {
  background-image: url('assets/office_hallway.jpg');
  background-size: cover;
  background-position: center;
  height: 400px;
  border-radius: 4px;
  box-shadow: 10px 10px 0 var(--primary);
}

/* Practice Areas */
.practice-areas {
  background-color: var(--bg-gray);
  padding: 6rem 0;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: #fff;
  padding: 3rem 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 40px;
  height: 40px;
  background-color: #fcebeb; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

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

/* Stats */
.stats {
  background-color: var(--primary);
  color: #fff;
  padding: 3.5rem 0;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* CTA */
.cta {
  padding: 6rem 0;
}

.cta p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.cta-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border: 1px solid #ddd;
  border-right: none;
  font-size: 0.9rem;
  background-color: var(--bg-gray);
  border-radius: 4px 0 0 4px;
  font-family: var(--font-body);
  outline: none;
}

.cta-form input:focus {
  border-color: var(--primary);
}

.cta-form .btn {
  border-radius: 0 4px 4px 0;
}

/* FAQ */
.faq {
  background-color: var(--bg-gray);
  padding: 5rem 0 6rem;
}

.faq-container {
  max-width: 700px;
}

.accordion {
  margin-top: 3rem;
}

.accordion-item {
  background: #fff;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  border: 1px solid #eee;
}

.accordion-header {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}

.accordion-header svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
}

/* Footer */
.footer {
  background-color: #ededed;
  padding: 4rem 0 0 0;
}

.grid-3-footer {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.2rem;
  color: var(--text-main);
}

.footer-col > p {
  color: var(--text-light);
  font-size: 0.8rem;
  margin-top: 1.2rem;
  max-width: 250px;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-light);
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.footer-col ul li svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  fill: var(--primary);
  margin-top: 0.2rem;
}

.quick-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quick-form input {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  outline: none;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; justify-content: center; }
  .header-inner .logo { width: 100%; justify-content: center; margin-bottom: 1rem; }
  .header-inner .btn { display: none; }
  .nav-links { display: flex; width: 100%; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
  
  .hero-inner, .about-inner { grid-template-columns: 1fr; }
  .grid-3, .grid-4, .grid-3-footer { grid-template-columns: 1fr; gap: 2rem; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding: 1.5rem 0; }
  .stat-item:last-child { border-bottom: none; }
  .hero-image { height: 400px; }
}

/* WhatsApp CTA */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: var(--primary);
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: var(--primary-hover);
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0,0,0,0.4);
}

/* Team Section */
.section-padding { padding: 5rem 0; }

/* Boutique Team Layout */
.team-boutique {
  background-color: var(--bg-main);
  padding: 4rem 0 8rem 0;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 8rem;
}

.team-row:last-child {
  margin-bottom: 0;
}

.team-row.reverse {
  flex-direction: row-reverse;
}

.team-image {
  flex: 1;
  position: relative;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: -20px 20px 0 var(--bg-gray);
  transition: transform 0.5s ease;
}

.team-row.reverse .img-wrapper {
  box-shadow: 20px 20px 0 var(--bg-gray);
}

.img-wrapper img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(80%) contrast(1.1);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-row:hover .img-wrapper img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.05);
}

.team-info {
  flex: 1.2;
}

.role-badge {
  font-family: var(--font-body);
  color: var(--primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  display: block;
  margin-bottom: 1.5rem;
}

.team-info h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-main);
}

.team-info .divider {
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin-bottom: 2rem;
}

.team-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--text-main);
  padding-bottom: 0.3rem;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: var(--primary);
  border-color: var(--primary);
  gap: 1rem;
}

.read-more svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

@media (max-width: 900px) {
  .team-row, .team-row.reverse {
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
  }
  .team-info h2 { font-size: 2.5rem; }
  .img-wrapper { box-shadow: none; }
  .team-row.reverse .img-wrapper { box-shadow: none; }
}

/* Editorial Creative Areas */
.areas-creative {
  padding: 4rem 0 8rem 0;
}

.area-block {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 10rem;
}

.area-block:last-child {
  margin-bottom: 2rem;
}

.area-block.reverse {
  flex-direction: row-reverse;
}

.area-visual {
  flex: 0 0 65%;
  position: relative;
  z-index: 1;
  height: 550px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.area-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), filter 0.8s;
}

.area-block:hover .area-visual img {
  transform: scale(1.05);
  filter: brightness(1) contrast(1);
}

.area-text-box {
  flex: 0 0 45%;
  background-color: #ffffff; /* Fijo para ocultar la imagen detrás */
  padding: 4rem;
  position: relative;
  margin-left: -10%;
  z-index: 10;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border-top: 4px solid var(--primary);
  border-radius: 4px;
}

/* On reverse, we pull it to the left so it overlaps the right image */
.area-block.reverse .area-text-box {
  margin-left: 0;
  margin-right: -10%;
}

.area-num-bg {
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(255,255,255,0.03);
  font-weight: 700;
  z-index: 0;
  pointer-events: none;
}

.area-text-box h3 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--text-main);
  position: relative;
  z-index: 1;
}

.area-text-box p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .area-block, .area-block.reverse {
    flex-direction: column;
    margin-bottom: 6rem;
  }
  .area-visual { flex: 0 0 auto; width: 100%; height: 400px; }
  .area-text-box, .area-block.reverse .area-text-box { margin: -80px 5% 0 5%; flex: 0 0 auto; width: 90%; padding: 2.5rem; }
}

/* Firma Hero */
.firma-title {
  font-size: 4.5rem;
  margin-bottom: 2rem;
  line-height: 1.1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.firma-subtitle {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Firma Collage */
.firma-collage {
  padding: 4rem 0 10rem 0;
}

.collage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.collage-text h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.collage-text h2 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 400;
}

.collage-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.signature {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sig-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--text-main);
  letter-spacing: 0.05em;
}

/* Collage Images overlapping effect */
.collage-images {
  position: relative;
  height: 600px;
}

.collage-images img {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
  border-radius: 4px;
}

.collage-images img:hover {
  transform: translateY(-10px) scale(1.02);
  z-index: 10 !important;
}

.img-1 {
  width: 55%;
  height: 380px;
  top: 0;
  left: 0;
  z-index: 3;
}

.img-2 {
  width: 50%;
  height: 350px;
  bottom: 0;
  left: 20%;
  z-index: 2;
  filter: grayscale(100%);
}

.img-3 {
  width: 45%;
  height: 480px;
  top: 10%;
  right: 0;
  z-index: 1;
}

/* Timeline */
.firma-timeline {
  background-color: var(--bg-gray);
  padding: 8rem 0;
}

.timeline {
  max-width: 800px;
  margin: 4rem auto 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100px;
  height: 100%;
  width: 1px;
  background-color: var(--primary);
}

.timeline-item {
  display: flex;
  margin-bottom: 5rem;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-year {
  width: 100px;
  flex-shrink: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  font-style: italic;
  padding-right: 2rem;
  position: relative;
  text-align: right;
  top: -5px;
}

.timeline-year::after {
  content: '';
  position: absolute;
  top: 15px;
  right: -6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--bg-main);
  border: 2px solid var(--primary);
}

.timeline-content {
  padding-left: 4rem;
}

.timeline-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .firma-title { font-size: 3rem; }
  .firma-subtitle { font-size: 1.2rem; }
  .collage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .collage-images { height: 450px; margin-top: 2rem; }
  .timeline::before { left: 0; }
  .timeline-year { text-align: left; padding-right: 0; width: 100%; margin-bottom: 1rem; }
  .timeline-year::after { left: -6px; top: 10px; }
  .timeline-item { flex-direction: column; margin-bottom: 3rem; }
  .timeline-content { padding-left: 2rem; border-left: 1px solid rgba(255,255,255,0.1); }
}

/* Estilos para pginas de reas individuales */
.inner-hero {
  background-color: var(--secondary);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 160px 0 100px;
  text-align: center;
  color: white;
}
.inner-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(10, 15, 26, 0.75);
  z-index: 1;
}
.inner-hero .container {
  position: relative;
  z-index: 2;
}
.inner-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--white);
}

.area-content {
  padding: 80px 0;
  background-color: #fff;
}

.area-intro {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #555;
  border-left: 4px solid var(--primary);
  padding-left: 25px;
  font-style: italic;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.service-details {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .service-details {
    grid-template-columns: 1fr 1fr;
  }
}

.service-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  font-size: 1.4rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-item h3::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  border-radius: 50%;
}

.service-item p {
  line-height: 1.6;
  color: #444;
}


/* Zig-Zag Layout para Áreas */
.zigzag-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 80px 0;
}

.zigzag-module {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-main);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.zigzag-module:hover {
  transform: translateY(-5px);
}

.zigzag-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
}

.zigzag-content {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zigzag-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 15px;
}

.zigzag-content h2 {
  font-size: 2.2rem;
  color: var(--text-main);
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.zigzag-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.zigzag-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  padding-bottom: 3px;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.zigzag-btn:hover {
  border-bottom-color: var(--primary);
  gap: 15px;
}

@media (min-width: 992px) {
  .zigzag-module {
    flex-direction: row;
    height: 500px;
  }
  
  .zigzag-module:nth-child(even) {
    flex-direction: row-reverse;
  }
  
  .zigzag-image {
    width: 50%;
    height: 100%;
  }
  
  .zigzag-content {
    width: 50%;
    padding: 60px 80px;
  }
}

.inner-hero .badge {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border: none !important;
  padding: 6px 14px;
  border-radius: 4px;
}
