.frame {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1441px;
  margin: 0 auto;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.frame .div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .frame .div {
    padding: 8px 120px;
  }
}

.frame .LOGO-CIMES {
  position: relative;
  width: 60px;
  height: auto;
  aspect-ratio: 1.09;
  object-fit: cover;
}

@media (min-width: 768px) {
  .frame .LOGO-CIMES {
    width: 78px;
  }
}

/* Hamburger Menu Button */
.frame .hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.frame .hamburger-line {
  width: 100%;
  height: 3px;
  background-color: #504f4f;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.frame .hamburger-menu.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.frame .hamburger-menu.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.frame .hamburger-menu.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (min-width: 1024px) {
  .frame .hamburger-menu {
    display: none;
  }
}

.frame .div-2 {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 80px 20px 20px;
  box-sizing: border-box;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}

.frame .div-2.active {
  display: flex;
}

@media (min-width: 1024px) {
  .frame .div-2 {
    display: flex;
    flex-direction: row;
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    z-index: auto;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 58px;
  }
  
  .frame .div-2.active {
    display: flex;
  }
}

.frame .text-wrapper {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #504f4f;
  font-size: 18px;
  letter-spacing: 0.17px;
  line-height: 24px;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 1024px) {
  .frame .text-wrapper {
    font-size: 17.5px;
    line-height: 23.6px;
  }
}

.frame .text-wrapper-2 {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #504f4f;
  font-size: 18px;
  letter-spacing: 0.17px;
  line-height: 24px;
  white-space: nowrap;
  text-align: center;
}

@media (min-width: 1024px) {
  .frame .text-wrapper-2 {
    font-size: 17.5px;
    line-height: 23.6px;
  }
}

.frame .div-wrapper {
  display: inline-flex;
  height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  position: relative;
  flex: 0 0 auto;
  background-color: #da251d;
  border-radius: 12px;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

@media (min-width: 1024px) {
  .frame .div-wrapper {
    height: 48px;
    padding: 10px 30px;
  }
}

.frame .text-wrapper-3 {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 600;
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0.17px;
  line-height: 24px;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  .frame .text-wrapper-3 {
    font-size: 17.5px;
    line-height: 23.6px;
  }
}

.frame .header {
  position: relative;
  align-self: stretch;
  width: 100%;
  min-height: 400px;
  background-color: #0045ac;
  padding: 20px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .frame .header {
    height: 659px;
    padding: 0;
  }
}

.frame .title {
  display: flex;
  width: 100%;
  max-width: 1129px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  position: relative;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12.93px;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .frame .title {
    flex-direction: row;
    gap: 72px;
    top: 78px;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
  }
}

.frame .image {
  position: relative;
  width: 100%;
  max-width: 350px;
  border-radius: 5%;
  height: auto;
  aspect-ratio: 1.11;
  order: 2;
  margin: 0 auto;
  padding-bottom: 10px;
}

@media (min-width: 1024px) {
  .frame .image {
    width: 604.6px;
    max-width: none;
    height: 549.6px;
    margin-top: -8.30px;
    margin-bottom: -36.30px;
    order: 0;
  }
}

.frame .div-3 {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 330px;
  align-items: center;
  gap: 24px;
  position: relative;
  order: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .frame .div-3 {
    width: 330px;
    order: 0;
    align-items: flex-start;
    text-align: left;
  }
}

.frame .div-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  text-align: center;
}

@media (min-width: 1024px) {
  .frame .div-4 {
    align-items: flex-start;
    text-align: left;
  }
}

.frame .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: "Fira Sans", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 40px;
  letter-spacing: -0.64px;
  line-height: 40px;
}

@media (min-width: 768px) {
  .frame .text-wrapper-4 {
    font-size: 64px;
    line-height: 63.4px;
  }
}

.frame .text-wrapper-5 {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 0.17px;
  line-height: 20px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .text-wrapper-5 {
    font-size: 17.5px;
    line-height: 23.6px;
  }
}

.frame .div-5 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  flex: 0 0 auto;
}

@media (min-width: 1024px) {
  .frame .div-5 {
    align-items: flex-start;
  }
}

.frame .div-6 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
}

.frame .img {
  position: relative;
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .frame .img {
    width: 28px;
    height: 28px;
  }
}

.frame .text-wrapper-6 {
  position: relative;
  width: fit-content;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.30px;
  line-height: normal;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .text-wrapper-6 {
    font-size: 15px;
  }
}

.frame .menu-subscription {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 20px 30px;
  position: relative;
  flex: 0 0 auto;
  background-color: #343b3f;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .frame .menu-subscription {
    max-width: 1440px;
    gap: 63px;
    padding: 50px 120px 30px;
    margin: 0 auto;
  }
}

.frame .div-7 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .frame .div-7 {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.frame .LOGO-CIMES-2 {
  position: relative;
  width: 80px;
  height: auto;
  aspect-ratio: 1.09;
  object-fit: cover;
}

@media (min-width: 768px) {
  .frame .LOGO-CIMES-2 {
    width: 120px;
  }
}

.frame .menu {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .frame .menu {
    width: 607px;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
  }
}

.frame .footer-menu-items {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .frame .footer-menu-items {
    gap: 40px;
    align-items: flex-start;
    text-align: left;
  }
}

.frame .title-2 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Fira Sans", Helvetica;
  font-weight: 700;
  color: #ffffff;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 24px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .title-2 {
    font-size: 24px;
    line-height: 28.8px;
  }
}

.frame .div-8 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  flex: 0 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .frame .div-8 {
    gap: 20px;
    align-items: flex-start;
    text-align: left;
  }
}

.frame .element {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--themegray-100);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .element {
    font-size: 16px;
  }
}

.frame .element-2 {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--themegray-100);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .element-2 {
    font-size: 16px;
  }
}

.frame .items {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.frame .img-2 {
  position: relative;
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .frame .img-2 {
    width: 24px;
    height: 24px;
  }
}

.frame .HR-rights {
  display: flex;
  flex-direction: column;
  min-height: 53px;
  align-items: center;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .frame .HR-rights {
    align-items: flex-start;
    text-align: left;
  }
}

.frame .HR {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 2px;
  margin-top: -1.00px;
  margin-left: -1.00px;
  margin-right: -1.00px;
}

.frame .r-ights {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
  justify-content: center;
  width: 100%;
}

@media (min-width: 768px) {
  .frame .r-ights {
    align-items: flex-start;
    justify-content: flex-start;
    width: auto;
  }
}

.frame .copyright {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.frame .text-wrapper-7 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto", Helvetica;
  font-weight: 800;
  color: #f5f5f5;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 22px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .text-wrapper-7 {
    font-size: 21px;
    line-height: 25.2px;
  }
}

.frame .text-wrapper-8 {
  position: relative;
  width: fit-content;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: #f5f5f5;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .text-wrapper-8 {
    font-size: 16px;
    line-height: 19.2px;
  }
}

.frame .made-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
  justify-content: center;
}

@media (min-width: 768px) {
  .frame .made-by {
    align-items: flex-start;
    justify-content: flex-start;
  }
}

.frame .text-wrapper-9 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto", Helvetica;
  font-weight: 400;
  color: var(--themegray-100);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .text-wrapper-9 {
    font-size: 16px;
    line-height: 19.2px;
  }
}

.frame .text-wrapper-10 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Roboto", Helvetica;
  font-weight: 700;
  color: var(--themegray-100);
  font-size: 14px;
  letter-spacing: 0;
  line-height: 17px;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .frame .text-wrapper-10 {
    font-size: 16px;
    line-height: 19.2px;
  }
}

/* Additional styles for semantic HTML elements */
.frame nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frame nav li {
  display: inline;
}

.frame nav a {
  text-decoration: none;
  color: inherit;
}



.frame address {
  font-style: normal;
}

.frame address a {
  color: inherit;
  text-decoration: none;
}


.frame footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.frame footer li {
  display: block;
}

.frame footer a {
  color: inherit;
  text-decoration: none;
}

.frame footer a:hover,
.frame footer a:focus {
  text-decoration: underline;
}

.frame hr {
  border: none;
  margin: 0;
  padding: 0;
}

/* Prevent horizontal scroll */
body {
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

/* 1) Reset: sacá márgenes del navegador */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* 2) Que el contenedor ocupe todo el ancho */
.frame {
  max-width: none;   /* antes: 1441px */
  margin: 0;         /* antes: 0 auto */
}

/* 3) Footer full-bleed también en desktop */
@media (min-width: 768px) {
  .frame .menu-subscription {
    max-width: none; /* antes: 1440px */
    margin: 0;       /* antes: 0 auto */
    /* mantené el padding que ya tenés para “aire” interno */
    padding: 50px 120px 30px;
  }
}