*,
*:before,
*:after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  border: none;
  font: inherit;
  background: none;
  color: inherit;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: sans-serif;
  background-color: #fff;
  color: #000;
}
a {
  text-decoration: none;
  color: inherit;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
input,
button,
textarea,
select {
  font: inherit;
}
h1 {
  font-size: 2rem;
}
img {
  height: auto;
}
#about-section {
  background-color: #eee;
}
.about-container {
  background-image: url(https://res.cloudinary.com/dxr7cjjpa/image/upload/v1756845959/IMG_1039_u0x1uo.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  height: 80vh;
}
.sombra {
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1117;
  padding: 50px 0;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.title-about {
  text-align: center;
  padding: 15px 0;
  color: #111;
  margin-bottom: 5px;
  font-size: var(--font-size-xl);
}
.divisor-left {
  width: 85%;
  margin: 0 auto;
  background-color: #222;
  border: 1px solid #222;
}
.about-container > h2 {
  margin-top: 40px;
  color: #111;
  margin-bottom: 5px;
  font-size: var(--font-size-xl);
}
.about-container > p {
  width: 95%;
  margin: 0 auto;
  color: #111;
}
.about-container > p:after {
  content: "...";
}
.text-about {
  font-family: sans-serif;
  font-size: var(--font-size-xl);
  color: #eee;
  font-weight: 700;
  width: 90%;
}
.enlace-about {
  background-color: var(--thirt-color);
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
  padding: 5px 20px;
  border-radius: 30px;
  font-size: var(--font-size-md);
  color: #fff;
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .divisor-left {
    background-color: transparent;
    border: none;
  }
  .sombra {
    height: 100%;
  }
}
footer {
  background-color: #eee;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding-bottom: 30px;
  border-top: 1px solid #cccccc;
}
.img-footer {
  width: 130px;
  height: auto;
  aspect-ratio: 1;
}
.social-links-footer {
  gap: 12px !important;
}
.list-link-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.item-list-footer {
  color: #aaa !important;
}
.form-section {
  display: flex;
  flex-flow: row-reverse nowrap;
  min-height: 100vh;
}
form {
  width: 100%;
  background-color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  gap: 15px;
  padding: 20px 0 50px;
}
.contact-h2 {
  text-align: center;
  font-family: sans-serif;
  font-size: var(--font-size-xl);
}
.logo-form {
  width: 170px;
  height: 150px;
}
.form-content {
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
  gap: 5px;
}
label {
  width: 100%;
  text-align: left;
  color: var(--main-color);
  font-size: var(--font-size-sm);
  font-weight: 700;
}
.input-form {
  width: 100%;
  border: 1px solid #ddd;
  min-height: 40px;
  border-radius: 8px;
  padding-left: 10px;
  font-size: var(--font-size-sm);
  color: #666;
}
.input-form::placeholder {
  color: #aaa;
}
textarea.input-form {
  padding-top: 10px;
  height: 100px;
  resize: none;
}
.send-button {
  border-radius: 30px;
  background-color: var(--main-color);
  width: 80%;
  height: 35px;
  color: #fff;
  font-weight: 700;
  font-size: var(--font-size-base);
}
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 1024px) {
  form {
    width: 100vw;
  }
  .video {
    display: none;
    object-fit: cover;
    object-position: center;
  }
}
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #eee;
  width: 100vw;
  height: 50px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  border-bottom: 1px solid #aaa;
  z-index: 1;
}
.aside-links-container .aside-link-item a {
  position: relative;
  display: inline-block;
  color: inherit;
  font-weight: 700;
  transition: color 0.2s;
  padding: 4px 0;
}
.aside-links-container .aside-link-item a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: var(--second-color);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.aside-links-container .aside-link-item a:hover:after {
  width: 100%;
}
.social-links {
  display: flex;
  flex-flow: row nowrap;
  gap: 8px;
}
.social-links a[aria-label="Facebook"] .icon,
.social-links a[aria-label="Instagram"] .icon,
.social-links a[aria-label="Tiktok"] .icon,
.social-links a[aria-label="WhatsApp"] .icon {
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-links a[aria-label="Facebook"]:hover .icon {
  color: #1877f3;
  transform: scale(1.35);
}
.social-links a[aria-label="Instagram"]:hover .icon {
  color: #e4405f;
  transform: scale(1.35);
}
.social-links a[aria-label="Tiktok"]:hover .icon {
  color: #000;
  transform: scale(1.35);
}
.social-links a[aria-label="WhatsApp"]:hover .icon {
  color: #3bdf0e;
  transform: scale(1.35);
}
.icon {
  color: #333;
  font-size: var(--font-size-md);
}
.social-links .icon {
  position: static;
}
.menu-icon {
  font-size: var(--font-size-lg);
}
@media (min-width: 1024px) {
  .menu-icon {
    display: none;
  }
  .header-nav {
    height: 70px;
    padding: 0 40px;
  }
  .social-links {
    gap: 16px;
  }
}
.aside-mobil-container {
  width: 100vw;
  height: calc(100vh - 50px);
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #eee;
  transform: translate(-100vw);
  transition: transform 0.2s ease-in;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-around;
  align-items: center;
}
.aside-mobil-container.open {
  transform: translate(0);
}
.aside-links-container {
  display: flex;
  flex-flow: column nowrap;
  text-align: center;
  gap: 40px;
}
.aside-link-item {
  width: 60vw;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-bottom: 1px solid #cccccc;
}
.texto-header-aside {
  color: #666;
  font-size: var(--font-size-sm);
}
.close-aside {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: var(--font-size-xl);
}
.envidia {
  display: none;
}
@media screen and (min-width: 1024px) {
  .aside-links-container {
    flex-flow: row nowrap;
  }
  .aside-link-item {
    width: auto;
    height: auto;
    border: none;
  }
  .envidia {
    display: flex;
  }
}
.chatbot-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #0003;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 0;
  transition: opacity 0.3s;
}
.robot-ia {
  width: 90%;
  height: 70vh;
  max-height: 700px;
  position: fixed;
  bottom: 100px;
  margin: 0 auto;
  border-radius: 9px;
  z-index: 1;
}
.landing-container {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  gap: 0;
  padding-top: 0 !important;
  margin-top: 0 !important;
  box-sizing: border-box;
}
.back-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.videoback {
  width: inherit;
  height: inherit;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}
.opaco {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000c;
  z-index: 0;
}
.logopng {
  width: 300px;
  max-height: 260px;
  border-radius: 100%;
  box-shadow: 0 0 100vw #fff8;
  image-rendering: auto;
  width: 100%;
  height: auto;
}
.text-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
.title-containter {
  display: flex;
  flex-flow: column nowrap;
  flex-direction: column;
  align-items: center;
  justify-content: end;
  gap: 0px;
}
.title {
  text-align: center;
  color: #eee;
  font-size: 3rem;
  margin-bottom: 0.2em;
  line-height: 1;
}
.title > spam {
  color: var(--thirt-color);
  transition: color 0.3s, text-shadow 0.3s, transform 0.2s;
  cursor: pointer;
  transform: none;
  text-shadow: none;
}
.title > spam:hover {
  color: #fff;
  text-shadow: 0 0 12px var(--thirt-color), 0 0 32px #fff8;
  transform: scale(1.18) rotate(-4deg);
}
#internacional {
  text-align: center;
  color: #eee;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: -0.3em;
}
.desc {
  color: #ccc;
  text-align: center;
  max-width: 340px;
  font-size: var(--font-size-base);
}
.btn-action {
  width: 220px;
  background-color: var(--thirt-color);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 10px 0;
  font-weight: 700;
  font-size: var(--font-size-md);
  cursor: pointer;
  margin-top: 2.5rem;
  transition: all 0.2s;
}
.btn-services {
  background-color: var(--thirt-color);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 7px 10px;
  font-weight: 700;
  font-size: var(--font-size-md);
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.2s;
}
.btn-action:hover {
  transform: scale(1.05);
  box-shadow: 0 0 24px #1c1c1b66, 0 4px 24px #0003;
}
.downrow {
  z-index: -1;
  position: absolute;
  color: #fff;
  bottom: 30px;
  transition: bottom 0.3s ease;
}
.downrow:hover {
  bottom: 20px;
}
.btn-ia-chat {
  width: 50px;
  height: 50px;
  background-color: #187;
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.ia-chat-inside {
  color: #eee;
  font-size: var(--font-size-lg);
}
@media screen and (min-width: 1024px) {
  .desc {
    max-width: 500px;
  }
  .btn-action {
    width: auto;
    padding: 10px 20px;
  }
  .landing-container {
    padding-top: 80px;
  }
}
.carousel-nav-btn-icon {
  display: none;
}
.carousel-nav-btn-text {
  display: inline;
}
@media (max-width: 800px) {
  .carousel-nav-btn-icon {
    display: inline;
    font-size: 1.5em;
    vertical-align: middle;
  }
  .carousel-nav-btn-text {
    display: none;
  }
}
.carousel-nav-btn svg {
  vertical-align: middle;
  font-size: 1.1em;
  margin-right: 2px;
}
.carousel-container {
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  margin-bottom: 0;
}
.carousel-track {
  display: flex;
  width: 100vw;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.carousel-slide {
  min-width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-service-content {
  background: #00000073;
  border-radius: 18px;
  padding: 32px 24px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
  box-shadow: 0 2px 24px #0005;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.carousel-service-title {
  font-size: 2.8rem;
  margin-bottom: 12px;
  color: #fff;
}
.carousel-service-desc {
  font-size: 1.2rem;
  color: #eee;
  max-width: 540px;
}
.carousel-btn {
  width: 220px;
  background-color: var(--thirt-color);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 10px 0;
  font-weight: 700;
  font-size: var(--font-size-md);
  cursor: pointer;
  margin-top: 2.5rem;
  transition: all 0.2s;
}
.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.12);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  margin: 0 auto;
  z-index: 3;
  transition: opacity 0.3s;
}
.carousel-dots.hide-on-scroll {
  opacity: 0;
  pointer-events: none;
}
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 18px;
  z-index: 3;
  background: #ffffffd9;
  border-radius: 999px;
  padding: 10px 24px;
  box-shadow: 0 2px 12px #0002;
  transition: opacity 0.3s;
}
.carousel-nav.hide-on-scroll {
  opacity: 0;
  pointer-events: none;
}
.carousel-nav-btn {
  background: none;
  border: none;
  color: #222;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 16px;
  cursor: pointer;
  transition: color 0.2s, border-bottom 0.2s;
  outline: none;
}
.carousel-nav-btn.active {
  color: var(--thirt-color, #c41e3a);
  border-bottom: 2px solid var(--thirt-color, #c41e3a);
}
.carousel-nav-sep {
  color: #bbb;
  font-size: 1.2rem;
  margin: 0 2px;
  -webkit-user-select: none;
  user-select: none;
}
@media (max-width: 800px) {
  .carousel-nav {
    font-size: 1.1rem;
    padding: 8px 10px;
    border-radius: 999px;
    bottom: 8px;
    min-width: 220px;
  }
  .carousel-nav-btn {
    padding: 0 10px;
    min-width: 48px;
    min-height: 40px;
    font-size: 1.4rem;
  }
  .carousel-nav-btn-icon {
    font-size: 1.4em !important;
  }
}
.map-container {
  width: 100vw;
  background-color: #eee;
  font-family: sans-serif;
  text-align: center;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
}
.map-title {
  font-size: 2rem;
}
.map-map {
  width: 80%;
  border: 2px solid var(--thirt-color);
  border-radius: 4px;
}
.map-direc {
  font-size: 14px;
  color: #555;
  width: 85%;
}
@media screen and (min-width: 1024px) {
  .map-map {
    width: 60%;
    height: 500px;
  }
}
.project-main-container {
  background-color: #eee;
  padding-top: 30px;
  display: flex;
  flex-flow: column nowrap;
  gap: 30px;
}
.project-main-container > h2 {
  text-align: center;
  font-size: var(--font-size-xl);
}
.project-article {
  width: 90%;
  margin: 0 auto;
}
.descripcion-project {
  font-family: sans-serif;
  font-size: var(--font-size-sm);
  margin-top: 5px;
}
.botones-container {
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  margin: 10px 0;
}
.boton-accion-project {
  border: 1px solid var(--thirt-color);
  background-color: var(--thirt-color);
  padding: 0 10px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  border-radius: 4px;
  color: #eee;
}
.img-project {
  border-radius: 4px;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
.project-div {
  width: 80%;
  height: 1px;
}
@media screen and (min-width: 1024px) {
  .project-article {
    display: flex;
    flex-flow: row nowrap;
    gap: 40px;
  }
  .project-article > section {
    width: 70%;
  }
  .img-project {
    height: 400px;
  }
}
.aboutus-title {
  margin-top: 0;
}
.logopng {
  max-width: 170px;
  max-height: 170px;
  border-radius: 100%;
  box-shadow: 0 8px 32px #0000002e;
  margin: 0 auto 20px;
  display: block;
  border: 6px solid #fff;
  background: linear-gradient(135deg, #8b0000 60%, #dc143c);
  padding: 12px;
  box-shadow: 0 4px 24px #0000001a;
}
.about-us {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.header {
  background: #8b0000f2;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 2px 20px #0000001a;
}
.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.company-name h1 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.company-name p {
  color: #f0f0f0;
  font-size: 12px;
  margin: 0;
  letter-spacing: 2px;
}
.highlight {
  color: #ff6b35;
}
.main-content {
  margin-top: 0;
}
.main-content img,
.mission-image img,
.vision-image img,
.partner-logo img {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.main-content img:hover,
.mission-image img:hover,
.vision-image img:hover,
.partner-logo img:hover {
  transform: perspective(600px) rotateY(-12deg) scale(1.04);
}
.what-is-section {
  position: relative;
  padding: 100px 0;
  background: url(https://maderextk.com/main/images/background/about_header_1920_746.png)
    center/cover no-repeat;
}
.what-is-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #00000090;
  z-index: 0;
}
.what-is-section > .container {
  position: relative;
  z-index: 0;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.section-header h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #dc143c);
  margin: 20px auto;
  border-radius: 2px;
}
.content-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.content-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
.highlights {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
}
.highlight-item {
  text-align: center;
}
.highlight-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.highlight-text {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}
.mission-section {
  padding: 100px 0;
  background: #fff;
}
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-text h2 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 30px;
  position: relative;
}
.mission-text h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #dc143c);
  margin-top: 15px;
  border-radius: 2px;
}
.mission-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}
.mission-image img,
.vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 24px;
  border: 4px solid #dc143c;
  box-shadow: 0 16px 56px #8b000038, 0 2px 24px #0000001a;
  transition: transform 0.8s ease-in-out, box-shadow 0.8s ease,
    border-color 0.8s ease;
  background: linear-gradient(135deg, #fff6, #dc143c22);
  will-change: transform;
  backface-visibility: hidden;
}
.vision-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}
.vision-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.vision-text h2 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 30px;
  position: relative;
}
.vision-text h2:after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #dc143c);
  margin-top: 15px;
  border-radius: 2px;
}
.vision-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
}
.vision-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 12px 40px #0000002e;
}
.partners-section {
  padding: 100px 0;
  background: #fff;
  text-align: center;
}
.partners-section h2 {
  font-size: 2.5rem;
  color: #8b0000;
  margin-bottom: 60px;
  position: relative;
}
.partners-section h2:after {
  content: "";
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #dc143c);
  margin: 20px auto;
  border-radius: 2px;
}
.partners-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  align-items: center;
  overflow-x: scroll;
  padding-left: 500px;
}
.partner-logo {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px #0000001a;
  transition: all 0.4s ease-in-out;
}
.partner-logo:hover {
  transform: translateY(-10px);
}
.partner-logo img {
  height: 80px;
  width: auto;
  min-width: 200px;
  object-fit: contain;
  box-shadow: 0 8px 24px #1a1a1a26;
}
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #8b0000, #dc143c);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px #0003;
  transition: all 0.3s ease;
  z-index: 1000;
}
.scroll-top-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px #0000004d;
}
@media (max-width: 900px) {
  .mission-content,
  .vision-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .mission-image img,
  .vision-image img {
    height: 220spx;
    border-radius: 16px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section-header h2,
  .mission-text h2,
  .vision-text h2,
  .partners-section h2 {
    font-size: 1.5rem;
  }
  .content-text p,
  .mission-text p,
  .vision-text p {
    font-size: 1rem;
  }
  .mission-image img,
  .vision-image img {
    height: 200px;
    border-radius: 10px;
  }
  .highlights {
    flex-direction: column;
    gap: 24px;
  }
  .partners-grid {
    flex-direction: column;
    gap: 32px;
    padding: 0;
  }
  .mission-section,
  .vision-section {
    padding: 40px 0;
  }
  .mission-section {
    margin-bottom: 0;
  }
  .vision-section {
    margin-top: -20px;
  }
}
.maderextk-page {
  line-height: 1.6;
  color: #333;
}
.hero-section-exports {
  background: url(https://res.cloudinary.com/dxr7cjjpa/image/upload/v1756745405/Imagen_de_WhatsApp_2025-09-01_a_las_11.47.54_ba4a4d4c_rdznyb.jpg)
    center / cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
  padding: 100px 0;
}
.hero-section-exports:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000073;
  z-index: 0;
}
.hero-section-exports > .hero-overlay {
  position: relative;
  z-index: 0;
}
.hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.logo-text {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: #fff;
}
.hero-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-description {
  font-size: var(--font-size-base);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}
@media (max-width: 900px) {
  .section-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .image-content {
    padding: 0;
  }
  .image-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .grid-image {
    height: 160px;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 8px;
  }
  .section-content {
    gap: 18px;
  }
  .grid-image {
    height: 120px;
  }
  .hero-section {
    padding: 60px 0;
    min-height: 50vh;
  }
  .hero-title {
    font-size: var(--font-size-xl);
  }
  .hero-description {
    font-size: var(--font-size-sm);
  }
}
.section-content.reverse {
  direction: rtl;
}
.section-content.reverse > * {
  direction: ltr;
}
.section-title {
  font-size: var(--font-size-xl);
  color: #c41e3a;
  margin-bottom: 15px;
  font-weight: 700;
}
.section-text {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.message-title {
  font-size: var(--font-size-xl);
  margin-bottom: 20px;
  font-weight: 700;
  color: #fff;
}
.message-list li {
  font-size: var(--font-size-base);
  line-height: 1.8;
  padding: 15px 0;
  position: relative;
}
.message-list li:before {
  content: "✓";
  color: #c41e3a;
  font-weight: 700;
  margin-right: 10px;
}
:root {
  --main-color: #dd6600;
  --second-color: #880000;
  --thirt-color: #880000;
  --btn-text: #555555;
  --radio: 8px;
  --bp-tablet: 768px;
  --bp-desktop: 1024px;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
}
@media screen and (min-width: 768px) {
  :root {
    --font-size-base: 1.125rem;
    --font-size-lg: 1.375rem;
    --font-size-xl: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --font-size-base: 1.25rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2.5rem;
  }
}
.hero-section {
  background: url(https://res.cloudinary.com/dxr7cjjpa/image/upload/v1760448249/Imagen_de_WhatsApp_2025-10-14_a_las_08.23.47_bf59255e_io7m4t.jpg)
    center / cover;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a1;
  z-index: 0;
}
.hero-section > .hero-overlay {
  position: relative;
  z-index: 0;
}
.logo-container {
  margin-bottom: 30px;
}
.logo-circle {
  width: 80px;
  height: 80px;
  background: #c41e3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 4px solid white;
}
.logo-text {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
}
.hero-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 15px;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
  z-index: 10;
}
.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: #f8f9fa;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 10;
}
.hero-underline {
  width: 60px;
  height: 3px;
  background: #c41e3a;
  margin: 0 auto 30px;
}
.hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}
.banner-section {
  padding: 60px 0;
  background: #fff;
}
.banner-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.banner-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px #00000026;
  transition: transform 0.3s ease;
}
.banner-image-container:hover {
  transform: translateY(-5px);
}
.banner-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.banner-image-container:hover .banner-image {
  transform: scale(1.05);
}
.content-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.alt-section {
  background: #fff;
}
.section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.text-content {
  padding: 20px 0;
}
.section-title {
  font-size: 2rem;
  color: #c41e3a;
  margin-bottom: 15px;
  font-weight: 400;
}
.title-underline {
  width: 50px;
  height: 3px;
  background: #c41e3a;
  margin-bottom: 25px;
}
.title-underline.center {
  margin: 0 auto 25px;
}
.section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.image-content {
  padding: 20px;
}
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px #0000001a;
}
.grid-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.grid-image:hover {
  transform: scale(1.05);
}
.process-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.process-title {
  font-size: 2.5rem;
  color: #c41e3a;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 20px;
}
.process-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  display: block;
}
.step-title {
  font-size: 1.2rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}
.services-section {
  padding: 80px 0;
  background: #fff;
}
.services-title {
  font-size: 2.5rem;
  color: #c41e3a;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 600;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.service-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px #0000001a;
}
.service-card-title {
  font-size: 1.5rem;
  color: #ff8c00;
  margin-bottom: 20px;
  font-weight: 600;
}
.service-card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.final-message-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 80px 0;
  color: #fff;
}
.final-content {
  text-align: center;
}
.message-card {
  background: #ffffff1a;
  padding: 50px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.message-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
}
.message-list {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
}
.message-list li {
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 15px 0;
  position: relative;
}
.message-list li:before {
  content: "✓";
  color: #c41e3a;
  font-weight: 700;
  font-size: 1.2rem;
  margin-right: 10px;
}
.wood-texture-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #c41e3a, #8b1538, #c41e3a);
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1.4rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .section-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .image-grid {
    grid-template-columns: 1fr;
  }
  .content-section {
    padding: 60px 0;
  }
  .message-card {
    padding: 30px 20px;
  }
  .section-title {
    font-size: 1.6rem;
  }
  .banner-images {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .banner-section {
    padding: 40px 0;
  }
  .banner-image {
    height: 250px;
  }
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process-title,
  .services-title {
    font-size: 2rem;
  }
  .process-icon {
    font-size: 3rem;
  }
  .step-title {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 15px;
  }
  .content-section {
    padding: 40px 0;
  }
  .final-message-section {
    padding: 60px 0;
  }
  .process-steps {
    grid-template-columns: 1fr;
  }
  .process-section,
  .services-section {
    padding: 60px 0;
  }
  .service-card {
    padding: 30px 20px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.maderextk-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}
.buenvivir-hero-section {
  background: url(https://maderextk.com/img/DSC01023.JPG)
    center / cover;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}
.buenvivir-hero-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000a1;
  z-index: 0;
}
.buenvivir-hero-section > .hero-overlay {
  position: relative;
  z-index: 0;
}
.hero-overlay {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}
.hero-content {
  max-width: 900px;
  margin: 0 auto;
}
.buenvivir-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 10;
}
.buenvivir-hero-subtitle {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 20px;
  color: #ff8c00;
  letter-spacing: 1px;
  position: relative;
  z-index: 10;
}
.hero-underline {
  width: 80px;
  height: 4px;
  background: #c41e3a;
  margin: 0 auto 30px;
  border-radius: 2px;
}
.buenvivir-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
  opacity: 0.95;
}
.quality-section {
  padding: 100px 0;
  background: #fff;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.quality-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.quality-text {
  padding-right: 20px;
}
.section-title {
  font-size: 2.2rem;
  color: #c41e3a;
  margin-bottom: 15px;
  font-weight: 600;
}
.title-underline {
  width: 60px;
  height: 3px;
  background: #c41e3a;
  margin-bottom: 30px;
}
.quality-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
  text-align: justify;
}
.vertical-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px #0000001a;
  transition: transform 0.3s ease;
}
.vertical-image:hover {
  transform: scale(1.02);
}
.features-section {
  padding: 100px 0;
  background: #f8f9fa;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px #00000014;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #c41e3a, #ff8c00);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card:hover:before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px #00000026;
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.feature-title {
  font-size: 1.3rem;
  color: #c41e3a;
  margin-bottom: 15px;
  font-weight: 600;
}
.feature-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}
.customization-section {
  padding: 100px 0;
  background: #fff;
}
.customization-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.image-stack {
  position: relative;
  height: 350px;
}
.stack-image {
  border-radius: 15px;
  box-shadow: 0 10px 30px #0000001a;
  transition: transform 0.3s ease;
}
.stack-image.main {
  width: 100%;
  height: 250px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.stack-image.overlay {
  width: 80%;
  height: 200px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 4px solid white;
}
.customization-content:hover .stack-image.main {
  transform: translate(-10px, -5px);
}
.customization-content:hover .stack-image.overlay {
  transform: translate(10px, 5px);
}
.customization-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
  text-align: justify;
}
.customization-highlights {
  margin-top: 30px;
}
.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #555;
}
.highlight-icon {
  color: #c41e3a;
  font-weight: 700;
  margin-right: 12px;
  font-size: 1.1rem;
}
.efficiency-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
}
.efficiency-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.efficiency-text-block .section-title {
  color: #fff;
}
.efficiency-text-block .title-underline {
  background: #ff8c00;
}
.efficiency-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ecf0f1;
  text-align: justify;
}
.efficiency-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.stat-item {
  text-align: center;
  padding: 25px;
  background: #ffffff1a;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: scale(1.05);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 1rem;
  color: #ecf0f1;
  font-weight: 500;
}
.gratitude-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.gratitude-card {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 20px 50px #0000001a;
  position: relative;
  overflow: hidden;
}
.gratitude-content {
  position: relative;
  z-index: 2;
}
.gratitude-title {
  font-size: 2rem;
  color: #c41e3a;
  margin-bottom: 20px;
  font-weight: 600;
}
.gratitude-underline {
  width: 60px;
  height: 3px;
  background: #ff8c00;
  margin: 0 auto 30px;
}
.gratitude-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}
.gratitude-decoration {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: linear-gradient(45deg, #c41e3a, #ff8c00);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}
@media (max-width: 768px) {
  .buenvivir-hero-title {
    font-size: 2.5rem;
  }
  .buenvivir-hero-subtitle {
    font-size: 1.5rem;
  }
  .quality-content,
  .customization-content,
  .efficiency-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .efficiency-stats {
    flex-direction: row;
    justify-content: space-around;
  }
  .gratitude-card {
    padding: 40px 30px;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .buenvivir-hero-title {
    font-size: 2rem;
  }
  .buenvivir-hero-subtitle {
    font-size: 1.3rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .efficiency-stats {
    flex-direction: column;
    gap: 20px;
  }
  .container {
    padding: 0 15px;
  }
  .quality-section,
  .features-section,
  .customization-section,
  .efficiency-section {
    padding: 60px 0;
  }
}
:root {
  --font-size-sm: 0.875rem;
  --font-size-base: 1.1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-xxl: 2rem;
}
@media (min-width: 768px) {
  :root {
    --font-size-sm: 0.9375rem;
    --font-size-base: 1.0625rem;
    --font-size-md: 1.25rem;
    --font-size-lg: 1.5rem;
    --font-size-xl: 2rem;
    --font-size-xxl: 2.5rem;
  }
}
@media (min-width: 1024px) {
  :root {
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-md: 1.375rem;
    --font-size-lg: 1.75rem;
    --font-size-xl: 2.25rem;
    --font-size-xxl: 3rem;
  }
}
