.banner-newsletter {
    position: relative;
    height: 220px;
    background: url('../newsletter/modulo-60-banner-newsletter.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 20%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-newsletter {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-newsletter.animate {
    opacity: 1;
}

@media (max-width: 1200px) {

    .banner-newsletter {
        height: 180px;
    }
}

@media (max-width: 768px) {

    .banner-newsletter {
        height: 80px;
    }

    .container-centered {
        padding: 0 10px;
    }
}


.content-grid p {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon {
    width: 20px;
    height: 20px;
}


.banner-newsletter-2 {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* vídeo como fundo */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    z-index: 0;
}


.banner-title,
.sidebar-overlay {
    z-index: 1;
}

.contact-info-section {
    padding-top: 0;
}

.banner-roma-imperial {
    position: relative;
    height: 350px;
    background: url('../newsletter/modulo-60-st004-03.webp') no-repeat center;
    background-size: cover;
    background-position: 50% 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.banner-roma-imperial {
    opacity: 0;
    transition: opacity 1.2s ease;
}

.banner-roma-imperial .animate {
    opacity: 1;
}

.banner-doors-polyrey,
.banner-doors-match,
.banner-doors-innovus,
.banner-roma-imperial h1 {
    color: white;
}

.banner-doors-polyrey p {
    color: white;
    font-size: 14px;
}

.banner-doors-match p {
    color: white;
    font-size: 14px;
}

.banner-doors-innovus p {
    color: white;
    font-size: 14px;
}

.banner-roma-imperial p {
    color: white;
    font-size: 14px;
}

@media (max-width: 1280px) {
    .section-green-grid .icon {
      display: none;
    }

    .content-grid p {
        display: block;
    }
  }


  .form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 20px;
    font-size: .9rem;
    display: none;
    text-align: center;
  }

  .form-message--success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }

  .form-message--error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }

  /* SPLIT SECTION: VIDEO + FORM */
  .split-section {
    display: flex;
    min-height: 100vh;
  }

  /* VÍDEO LADO ESQUERDO */
  .form-side {
    width: 50%;
    padding: 80px;
    background: #f5fbf9;
    overflow: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .video-side video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* CENTRAGEM DO FORM */
  .container-centered {
    max-width: 600px;
    margin: auto;
  }

  /* RESPONSIVO */
  @media (max-width: 1580px) {
    .split-section {
      flex-direction: column;
    }

    .video-side {
      width: 100%;
      height: 300px;
      position: relative;
    }

    .form-side {
      width: 100%;
      padding: 40px 20px;
    }
  }

  .floating-label-group .form-input {
    border: 1px solid var(--light-grey);
    border-radius: 30px;
    padding: 16px 25px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    color: var(--dark-grey);
    background: #f5fbf9;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 1.2;
    height: 56px;
    box-shadow: 0 2px 8px rgb(0 0 0 / 3%);
  }

  .floating-label-group label {
    position: absolute;
    left: 40px;
    top: -9px;
    color: var(--dark-grey);
    font-size: 12px;
    pointer-events: none;
    background: #f5fbf9;
    padding: 0 12px;
    transition: 0.2s ease all;
    z-index: 2;
    line-height: 1;
  }

  .floating-label-group .form-input:focus+label,
  .floating-label-group .form-input:not(:placeholder-shown)+label,
  .floating-label-group select.form-input:valid+label {
    top: -9px;
    left: 40px;
    font-size: 12px;
    color: var(--dark-grey);
    background: #f5fbf9;
  }