﻿@import url("https://mondrian.claro.com.br/tokens/claro-tokens-latest.custom-properties.css");

:root {
  --color-primary: #da291c;
  --font-size-mobile: 18px;
  --font-size-h2-mobile: 28px;
  --font-size-details-list: 28px;
}

body {
  font-family: "AMX";
}

.color-red {
  color: #da291c !important;
}

.header--simple {
  background-color: #da291c !important;
  padding: 20px 0;
}

.header__content {
  text-align: center;
}

.header__title {
  font-family: "AMX";
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  text-align: center;
  color: #ffffff;
}

.section--details,
.section--technical {
  padding: 3% 0;
}

.section__title {
  color: var(--color-primary);
  margin-bottom: 6%;
  font-family: "AMX";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
}

.section__description-title {
    margin-top: 3%;
  font-family: "AMX";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  text-align: center;
}

.section__description-text {
  font-family: "AMX";
  font-style: normal;
  font-weight: 500;
  font-size: 28px;
  line-height: 40px;
  text-align: center;
  color: #000000;
  padding-top: 3%;
}

.details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.details__image {
  flex: 1;
  padding: 1rem;
}

.details__content {
  flex: 1;
  padding: 1rem;
}

.details__list {
  padding-left: 0;
  font-size: var(--font-size-details-list);
}

.details__list li {
  font-size: var(--font-size-details-list);
  line-height: 1.5;
}

.technical {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.technical__content {
  flex: 1;
  padding: 1rem;
}

.technical__image {
  flex: 1;
  padding: 1rem;
}

.technical__list {
  list-style-type: disc;
  padding-left: 0;
}

.technical__list li {
  font-size: var(--font-size-details-list);
  line-height: 1.5;
}

@media (max-width: 575px) {
  .section__description-text {
    font-family: "AMX";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;

    color: #000000;
  }

  .header__title {
    font-family: "AMX";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
  }

  .section__title {
    font-family: "AMX";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #da291c;
  }

  .details__list li,
  .technical__list li {
    font-family: "AMX";
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;

    color: #000000;
  }

  .details,
  .technical {
    flex-direction: column;
    align-items: center;
  }

  .details__image,
  .technical__image,
  .details__content,
  .technical__content {
    flex: none;
    width: 100%;
  }
}

