:root{
  --green-default: #39F5B1;
  --blue-default: #1D70B7;
}

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

::selection{
  background-color: var(--green-default);
  color: var(--blue-default);
}

.white-color{
  color: white;
}

.green-color{
  color: var(--green-default) !important;
}

.blue-color{
  color: var(--blue-default) !important;
}

.green-bg{
  background-color: var(--green-default);
}


.blue-bg{
  background-color: var(--blue-default) !important;
}

body{
  background-color: rgba(29, 112, 183, 0.15) !important;
}

/* 1 - COVER */

.flex-in{
  display: flex;
  justify-content: center;
}

.cover{
  width: 100%;
  height: 600px;
  margin-bottom: 40px;
  background-image: url('../img/meeting.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items:flex-end;
  align-content: flex-end; 
}

.our-plans{
  
  width: 85%;
  margin-left: 7.5%;
  height: 100px;
  /* background-color: red; */
  display: flex;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}

.our-plans h1{
  font-style: normal;
  font-weight: bold;
  font-size: 48px;
  color: white;
}

.line{
  width: 100px;
  height: 5px;
  background-color: var(--green-default);
  border-radius: 10px;
}


@media screen and (max-width: 992px){
  
  .cover{
    height: 450px;
  }
}

@media screen and (max-width: 460px){
  .our-plans h1{
    font-size: 35px;
  }
}

/* 2 - TABLE */

.table-plans{
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 40px;
}

.text-in-plans{
  width: 100%;
  height: 120px;
  /* background-color: red; */
}

.text-in-plans h3{
  padding-left: 150px;
  font-style: normal;
  font-weight: 500;
  font-size: 36px;
}

@media screen and (max-width: 753px){
  .text-in-plans{
    text-align: center;
  }
  
  .text-in-plans h3{
    padding-left: 0px;
  }
}


@media screen and (max-width: 436px){
  
  .text-in-plans h3{
    font-size: 30px;
  }
}

@media screen and (max-width: 354px){
  .text-in-plans{
    height: 90px;
  }
  .text-in-plans h3{
    font-size: 26px;
  }
}

.plans-in-table{
  max-width: 1180px;
}

th{
  font-family: 'Montserrat', sans-serif !important;
}

.bolded{
  font-weight: bold;
}


.colored-table{
  background-color: var(--blue-default) !important;
  
}

.colored-table th{
  color: var(--green-default) !important;
  font-style: normal !important;
font-weight: bold !important;
font-size: 20px !important;
}




@media screen and (max-width: 1180px){
  .plans-in-table{
    max-width: 100%;
  }
  
  .scrolling{
    overflow:auto;
  }
}




.button-redirect{
  width: 100%;
  /* background-color: red; */
  /* background: rgba(29, 112, 183, 0.15); */
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.button-budget{
  background: #FF6727;
  border-radius: 15px;
  padding: 12px 70px;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 26px;
  line-height: 32px;
  text-align: center;
  text-transform: uppercase;
  color: white;
  border: none;
  -webkit-box-shadow: -5px 5px 2px 0px rgba(0,0,0,0.75);
  -moz-box-shadow: -5px 5px 2px 0px rgba(0,0,0,0.75);
  box-shadow: -5px 5px 2px 0px rgba(0,0,0,0.75);
  cursor: pointer;
  transition: 1s;
}

.button-budget:hover{
  background: rgb(187, 73, 24);
}

.button-budget:active{
  transform: scale(.998);
}

@media screen and (max-width: 556px){
  .button-budget{
    padding: 12px 50px;
    font-size: 23px;
  }
}

@media screen and (max-width: 460px){
  .button-budget{
    padding: 12px 43px;
    font-size: 20px;
  }
}

@media screen and (max-width: 398px){
  .button-budget{
    padding: 11px 35px;
    font-size: 17px;
  }
}

@media screen and (max-width: 342px){
  .button-budget{
    padding: 10px 32px;
    font-size: 15px;
  }
}



/* TABELA */

.table-content{
  width: 1350px;
  /* background-color: red; */
  border-radius: 20px 20px 20px 20px;
  overflow-x: auto;
}

.head-table{
  background: #27272F;
  
  color: #F2F0ED !important;
  font-weight: bold;
  border-radius: 20px 20px 0px 0px;
}


.describe{
  background-color: var(--blue-default) !important;
  color: var(--green-default);
  font-style: normal;
  font-weight: bold;
  font-size: 35px;
  text-align: left !important;
}

.describe td{
  white-space: nowrap;
  overflow: hidden;
}

td, th {
  text-align: left;
  padding: 8px;
  text-align: center;
}

.td-col{
  border-right: 1px solid rgb(151, 151, 151);
}

.blacked{
  color: black;
}

.bolded{
  font-weight: bold;
}


table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

tbody{
  /* background-color: red; */
  border-bottom: 30px solid #C4C4C4;
  border-radius: 0px 0px 20px 20px;
}


tr:nth-child(even) {
  background-color: rgba(96, 99, 133, 0.2);
}