/* Reset e base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #f2f2f2;
  line-height: 1.4;
  color: #333;
}
.container-principal {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 20px;
}

/* Header Section */
.card-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  height: 100%;
}
.card-content,
.card-image {
  display: flex;
  flex-direction: column;
  justify-content: start;
  height: 100%;
}
.header-reverse {
  direction: rtl;
}

.header-reverse .card-content,
.header-reverse .card-image {
  direction: ltr;
}

.card-image img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.card-secondary-image img {
  width: 100%;
  height: 330px; 
  display: block;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-secondary-image {
  margin-top: 20px; 
}
.card-content {
    padding: 40px 20px 0 20px;
    box-sizing: border-box;
    justify-content: space-between;
}

.card-title {
    font-family: "Montserrat", sans-serif;
    font-size: 50px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 20px;
    line-height: normal;
    letter-spacing: -2.35px;
}

.card-description {
    font-family: "Open Sans", sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 150%;
    letter-spacing: -0.16px;
}

.card-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  flex-direction: row;
}

.btn-primary {
  background-color: #9a2686;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #7a1f6b;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: #9a2686;
  padding: 5px 15px;
  border: 2px solid #9a2686;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: #9a2686;
  color: white;
  transform: translateY(-2px);
}

.btn-primary,
.btn-secondary {
  white-space: nowrap;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Content Section */
.content-section {
  text-align: center;
}

.section-heading {
    font-family: 'Montserrat';
    font-size: 50px;
    font-weight: 600;
    color: #1c1c1c;
    margin-bottom: 30px;
    line-height: 118%;
    letter-spacing: -0.16px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.section-description {
    font-family: 'Open Sans';
    font-size: 22px;
    font-weight: 500;
    color: #1c1c1c;
    margin-bottom: 2rem;
    line-height: 150%;
    letter-spacing: -0.8px;
}

.hero-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .card-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .card-content {
    padding-left: 0;
    text-align: center;
  }

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

  .card-description {
    font-size: 1rem;
  }

  .card-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .card-image {
    display: none;
  }

  .card-secondary-image img {
    height: auto;
  }

  .header-images {
    display: none;
  }
}
@media (max-width: 768px) {
  .btn-primary {
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
  }
}
