.video-section {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    margin-bottom: 50px;
    gap: 32px;
}

.video-section .text-container {
    display: flex;
    align-items: flex-end;
    gap: 41px;
}

.text-container .title p {
    color: var(--Brand-Colors-Turquoise-00, #00AEC7);

    /* Titles/Title H4/Regular */
    font-family: "Encode Sans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.72px;
    width: 380px;
}

.text-container .title p strong {
    color: var(--Complementary-Colors-Green-00, #69BE28);
    font-weight: 700;
}

.text-container .description p {
    color: #1B365D;

    /* Paragraphs/Normal/Body-Regular */
    font-family: Lato;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 125% */
}

.video-section video {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
}

.video-container {
  position: relative;
  width: 100%;
}


/* botón play grande */
.big-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  font-size: 60px;
  width: 100px;
  height: 100px;

  border-radius: 50%;
  border: none;

  background: rgba(0,0,0,0.4);
  color: white;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.3s;
}

.big-play:hover {
  background: rgba(0,0,0,0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

/* controles inferiores */
.controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.controls button {
  background: rgba(0,0,0,0.4);
  outline: none;
  border: none;
  color: white;
  font-size: 18px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

@media (max-width: 768px) {
    .video-section {
        display: flex;
        padding: 40px 15px 0 15px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 32px;
        margin-bottom: 30px;
        align-self: stretch;
    }

    .video-section .text-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        align-self: stretch;
    }

    .text-container .title {
        margin-bottom: 0 !important;
    }

    .text-container .title p {
        font-size: 20px;
        line-height: normal;
        letter-spacing: -0.4px;
    }

    .text-container .description p {
        font-size: 14px;
        font-style: normal;
        line-height: 18px;
    }

    .controls button {
        height: 30px;
        width: 30px;
        font-size: 14px;
        padding: 1px 6px;
    }

    .big-play {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
}