/* BODY */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
}

/* HEADER */
.header {
    height: 78px;
    display: flex;
    align-items: center;
    background-color: #7FD9E5;
}

.header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.header-left {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.header-logo {
    height: 48px;
    width: auto;
}

.header-logo-text {
    margin: 0;
    font-size: 22px;
    font-family: 'MaturaMT', cursive;
    line-height: 1;
}

.header-button {
    padding: 8px 18px;
    background-color: #1FA3B1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-end;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-button:hover {
    background-color: #178A96;
}

/* SECTION APP */
.section-app {
  padding: 40px 20px;
}

.section-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 60px;
}

.section-app-imagen {
  flex: 1;
  max-width: 800px;
}

.section-app-imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.section-app-text {
  flex: 1;
  max-width: 440px;
}

/* SECTION INTRO */
.section-intro {
    width: 100%;
    padding-bottom: 30px;
}

.section-intro-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: left;
}

.section-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
    text-align: justify;
    text-justify: inter-word;
}


/* SECTION WEB */
.section-web {
  padding: 40px 20px;
}

.section-web-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: auto;
  gap: 60px;
}

.section-web-imagen {
  flex: 1;
  max-width: 800px;
}

.section-web-imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.section-web-text {
  flex: 1;
  max-width: 440px;
}

/* LIST ICONS */
.list-icons {
  list-style: none;
  padding: 0;
}

.list-icons li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.list-icons li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-55%);
  color: #5FC3D1;
  font-weight: bold;
}

/* SECTION RESUMEN */
.section-resumen {
  padding: 60px 20px;
}

.section-resumen-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.section-resumen p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}


/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #7FD9E5;
  font-size: 14px;
}

.footer-contacto {
  display: flex;
  align-items: center; 
  gap: 12px;
}

.footer-icon {
  width: 35px;
  height: 35px;
  object-fit: contain;
  cursor: pointer;
}

.footer-icon:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.phone-icon {
  width: 33px;
  height: 33px;
}

@font-face {
    font-family: 'MaturaMT';
    src: url('fonts/MaturaMT.woff2') format('woff2'),
         url('fonts/MaturaMT.woff') format('woff');
}

@media (max-width: 768px) {
  section > div {
    flex-direction: column;
  }

  .header-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    align-self: center;
  }

  .section-web-content {
    flex-direction: column;
    gap: 24px;
  }

  .section-web-imagen,
  .section-web-text {
    max-width: 100%;
    flex: none;
  }
}