main .container {
  flex-direction: column;
  padding-top: clamp(80px, 15vw, 130px);
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: flex-start;
  align-items: flex-start;

  h2 {
    width: 100%;

    span {
      background: var(--primaryGradient);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      color: transparent;
      display: inline-block;
    }
  }

  p {
    font-size: clamp(1rem, 1.8vw, 1.8rem);
    line-height: 1.7;
  }

  .atributes {
    display: flex;
    width: 100%;
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);

    .card-atribute {
      background-color: var(--backgroundDestaque);
      padding: clamp(1rem, 2vw, 1.5rem);
      border-left: 3px solid var(--cianEletrico);

      .atribute-title {
        font-size: clamp(1.4rem, 3vw, 3rem);
        font-weight: 700;
        background: var(--primaryGradient);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
        display: inline-block;
        line-height: 1.2;
      }

      .atribute-text {
        font-size: clamp(0.8rem, 1.3vw, 1.4rem);
        line-height: 1.6;
        text-transform: uppercase;
        letter-spacing: clamp(0.4px, 0.8vw, 0.7px);
        margin-top: var(--spacing-sm);
      }
    }
  }

  .image-perfil {
    width: 100%;
    height: clamp(250px, 50vw, 600px);
    background-image: url(../../images/perfil_sobre.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }
}

.map-container .container {
  padding-top: clamp(2rem, 4vw, 3.75rem);
  padding-bottom: clamp(2rem, 4vw, 3.75rem);
  gap: clamp(1.5rem, 3vw, 2rem);
  flex-direction: column;

  .map-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);

    .map-info--title {
      font-size: clamp(1.2rem, 2.5vw, 2.4rem);
    }

    .map-info--text {
      text-align: right;
      font-size: clamp(0.95rem, 1.5vw, 1.4rem);
    }
  }

  .map-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 2vw, 2rem);

    .map-area {
      flex: 1;
      width: 100%;

      iframe {
        width: 100%;
        height: clamp(250px, 50vw, 500px);
      }
    }

    .side-area {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(1.25rem, 2vw, 1.5rem);
      width: 100%;
    }

    .times-work {
      width: 100%;
      background-color: var(--backgroundDestaque);
      padding: clamp(1.25rem, 2vw, 1.75rem);
      display: flex;
      flex-direction: column;
      gap: clamp(0.75rem, 1.5vw, 1rem);

      .times-title {
        display: flex;
        align-items: center;
        gap: var(--spacing-sm);
        font-family: var(--font-title);
        font-size: clamp(1.4rem, 2vw, 2.4rem);
        line-height: 1.5;
        font-weight: 700;

        img {
          width: clamp(16px, 3vw, 20px);
          height: auto;
        }
      }

      .times-content--box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: var(--spacing-sm);

        .times-day,
        .times-hour {
          font-size: clamp(0.9rem, 1.3vw, 1.6rem);
          line-height: 1.6;
          color: #cccccc;
        }
      }
    }

    .foto-busines {
      width: 100%;
      overflow: hidden;

      img {
        width: 100%;
        height: auto;
        display: block;
      }
    }
  }
}

#cta {
  padding: clamp(1.5rem, 4vw, 3.125rem) var(--spacing-md);
  background-color: var(--backgroundDestaque);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 1.6rem);
  margin-bottom: clamp(1.5rem, 5vw, 5rem);
  border-radius: 0.25rem;

  .cta-content {
    display: flex;
    flex-direction: column;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    width: 100%;
    text-align: center;

    .cta-content--title {
      font-size: clamp(1.4rem, 4vw, 2.8rem);
    }

    .cta-content--text {
      max-width: 100%;
      font-size: clamp(1rem, 2vw, 1.6rem);
      line-height: 1.6;
    }
  }
}

/* Tablet (768px+) */
@media (min-width: 48rem) {
  main .container {
    padding-top: clamp(100px, 12vw, 120px);
    gap: clamp(1.25rem, 2vw, 1.5rem);

    p {
      font-size: clamp(1.2rem, 1.6vw, 1.6rem);
      line-height: 1.7;
    }

    .atributes {
      flex-direction: row;
      width: 100%;
      gap: clamp(1.25rem, 2vw, 1.5rem);
      margin-top: clamp(1.25rem, 2vw, 1.5rem);

      .card-atribute {
        flex: 1;
        padding: clamp(1.25rem, 2vw, 1.5rem);

        .atribute-title {
          font-size: clamp(2rem, 3vw, 2.4rem);
        }

        .atribute-text {
          font-size: clamp(0.95rem, 1.1vw, 1.2rem);
          line-height: 1.6;
        }
      }
    }

    .image-perfil {
      height: clamp(300px, 40vw, 400px);
      margin-top: clamp(1.25rem, 2vw, 1.5rem);
    }
  }

  .map-container .container {
    padding: clamp(2.5rem, 1vw, 3.75rem) clamp(2.5rem, 1vw, 3.75rem);
    gap: clamp(1.5rem, 2vw, 2rem);
    flex-direction: column;

    .map-info {
      flex-direction: row;
      align-items: flex-start;
      gap: clamp(0.75rem, 1.5vw, 1rem);

      .map-info--title {
        font-size: clamp(1.6rem, 2vw, 2rem);
      }

      .map-info--text {
        font-size: clamp(1rem, 1.2vw, 1.2rem);
      }
    }

    .map-box {
      flex-direction: row;
      gap: clamp(1.5rem, 2vw, 2rem);

      .map-area {
        flex: 2;

        iframe {
          height: clamp(300px, 40vw, 400px);
        }
      }

      .side-area {
        flex: 1;
        gap: clamp(1.25rem, 1.8vw, 1.5rem);
      }

      .times-work {
        .times-title {
          font-size: clamp(1.6rem, 1.8vw, 1.8rem);
        }

        .times-content--box {
          .times-day,
          .times-hour {
            font-size: clamp(1rem, 1.1vw, 1.4rem);
          }
        }
      }
    }
  }

  #cta {
    padding: clamp(2rem, 3vw, 2.5rem) var(--spacing-lg);
    flex-direction: row;
    gap: var(--spacing-lg);
    margin-bottom: clamp(2rem, 4vw, 3rem);
    align-items: center;

    .cta-content {
      gap: 1.2rem;
      flex: 1;
      text-align: left;
    }
  }
}

/* Desktop (1024px+) */
@media (min-width: 64rem) {
  main .container {
    padding-top: 130px;
    gap: 1.5rem;

    p {
      font-size: 1.8rem;
      line-height: 2.9rem;
    }

    .atributes {
      flex-direction: row;
      gap: 1.5rem;
      margin-top: 1.5rem;
      width: 40%;

      .card-atribute {
        padding: 1.5rem;
        border-left: 4px solid var(--cianEletrico);

        .atribute-title {
          font-size: 3rem;
        }

        .atribute-text {
          font-size: 1.4rem;
          line-height: 2rem;
        }
      }
    }

    .image-perfil {
      height: 600px;
      margin-top: 1.5rem;
    }
  }

  .map-container .container {
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 2rem;

    .map-info {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;

      .map-info--title {
        font-size: clamp(1.6rem, 5vw, 4.8rem);
      }

      .map-info--text {
        width: 215px;
        text-align: right;
        font-size: 1.4rem;
      }
    }

    .map-box {
      width: 100%;
      display: flex;
      gap: 2rem;

      .map-area {
        flex: 2;

        iframe {
          width: 100%;
          height: 100%;
          min-height: 400px;
        }
      }

      .side-area {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 2rem;
      }

      .times-work {
        width: 100%;
        background-color: var(--backgroundDestaque);
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .times-title {
          display: flex;
          align-items: center;
          gap: 0.5rem;
          font-family: var(--font-title);
          font-size: 2.4rem;
          line-height: 3.2rem;
          font-weight: 700;

          img {
            width: 20px;
            height: auto;
          }
        }

        .times-content--box {
          display: flex;
          justify-content: space-between;

          .times-day,
          .times-hour {
            font-size: 1.6rem;
            line-height: 2.4rem;
            color: #cccccc;
          }
        }
      }

      .foto-busines img {
        width: 100%;
      }
    }
  }

  #cta {
    padding: 50px 64px;
    background-color: var(--backgroundDestaque);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;

    .cta-content {
      display: flex;
      flex-direction: column;
      gap: 1.6rem;

      .cta-content--text {
        max-width: 450px;
        font-size: clamp(1rem, 2vw, 1.6rem);
      }
    }
  }
}
