@charset "UTF-8";

:root {

  --primary: #EF6420;
  --primary-focused: #b83f03;
  --secondary: #47A188;
  --secondaryDark: #178365;

  --success: #38c172;
  --info: #6cb2eb;
  --warning: #ffed4a;
  --danger: #e3342f;
  --light: #FBFBFB;
  --light-ice: #EAF4F8;
  --white: #FFF;
  --dark: #615F5F;
  --black: #000000;

  --font-family-sans-serif: "Poppins", sans-serif;

  font-size: 16px;
}
.card-plans-carousel {
  width: 270px;
}
.map-cobertura-section > .i4ewOd-haAclf {
  display: none !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-sans-serif);
}
html {
  scroll-behavior: smooth;
}

/* *,
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
} */

.container {
  max-width: 70.875rem;
  padding: 0;
  /* background-color: var(--light-ice); */
}
.title {
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  font-size: 32px;
  margin: 0 auto;
}
body {
  background-color: var(--light-ice);
  overflow-x: hidden;
}
body::-webkit-scrollbar {
  width: 10px;
  background-color: none;
} 
body::-webkit-scrollbar-thumb {   
  background-color: var(--primary);   
}
.main {
  margin-top: 80px;
}
a {
  text-decoration: none;
}
p {
  margin: 0;
}
.button-primary-orange button {
  background-color: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.02em;
  display: inline-block;
  margin: 14px 0;
  box-sizing: border-box;
  border: none;
  transition: background 0.1s;
  box-sizing: content-box;
}
.button-primary-orange > a {
  color: var(--white);
  text-decoration: none;
}
.button-primary-orange button:hover {
  color: var(--white);
  background-color: var(--primary-focused);
}
.button-secondary-white {
  background-color: var(--white);
  color: var(--primary);
  text-align: center;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
  display: block;
  box-sizing: border-box;
  border: 1px solid var(--primary);
  transition: 0.1s;
}
.button-secondary-white > a {
  color: var(--primary);
  text-decoration: none;
}
.button-secondary-white:hover {
  border: 1px solid var(--primary-focused);
}
.button-secondary-white:hover > a {
  color: var(--primary-focused);
}
.section {
  padding: 30px 0;
}

@media (max-width: 992px) {
  .container {
    padding: 15px;
  }
}

/* == NAVBAR ======================= */
.navbar {
  display: flex;
  align-items: center;
  height: 5rem;
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 1000;
}
.navbar-brand > img {
  margin-right: 2rem;
}
.navbar .navbar-nav {
  display: flex;
  width: 100%;
}
.navbar .navbar-nav .nav-item {
  text-align: center;
  margin-right: 20px;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  padding: 0 0.1875rem;
  transition: color 0.1s;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary) !important;
}
.dropdown-toggle::after {
  border: 0;
}
.dropdown-menu > .dropdown-item {
  background-color: inherit;
}
.dropdown-menu > .dropdown-item:not(:last-child) {
  margin-bottom: 1.75rem;
}
.dropdown-menu {
  visibility: hidden;
  display: none;
}
.nav-item:hover .dropdown-menu {
  visibility: visible;
  display: block;
}
.btn-navbar .btn-outline-primary {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--light);
  border: 0.125rem solid var(--primary);
  border-radius: 30px;
  padding: 0.75rem 2rem;
  width: 8.625rem;
  cursor: pointer;
  transition: 0.1s;
}
.btn-navbar .btn-outline-primary:hover {
  background-color: var(--primary);
  color: var(--white);
}
.btn-navbar .btn-outline-primary {
  color: var(--black);
  text-decoration: none;
}
.btn-navbar .btn-outline-primary:hover{
  color: var(--white);
}
.assine-ja-toggle {
  display: flex;
  flex-direction: column;
  background-color: #f8f9fa;
  width: 300px;
  padding: 30px 27px;
  color: var(--dark);
  height: 100vh;

  position: absolute;
  top: -1000px;

  visibility: hidden;
  opacity: 0;
  display: none;

  -webkit-box-shadow: -5px 0px 20px -12px rgba(0,0,0,0.75);
  -moz-box-shadow: -5px 0px 20px -12px rgba(0,0,0,0.75);
  box-shadow: -5px 0px 20px -12px rgba(0,0,0,0.75);
}
.assine-ja-toggle.active {
  visibility: visible;
  opacity: 1;
  display: unset;
  top: 0px;
    right: 0px;
  -webkit-animation: openModalNav 0.2s forwards;
}
@keyframes openModalNav{
  from {
    top: 0px;
    right: -1000px;
  } to {
    top: 0px;
    right: 10px;
  }
}
.assine-ja-toggle a {
  text-decoration: none;
}
.assine-ja-toggle p {
  margin-bottom: 0;
}
.assine-ja-toggle-title {
  font-weight: 700;
  font-size: 18px;
}
.assine-ja-toggle-telefone {
  color: var(--primary);
  font-weight: 700;
  font-size: 20px;
}
.btn-whatsapp {
  display: flex;
  justify-content: center;

  border: 1px solid #47A188;
  padding: 15px 66px;
  border-radius: 5px;
  margin-top: 13px;
}
.btn-whatsapp > img {
  margin-right: 10px;
  height: 22px;
}
.btn-whatsapp > p {
  color: #47A188;
  text-decoration: none;
}
.assine-ja-toggle-subtitle {
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  margin-top: 30px;
}
.assine-ja-toggle-form p {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-align: left;
  margin: 6px 0;
}
.assine-ja-toggle-form input {
  border-radius: 5px;
  width: 100%;
  margin-bottom: 12px;
  border: 1px solid #A1A1A1;
}
.assine-ja-toggle-form input:not(:last-child) {
  padding: 12px;
}
.assine-ja-toggle-close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 45px;
  height: 15px;
}
.assine-ja-toggle-horario {
  font-weight: 500;
  font-size: 12px;
}
.assine-ja-toggle-horario > span {
  font-weight: 700;
}

@media (max-width: 992px) {
  .navbar > .container {
    padding: 0 30px;
  }
  .navbar-collapse.show {
    background-color: #f8f9fa;
    height: 100vh;
    z-index: 1000;
    transition: none;
  }
  .navbar-collapse.show >.navbar-nav {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .navbar .navbar-nav .nav-item .nav-link,
  .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle {
    margin: 0;
    padding: 20px 0 !important;
    font-size: 24px;
  }
  .navbar .btn-outline-primary {
    margin-top: 30px;
    width: 70%;
    font-size: 24px;
    text-align: center;
  }
  .btn-navbar {
    display: flex;
    justify-content: center;
    text-decoration: none;
  }
}

/* == CAROUSEL ======================= */
.carousel {
  position: relative;
}
.carousel-texts {
  text-align: left;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.carousel-title {
  font-weight: 400;
  font-size: 2.625rem;
  width: 626px;
}
.carousel-description {
  font-size: 1.125rem;
  width: 506px;
}
.description-bold {
  font-weight: 700;
}
.carousel-prices {
  margin-top: 3rem;
  width: 21.25rem;
  display: flex;
  align-items: center;
}
.carousel-prices-internet {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1.68rem;
  position: relative;
}
.carousel-prices-internet::after {
  content: "";
  width: 0.125rem;
  height: 4rem;
  color: var(--white);
  background-color: var(--white);
  position: absolute;
  top: -8px;
  left: 115px;
}
.carousel-prices-internet small {
  font-weight: 400;
  font-size: 1.875rem;
  text-transform: uppercase;
}
/* .carousel-prices-divider {
  width: 0.125rem;
  height: 4rem;
  background-color: var(--white);
  margin: 0 1.8rem;
} */
.carousel-prices-price > .text {
  text-transform: uppercase;
  line-height: 2.3rem;
  margin-left: 50px;
  font-size: 13px;
  font-weight: 400;
}

.carousel-prices-price > .text > .price {
  font-weight: 700;
  font-size: 64px;
}
.carousel-prices-price > .price > small {
  font-weight: 400;
  font-size: 13px;
}
.carousel-texts > .carousel-button {
  width: 185px;
}

@media (max-width: 992px) {
  .carousel {
    display: none;
  }
  .search-input-label {
    text-align: center !important;
  }
}

/* == BUSCAR CIDADES ======================= */
.container.buscar-cidades-section {
  padding-bottom: 0;
}
.search-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.title.plans-title {
  padding-bottom: 45px;
  max-width: 410px;
}
.search-input-label {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  text-align: left;

  display: inline-block;
  max-width: 37.5rem;
  width: 37.5rem;

  color: var(--dark);
}
.city-search {
  width: 37.5rem;
  height: 70px;
  position: relative;
}
.search-input.city-search {
  border-style: none !important;
  padding: 28px 70px !important;
  width: 100%;
  border-radius: 15px;
}
.search-input.city-search:focus {
  outline: none;
}
.input-search-area {
  position: relative;
  margin-bottom: 45px;
  min-width: 350px;
  width: 600px;
}
.input-search-area > span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 999;
}
@media (max-width: 992px) {
  .beneficios-title {
    padding: 0 0 30px 0 !important;
  }
  .search-input-label {
    margin-bottom: 30px;
    width: 80%;
  }
  .input-search-area {
    width: 100%;
  }
}

/* == CARDS PLANOS ======================= */
.plans-section {
  padding: 0;
}
.plans-cards-section {
  width: 100vw;
}
.pricing-plan {
  background-color: var(--white);
  border-radius: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 600px;
  position: relative;
}
.plan-name {
  text-align: center;
  height: 68px;
}
.plan-name h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
}
.bg-maincolor {
  border-radius: 15px 15px 0 0;
  padding: 16px 0;
  width: 100%;
}
.bg-maincolor.plan-light {
  background-color: #A1A1A1;
}
.bg-maincolor.plan-fit {
  background-color: #47A188;
}
.bg-maincolor.plan-fit-plus {
  background-color: #178365;
}
.bg-maincolor.plan-premium {
  background-color: #EF6420;
}
/* .plan-desc > .plan-content {
  line-height: 10px;
} */
.plan-desc::after {
  content: "";
  width: 222px;
  height: 1px;
  background-color: var(--dark);
  display: block;
  margin: 0 auto;
}
.plan-desc > .plan-content > .plan-content-title {
  font-weight: 700;
  font-size: 40px;
  color: var(--primary);
  margin-top: 12px;
}
.plan-desc > .plan-content > .plan-content-description {
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
}
.plan-desc > .plan-content > .plan-content-small {
  font-weight: 400;
  font-size: 13px;
  color: var(--dark);
}
.plan-desc > .plan-content > .plan-content-text {
  font-weight: 400;
  font-size: 16px;
  color: var(--dark);
  margin-top: 22px;
}
.plan-content-title,
.plan-content-description {
  margin: 0;
}
ol, ul {
  padding-left: 0;
}
.plan-features > .list-bordered {
  list-style: none;
}
.plan-features > .list-bordered > li {
  color: var(--primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 32px;
}
.price-wrap {
  color: var(--primary);
}
.price-wrap span {
  display: block;
}
.plan-features {
  margin-top: 17px;
}
.price-wrap > .plan-price {
  font-weight: 700;
  font-size: 32px;
}
.price-wrap > .plan-decimals {
  flex: 1;
  align-self: center;
}
.plan-button {
  width: 163px;
  margin: 0 auto;
}
.offer-details-card {
  color: var(--primary);
  font-size: 14px;
  text-decoration: underline;
}
.offer-details-card:hover {
  color: var(--primary-focused);
}
.text-center.description {
  font-weight: 400;
  font-size: 13px;
  color: #615F5F;
  margin-top: 15px;
}
.plans-card-footer {
  position: absolute;
  bottom: 17px;
}

@media (max-width: 992px) {
  .pricing-plan {
    height: 650px;
  }
  .plans-cards-section {
    gap: 25px;
  }
  .plan-content {
    padding: 15px 0;
  }
  .plan-desc > .plan-content > .plan-content-title {
    margin-top: 25px;
  }
}

/* == BENEFÍCIOS ======================= */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  color: var(--white);
  text-align: center;
}
/* .section-title {
  padding: 80px 0 45px 0;
} */
.beneficio-grid.beneficios-grid-left {
  height: 560px;
}
.beneficios-grid-right > .beneficio-grid {
  height: 270px;
}
.title.beneficios-title {
  margin-bottom: 15px;
}
.beneficios-subtitle {
  max-width: 750px;
  text-align: center;
  margin: 0 auto;
  color: var(--primary);
  padding-bottom: 33px;
}
.beneficio-grid {
  display: flex;
  align-self: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 15px;
  padding: 19px;
  position: relative;
  box-shadow:inset 0 0 0 2000px rgba(0, 0, 0, 0.6);
}
.beneficio-grid-title {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 20px;
}
.beneficio-grid-subtitle {
  font-weight: 400;
  font-size: 14px;
}
.beneficio-grid-link {
  color: var(--white);
  font-weight: 400;
  font-size: 14px ;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-decoration: underline;
}
.beneficio-grid-link:hover {
  color: inherit;
}
.beneficios-grid-right {
  display: 	grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
.beneficios-grid-left {
  background: url(../images/beneficios01.png);
  background-size: cover;
}
.beneficio-grid.beneficios-grid-right-tl {
  background: url(../images/beneficios02.png);
  background-size: cover;
}
.beneficio-grid.beneficios-grid-right-tr {
  background: url(../images/beneficios03.png);
  background-size: cover;
}
.beneficio-grid.beneficios-grid-right-bl {
  background: url(../images/beneficios04.png);
  background-size: cover;
}
.beneficio-grid.beneficios-grid-right-br {
  background: url(../images/beneficios05.png);
  background-size: cover;
}

@media (max-width: 992px){
  .beneficios-grid {
    grid-template-columns: 1fr;
  }
  .beneficios-grid-right {
    grid-template-columns: 1fr;
  }
}

/* == COBERTURA ======================= */
.cobertura-title {
  max-width: 388px;
  padding-bottom: 30px;
}
.map-cobertura-section {
  position: relative;
}
.map-cobertura-section > img {
  max-width: 100%;
}
.map-marker {
  position: absolute;
}
.map-marker-1 {
  top: 1.875rem;
  right: 40rem;
}
.map-marker-2 {
  top: 6.875rem;
  right: 26.56rem;
}
.map-marker-3 {
  bottom: 8.125rem;
  right: 38.125rem;
}
.map-marker-4 {
  top: 9.375rem;
  left: 31.25rem;
}
.map-marker-5 {
  top: 11.25rem;
  left: 19.375rem;
}

@media (max-width: 992px) {
  .cobertura-section {
    display: none;
  }
}

/* == SOLUÇÕES ======================= */
.solucoes-section {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
  margin: 30px auto;
}
.solucoes-section-row {
  display: flex;
  justify-content: space-between;
}
.solucoes-section-row > img {
  width: 550px;
  height: 382px;
}
.solucoes-section-row > .solucoes-section-texts {
  width: 50%;
}
.solucoes-section-texts > .solucoes-section-title {
  font-weight: 700;
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 20px;
}
.solucoes-section-texts > .solucoes-section-description {
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .solucoes-section {
    gap: 50px;
    background-color: var(--white);
  }
  .solucoes-section-row  {
    /* margin-top: 40px; */
    flex-direction: column;
  }
  .solucoes-section > .solucoes-section-row > img {
    width: 100%;
    order: 1;
    display: none;
  }
  .solucoes-section-row > .solucoes-section-texts  {
    width: 100%;
    text-align: center;
    order: 2;

    margin-top: 20px;
  }
  .solucoes-section-texts > .button-primary-orange {
    margin: 0 auto;
  }
}

/* == ATENDIMENTO ======================= */
.atendimento-section.text {
  width: 264px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.atendimento-card-contact {
  margin-bottom: 10px;
}
.atendimento-section-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 19px;
}
.atendimento-section-card {
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 37px;
  border-radius: 15px;
  position: relative;
}
.atendimento-card-icon {
  margin-bottom: 25px;
}
.atendimento-card-title,
.atendimento-card-contact,
.atendimento-card-title-2 {
  font-weight: 700;
  font-size: 16px;
  color: var(--dark);
}
.atendimento-card-title {
  font-size: 20px;
}
.atendimento-card-divider {
  height: 1px; 
  width: 200px;
  background-color: #EAF4F8;
  margin: 15px 0;
}
.atendimento-card-subtitle {
  text-align: center;
}
.atendimento-section-card > .button-secondary-white {
  position: absolute;
  bottom: 37px;
}

@media (max-width: 992px) {
  .atendimento-section-grid {
    grid-template-columns: 1fr;
  }
  .atendimento-section-card {
    padding: 50px 37px;
  }
  .atendimento-section-card > .button-secondary-white {
    bottom: 5px;
  }
}

/* == FORMULÁRIO CONTATO ======================= */
.contato-section > .contato-title {
  margin-bottom: 40px;
}
.contato-section-container {
  height: 637px;
  margin-bottom: 0;
  display: flex;
}
.contato-section-container-left {
  background: url(../images/formulario-section-img.png) no-repeat;
  height: 637px;
  width: 50%;
  position: relative;
}
.contato-section-left-text {
  width: 394px;
  text-align: left;
  position: absolute;
  right: 76px;
  top: 45px;
}
.contato-section-left-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--primary);
}
.contato-section-container-right {
  background-color: var(--white);
  height: 100%;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#contato-nome {
  margin-top: 73px;
}
.label-nome {
  position: absolute;
  left: 136px;
  top: 60px;
}
.label-email {
  position: absolute;
  top: 136px;
  left: 136px;
}
.label-telefone {
  position: absolute;
  left: 136px;
  top: 215px;
}
.label-textarea {
  position: absolute;
  left: 136px;
  bottom: 235px;
}
.label-select {
  position: absolute;
  left: 136px;
  top: 293px;
  z-index: 999;
}
#contato-textarea {
  resize: none;
}
.contato-section-container-right > input,
.contato-section-container-right > textarea {
  width: 460px;
  padding: 15px 20px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  margin-top: 22px;
}
.contato-section-container-right > input:focus,
.contato-section-container-right > textarea:focus {
  outline: none;
}
.contato-section-container-right > label {
  font-weight: 700;
  color: #909090;
  background-color: var(--white);
  padding: 2px 7px;
}
::-webkit-input-placeholder {
  color: #A1A1A1;
}

:-moz-placeholder {
  color: #A1A1A1;
}

::-moz-placeholder {
  color: #A1A1A1;  
}

:-ms-input-placeholder {  
  color: #A1A1A1;  
}
.input-group {
  justify-content: center;
}
.input-group > .custom-select {
  width: 460px;
  padding: 15px 20px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  margin-top: 22px;
  color: #A1A1A1;
}
.input-group > .custom-select:focus {
  outline: none;
}

@media (max-width: 992px) {
  .contato-section > .contato-title {
    margin-bottom: 0;
  }
  .contato-section {
    background-color: var(--white);
    padding-top: 20px;
  }
  .contato-section-container-left {
    display: none;
  }
  .contato-section-container-right {
    width: 100%;
  }
  .contato-section-container-right > label {
    left: 50%;
    transform: translateX(-50%);
  }
  .contato-section-container-right > input,
  .contato-section-container-right > textarea {
    width: 350px;
  }
  .input-group > .custom-select {
    width: 350px;
  }
}

/* == FOOTER ======================= */
.footer {
  background-color: var(--primary);
  color: var(--white);
  padding: 60px;

  display: flex;
  align-items: center;
}
.footer .logo-footer {
  max-width: 180px;
}
.footer .locale-footer {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-top: 20px;
}
.footer .nav-footer {
  list-style: none;
}
.footer .nav-footer .nav-item-footer {
  padding: 5px 0;
}
.footer .nav-footer .nav-item-footer .nav-link-footer {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  padding: 5px;
}
.footer .col-social-footer a:not(:last-child) {
  margin-right: 20px;
}
.footer .copyright {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: var(--white);
  padding-top: 10px;
}

@media (max-width: 992px) {
  .row.align-items-start {
    flex-direction: column;
    text-align: center;
  }
  .footer .col-social-footer > a > img {
    height: 40px;
  }
}


/* == MODAL ASSINE JA ======================= */
.modal-assine-ja-close {
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 65px;
  height: 25px;
}
.modal .modal-title {
  font-weight: 500;
  font-size: 32px;
  color: var(--black);
  line-height: 33px;
}
.modal .modal-title hr {
  height: 2px;
  width: 212px;
  background-color: var(--primary);
  opacity: 1;
  margin: 18px auto 46px;
}
.modal-description {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 53px;
}
.modal-content-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.modal-column-left {
  width: 264px;
  margin-right: 40px;
}
.modal-column-right {
  width: 345px;
  margin-left: 40px;
}
.modal-column-left .modal-column-title {
  margin-bottom: 40px;
}
.modal-column-right .modal-column-title {
  margin-bottom: 45px;
}
.modal-column-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.modal-column-title > span {
  font-weight: 400;
}
.modal-column-form input {
  padding: 10px 17px;
  border: 1px solid var(--primary);
  border-radius: 10px;
  width: 100%;
}
.modal-column-form input:focus {
  outline: none;
}
.modal-column-form input::placeholder {
  color: var(--black);
  font-weight: 500;
  font-size: 16px;
}
#plano-modal::placeholder {
  color: var(--dark);
}
.modal-column-form button{
  width: calc(100% - 80px);
}
.input-field {
  position: relative;
  margin-bottom: 20px;
}
.input-field label {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);

  position: absolute;
  top: -11px;
  left: 15px;
  background-color: white;
  padding: 0 5px
}
.button-whatsapp-section > .btn-whatsapp {
  width: 250px;
  /* padding: 15px 66px; */
  margin: 0 auto;
  margin-top: 25px;
}
.button-whatsapp-section > .btn-whatsapp p {
  margin: 0;
}
.modal-column-right > .button-whatsapp-section > p {
  font-weight: 700;
  color: var(--dark);
  font-size: 18px;
}
.modal-column-right > .button-whatsapp-section > p > span {
  font-size: 20px;
  color: var(--primary);
}

@media (max-width: 992px) {
  .modal-assine-ja-close {
    right: 15px;
    top: 15px;
  }
}


/* == MODAL DETALHES DA OFERTA ======================= */
.modal-offer-details {
  margin: 0;
}
.modal-title-details {
  color: var(--primary);
  font-weight: 700;
  font-size: 32px;
}
.modal-title-details > p {
  margin-bottom: 0;
}
.modal-title-details > span {
  font-weight: 400;
  font-size: 20px;
}
.title-details {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}
.description-details {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
}
ol li {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
}
.details-text-container:not(:last-child) {
  margin-bottom: 22px;
}

/* == PAGE COBERTURA ======================================================= */
.hero-img-cobertura {
  background: url('../images/gallery/banner-01.jpg');
  border-radius: 0px 0px 242px 0px;
  height: 440px;
}
.hero-img-text {
  font-weight: 700;
  color: var(--white); 
  font-size: 48px;
  transform: translate(-50%, -100%) !important;
  width: 750px;
}

@media (max-width: 992px) {
  .hero-img-cobertura {
    background: none;
    height: unset;
  }
  .hero-img-text {
    color: var(--primary);
    width: 100%;
    text-align: center;
    font-size: 30px;
    position: initial;
  }
}

/* == MAP SECTION ======================= */
.map-cobertura.section {
  padding-bottom: 0;
}

@media (max-width: 992px) {
  .map-cobertura-section {
    visibility: hidden;
    display: none;
  }
}

/* == CIDADES COBERTURA ======================= */
.cidades-cobertura {
  display: flex;
}
.cidades-cobertura > img {
  width: 504px;
  height: 646px;
}
.cities-list-container {
  background-color: var(--white);
  padding: 53px 32px;
  width: 100%;
  /* height: 540px; */
}
.cities-list-container > .cities-list {
  padding: 20px 27px;
  background-color: #F5F5F5;
  text-align: center;
}
.cities-list-container > .cities-list ul {
  list-style: none;
}
.cities-list-container > .cities-list > .cities-list-title {
  font-weight: 700;
  font-size: 20px;
  color: var(--dark);
}
.cities-list-container > .cities-list li {
  margin-bottom: 8px;
  color: var(--dark);
}
.cities-list-container > .cities-list a {
  color: var(--dark);
  text-decoration: underline;
}

@media (max-width: 992px) {
  .cidades-cobertura > img {
    visibility: hidden;
    display: none;
  }
  .cities-list-container > .cities-list {
    background-color: inherit;
  }
}

/* == PAGE PLANOS ======================================================= */
.pagina-planos .hero-img-planos {
  background: linear-gradient(89.77deg, #EF6420 37.55%, rgba(239, 100, 32, 0.5) 49.82%, rgba(239, 100, 32, 0) 68.62%), url(../images/hero-img-plans.png) no-repeat right;
  height: 440px;
  position: relative;
}
.pagina-planos .hero-img-planos > h2 {
  width: 463px;
  font-weight: 700;
  font-size: 48px;
  color: var(--white);
  position: absolute;
  top: 100px;
  left: 160px;
}
.plans-cards-page-planos {
  padding: 52px 0 93px 0;
}
.pagina-planos .beneficios-section {
  margin: 0 auto;
}
.beneficios-section > .beneficios-section-texts {
  color: var(--primary);
  text-align: center;
  width: 750px;
}
.beneficios-section-texts > .beneficios-titulo-planos {
  font-weight: 700;
  font-size: 32px;
}
.beneficios-section-texts > .beneficios-subtitulo-planos {
  font-size: 20px;
  padding: 15px 0 30px 0;
}
.beneficios-section-hero {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 37.77%, rgba(0, 0, 0, 0.235) 82.21%), url(../images/paramount-planos-hero.png);
  height: 540px;
  width: 100vw;
  position: relative;
}
.beneficios-section-hero-texts {
  color: var(--white);
  width: 611px;
  position: absolute;
  top: 131px;
  left: 152px;
}
.beneficios-section-hero-texts > h4 {
  font-size: 48px;
  margin-bottom: 0px;
}
.beneficios-section-hero-texts > p {
  font-size: 20px;
  margin: 30px 0;
}
.beneficios-section-hero-texts > .button-primary-orange > button {
  width: inherit;
}
.pagina-planos .beneficios-grid-planos {
  padding: 65px 0;
}
.pagina-planos .beneficios-grid {
  display: flex;
}
.pagina-planos .beneficios-grid-planos .beneficios-grid-left {
  display: none;
}
.pagina-planos .beneficios-grid-planos .beneficios-grid-right {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.pagina-planos .beneficio-grid {
  width: 260px;
  height: 260px;
}

@media (max-width: 992px) {
  .pagina-planos .hero-img-planos {
    display: none;
  }
  .beneficios-section-hero {
    background-position: right;
  }
  .beneficios-section > .beneficios-section-texts {
    width: unset;
  }
  .beneficios-section-hero {
    text-align: center;
    padding: 15px;
  }
  .beneficios-section-hero-texts {
    position: unset;
    width: 100%;
  }
  .pagina-planos .beneficios-grid-planos .beneficios-grid-right {
    flex-direction: column;
  }
}

/* == PAGE BENEFÍCIOS ======================================================= */
.beneficios-hero-img {
  background: linear-gradient(90.06deg, #EF6420 0.06%, #EF6420 39.08%, rgba(239, 100, 32, 0) 77.63%), url(../images/hero-img-beneficios.png);
  height: 440px;
  position: relative;
}
.beneficios-hero-img-texts {
  color: var(--white);
  width: 400px;

  position: absolute;
  top: 110px;
  left: 150px;
}
.beneficios-hero-texts-title {
  font-weight: 700;
  font-size: 48px;
}
.beneficios-hero-texts-subtitle {
  font-size: 18px;
}
.streaming-oxente-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 36px;
  padding: 55px 0;
}
.streaming-oxente-cards {
  display: flex;
  justify-content: space-between;
}
.streaming-oxente-card {
  background-color: var(--white);
  padding: 45px 25px 40px;
  text-align: center;
  border-radius: 15px;
  width: 265px;
}
.streaming-oxente-card-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--dark);
  padding: 15px 0;
}
.streaming-oxente-card-subtitle {
  color: var(--dark);
  font-size: 16px;
}
.beneficios-rows-section {
  padding: 80px 0;
}
.beneficios-row-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 36px;
}
.beneficios-row-subtitle {
  color: var(--dark);
  font-size: 16px;
  padding: 22px 0 40px;
}
.beneficios-row-image > img {
  width: 558px;
  height: 450px;
  border-radius: 15px;
}
.link-beneficios-row {
  display: inline-block;
}
.beneficios-rows-section .beneficios-section:not(:first-child) {
  margin-top: 100px;
}
.link-beneficios-row {
  margin-top: 16px;
  color: var(--dark);
  text-decoration: underline;
  transition: color 0.2s;
}
.link-beneficios-row:hover {
  color: var(--primary);
}
.details-row-section img {
  margin-bottom: 20px;
}
.big-cards-section {
  padding: 78px 0;
}
.big-cards-card {
  color: var(--white);
  padding: 62px 100px;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  height: 268px;
  width: 558px;
}
.big-cards-card-left {
  background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) ), url(../images/card-fibra.png) no-repeat;
  background-size: cover;
}
.big-cards-card-right {
  background: linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) ), url(../images/card-turbo.png) no-repeat;
  background-size: cover;
}
.big-cards-card-right a {
  color: var(--white);
  text-decoration: underline;
}
.big-cards-card h4 {
  font-weight: 700;
  font-size: 36px;
}
.big-cards-card p {
  font-weight: 400;
  font-size: 14px;
  padding: 21px 0;
}

/* == PAGE CONTATO ======================================================= */
.hero-img-contato {
  height: 325px;
  background: linear-gradient(rgba(239, 100, 32, 0.8), rgba(239, 100, 32, 0.8)), url(../images/hero-img-contato.png);
  background-size: cover;
}
.hero-contato-mask {
  height: 100%;
}
.hero-img-contato-title {
  color: var(--white);
  font-weight: 700;
  font-size: 48px;
}
.map-form-section.row {
  --bs-gutter-x: 0;
}
.map-form-section > .map-contato-section > img {
  width: 100%;
  height: 100%;
}
.map-form-section > .form-contato-section > .contato-section-container-right {
  width: unset;
  height: 748.25px;
}
.contact-page > .contact-info-section {
  padding: 100px 0 130px;
}
