@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,500;1,600;1,700;1,800;1,900&amp;family=Oswald:wght@200;300;400;500;600;700&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap');

/* variables */
:root
{
    --primary-color: rgb(0, 143, 156);
    --branco-color: #ffffff;
    --rox-color: #4e549e;
    --secondary-color: rgb(73, 138, 248);
    --field-text-color:rgb(26, 27, 24);
    --field-bg-color: rgb(255,255,255);
    --bg-color: rgb(228, 235, 244);
    --field-color: rgb(242, 242, 242);

    
    
}
  
body
{
    font-family: "Jost";
    width: 100%;
    position: relative;
    height: auto;
}

main
{
    background-color: var(--bg-color);
    width: 100%;
  height: 100vh;
    padding: 35px 50px;
    background-image: url(../images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

a
{
    color: var(--primary-color);
    text-decoration: underline;  
    font-weight: 500;

}
a:hover
{
    color: var(--primary-color);
}
.logo
{
    display: flex;
    align-items: center;
    height: auto;
    position: relative;
    z-index: 10;
    justify-content: space-between;
}
.logo-icon
{
    width: auto;
}
.logo-icon img
{
    width: 400px;
}
.logo-text
{
    font-size: 37px;
    font-family: "Oswald";
    color: var(--field-text-color);
    font-weight: bold;
    margin-left: 3px;
}
.wrapper
{
    width: 100%;
    height: 100%;
    display: grid;
    align-content: center;
}



  
  /* Aplicando a animação à classe .gradient */
  .gradient {
    background: linear-gradient(
    to right,
    #7953cd 20%,
    #00affa 30%,
    #0190cd 70%,
    #764ada 80%
  );
    color: black;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
  
  }
  
  @keyframes textShine {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }


.side-text h2
{
    font-size: 65px;
    color: var(--branco-color);
    font-weight: bold; 
    line-height: 1.0;
    
}
.side-text p
{
    font-size: 27px;
    color: var(--branco-color);
    font-weight: bold;
    margin-top: 25px;
}


.textocover {
    font-size: 18px!important;
    color: var(--branco-color);
}
.side-text p span
{
    position: relative;
    display: inline-block;
    line-height: 1.3;
}
.side-text p span::after
{
    content: "";
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 50px;
}
.side-text button
{
    background-color: var(--primary-color);
    width: 70%;
    height: 69px;
    border-radius: 50px;
    border: 0;
    font-size: 15px;
    font-family: "Roboto";
    color: var(--field-bg-color);
    font-weight: bold;
      
}

.side-text button i
{
    margin-right: 10px;
}
form
{
    height: calc(100vh - 140px);
    overflow: hidden;
    overflow-y: scroll;
    border-radius: 10px;
    opacity: 0.9;

}

.scroll-form::-webkit-scrollbar
{
    width: 15px;

}

.scroll-form::-webkit-scrollbar-track
{
    background-color: rgb(255, 255, 255);
    border-radius: 50px;
    margin-top: 270px;
    margin-bottom: 270px;

}
.scroll-form::-webkit-scrollbar-thumb
{
    background-color: var(--secondary-color);
    border-radius: 50px;
    height: 100px;
}

.alinha {
    height: 80vh;
}

.steps-inner
{

    width: 95%;
    background-color: rgb(255 255 255 / 86%);
    border-radius: 10px;
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.15);
    
}

.steps-inner2 {
    background-color: rgb(255 255 255 / 86%);
    border-radius: 10px;
    box-shadow: 0px 0px 73px 0px rgba(0, 0, 0, 0.15);
}

.main-heading
{

    font-size: 40px;
    color: var(--field-text-color);
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 15px;
}
.set_meeting
{
    padding: 75px;
}
.meeting_type
{
    width: 100%;
    height: auto;
    margin-bottom: 25px;

}
.meeting_type select
{
    -webkit-appearance: none;
    border: solid 2px var(--field-color);
    height: 61px;
    width: 100%;
    border-radius: 6px;
    font-size: 16px;
    color: var(--field-text-color);
    transition: 0.4s all ease;
    cursor: pointer;
    font-weight: 400;
    padding-left: 35px;
}
.meeting_type select:focus
{
    outline: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.11);
    background-color: var(--field-bg-color);

}
.meeting_date
{
    border: solid 2px var(--field-color);
    border-radius: 6px;
    height: 65px;
    transition: 0.4s all ease;
    display: flex;
    margin-bottom: 25px;
}
.meeting_date:focus-within
{
    border-color: var(--primary-color);
}
.meeting_date .date-icon
{
    width: 30%;
    display: grid;
    place-content: center;
}
.meeting_date .date-icon i
{
    font-size: 16px;
    color: var(--primary-color);
    height: 100%;
}
.meeting_date .start_date, .meeting_date .end_date
{
    width: 70%;
    text-align: center;
    height: 100%;
    position: relative;
}
.meeting_date select
{
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: 500;
    border: 0;
    padding-left: 20px;
    cursor: pointer;
    
      

}
.meeting_date select:focus
{
    outline: none;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.11);
    background-color: var(--field-bg-color);

}
.b-custom
{
    border-right: 2px solid var(--field-color);
}
.meeting_date select+span::after
{
    content: "\f0d7";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 35%;
    right: 15px;
    font-size: 13px;
    color: var(--primary-color);
}
.schedule-type
{
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: wrap;
}
.schedule-type > *
{
    margin-bottom: 10px;
}
.schedule-type input[type=radio]
{
    -webkit-appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgb(246, 248, 250);
    border: solid 2px transparent;
    cursor: pointer;
    transition: 0.4s all ease;
    position: relative;
      
}
.schedule-type input:checked::before
{
    content: "";
    position: absolute;
    top: 37%;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: var(--primary-color);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: 0.4s all ease;
}
.schedule-type input:checked
{
    border-color: var(--primary-color);
    transition: 0.4s all ease;
    background-color: var(--field-bg-color);
}
.schedule-type label
{
    font-size: 16px;
    color: var(--field-text-color);
    margin-left: 10px;
    display: -webkit-inline-box;
  }
  .schedule-type label #edit
  {
    margin-right: 10px;
    font-weight: bold;
    cursor: auto;
    width: 90px;
    height: 25px;

  }

 .schedule-type label #edit:focus
 {
    outline: none;
 }
 .event_details
 {
    background-image: -moz-linear-gradient( 90deg, rgb(226,237,255) 2%, rgba(226,237,255,0.15) 10%, rgba(233,242,255,0.26) 16%, rgba(240,246,255,0.44) 26%, rgba(240,246,255,0.5) 29%, rgb(240,246,255) 73%);
    background-image: -webkit-linear-gradient( 90deg, rgb(226,237,255) 2%, rgba(226,237,255,0.15) 10%, rgba(233,242,255,0.26) 16%, rgba(240,246,255,0.44) 26%, rgba(240,246,255,0.5) 29%, rgb(240,246,255) 73%);
    background-image: -ms-linear-gradient( 90deg, rgb(226,237,255) 2%, rgba(226,237,255,0.15) 10%, rgba(233,242,255,0.26) 16%, rgba(240,246,255,0.44) 26%, rgba(240,246,255,0.5) 29%, rgb(240,246,255) 73%);   
    width: 100%;
    height: auto;
    padding: 30px 75px 30px 75px;
 }
 .event_details .main-heading
 {
    font-size: 30px;
 }
.guests
{
    border-top: solid 1px rgb(236, 236, 236);
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.guest-inner
{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.event-text
{
    font-size: 16px;
    color: var(--field-text-color);
    font-weight: bold;
    margin-right: 11px;
}
.guest-single
{
    border-radius: 50%;
    background-color: rgb(236, 236, 236);
    width: 75px;
    height: 75px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.guest-single img
{
    width: 100%;
    height: auto;
}
.add-guest
{
    border-radius: 50%;
    background-color: var(--primary-color);
    width: 39px;
    height: 39px;
    line-height: 39px;
    text-align: center;
    font-size: 20px;
    color: var(--field-bg-color);
    font-weight: bold;
    cursor: pointer;
}
.add-guest input
{
    display: none;
}
.text-input
{
    border: solid 2px var(--field-color);
    border-radius: 6px;
    height: 65px;
    background-color: var(--field-bg-color);
    padding: 6px 20px 6px 6px;
    transition: 0.4s all ease;
    display: flex;
    align-items: center;
    margin-bottom: 25px;

}
.text-input label
{
    border-radius: 6px;
    background-image: -moz-linear-gradient( 90deg, rgb(226,237,255) 2%, rgba(226,237,255,0.15) 10%, rgba(233,242,255,0.26) 16%, rgba(240,246,255,0.44) 26%, rgba(240,246,255,0.5) 29%, rgb(240,246,255) 73%);
    background-image: -webkit-linear-gradient( 90deg, rgb(226,237,255) 2%, rgba(226,237,255,0.15) 10%, rgba(233,242,255,0.26) 16%, rgba(240,246,255,0.44) 26%, rgba(240,246,255,0.5) 29%, rgb(240,246,255) 73%);
    background-image: -ms-linear-gradient( 90deg, rgb(226,237,255) 2%, rgba(226,237,255,0.15) 10%, rgba(233,242,255,0.26) 16%, rgba(240,246,255,0.44) 26%, rgba(240,246,255,0.5) 29%, rgb(240,246,255) 73%);
    font-size: 16px;
    font-weight: normal;
    height: 100%;
    text-align: center;
    line-height: 48px;
    padding: 0 30px;
}    
.text-input input
{
    width: 100%;
    height: 100%;
    border: 0;
    margin-left: 30px;

}
.text-input:focus-within
{
    border-color: var(--primary-color);
}
.text-input input:focus
{
    outline: none;
}

.text-input i
{
    font-size: 15px;
    color: var(--primary-color);
}
.video_call_opt
{
    border-top: solid 1px var(--field-color);
    border-bottom: solid 1px var(--field-color);
    padding: 25px 0;
    display: -webkit-inline-box;
    margin-bottom: 30px;
    width: 100%;
}

.video_call_opt .colors
{
    margin-left: 25px;
    color: var(--field-text-color);
    font-weight: 400;
}
.video_call_opt i
{
    font-size: 16px;
    color: var(--primary-color);
    margin-right: 8px;
}
::-webkit-calendar-picker-indicator
{
    display: none;
}
.other-input
{
    padding: 30px 75px 30px 75px;
}
.other-input .main-heading
{
    font-size: 23px;
}

.other-input textarea
{
    border: solid 2px var(--field-color);
    border-radius: 6px;
    background-color: var(--field-bg-color);
    min-height: 110px;
    width: 100%;
    resize: none;
    transition: 0.4s all ease;
    padding: 25px;
}
.other-input textarea:focus
{
    outline: none;
    border-color: var(--primary-color);
}
.attachments input
{
    display: none;
}
.attachments label
{
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: underline; 
    cursor: pointer;
    font-weight: 500;
    min-height: auto;
    margin-top: 12px;
    margin-bottom: 25px;

}
.event_color input
{
    -webkit-appearance: none;
    border: solid 2px var(--field-color);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    background-color: transparent;
    cursor: pointer;
    transition: 0.4s all ease;
}
.event_color input:checked
{
    background-color: var(--field-color);
}
.event_color .purple
{
    border-color: rgb(153, 127, 220);
}
.event_color .purple:checked
{
    background-color: rgb(153, 127, 220);
}
.event_color .yellow
{
    border-color: rgb(234, 220, 145);
}
.event_color .yellow:checked
{
    background-color: rgb(234, 220, 145);
}
.event_color .red
{
    border-color: rgb(234, 128, 137);
}
.event_color .red:checked
{
    background-color: rgb(234, 128, 137);
}
.event_color .green
{
    border-color: rgb(35, 163, 84);
}
.event_color .green:checked
{
    background-color: rgb(35, 163, 84);
}
.submit 
{
    width: 100%;
    height: auto;
    margin-top: 10px;
}
.submit .sub
{
    border-radius: 6px;
    background-color: var(--rox-color);
    width: auto;
    padding: 0 60px;
    font-weight: 500;
    height: 50px;
    border: solid 2px transparent;
    font-size: 16px;
    color: var(--field-bg-color);
    margin-right: 15px;
    position: relative;
}
.submit .sub span
{
    margin-left: 10px;
    display: inline-block;
    transform: translateX(-200%);
    opacity: 0;
    transition: 0.4s ease;
    position: absolute;
}
.submit .sub:hover span
{
    opacity: 1;
    transform: translateX(0);
}

#notifiymail
{
    color: var(--primary-color);
    text-decoration: underline;  
    font-weight: 500;
    border: 0;
    background-color: transparent;
}






















.thankyou-page .logo
{
    justify-content: center;
    margin-top: 60px;
}
.thankyou-page .logo-icon
{
    width: 55px;
    margin-right: 10px;
}
.thankyou-page .logo .logo-icon img
{
    width: 100%;
}
.thankyou-page .logo-text
{
    font-size: 65px;
}
.thankyou-page .main-inner
{
    background-image: url(../images/thankyou-bg.html) !important;
    background-color: var(--text-color-hover);

}
.thankyou-page article
{
    text-align: center;
    margin-top: 80px;
}
.thankyou-page article h1
{
        font-size: 75px;
        font-weight: bold;
        text-transform: uppercase; 
}
.thankyou-page article h1 span
{
    display: block;
    font-size: 80px;
    font-weight: 900;
    color: var(--primary-color);
}
.thankyou-page article span
{
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 500;
}
.thankyou-page article p
{
    font-size: 18px;
    font-family: "Myriad Pro";
    color: var(--secondary--text-color);
    margin: 0 auto;
    margin-top: 45px;
    width: 39%;
}
.social-media
{
    text-align: center;
    margin: 40px auto;
    background-color: var(--text-color-hover);
    width: 30%;
    padding: 6px 10px;
}
.social-media a
{
    border: solid 1px rgb(244, 244, 244);
    border-radius: 5px;
    background-color: transparent;
    color: var(--secondary--text-color);
    font-size: 18px;
    font-weight: bold;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
}
.social-media a i
{
    margin-right: 10px;
    font-size: 20px;
}
.back-home
{
    width: 188px;
    height: 63px;
    margin: 0 auto;
}
.back-home a
{
    background-color: var(--primary-color);
    border-radius: 50px;
    color: var(--text-color-hover);
    width: 100%;
    height: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 63px;
    font-size: 17px;
    color: rgb(255, 255, 255);
    font-weight: bold;
    border: 0;

}



#sub img
{
    width: 60px;
}

.highlight
{
    border-top: solid 3px var(--primary-color) !important;
    border-bottom: solid 3px var(--primary-color) !important;

}





#error
{
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
}

.invalid
{
  border: solid 2px #ff4444 !important;
  position: relative;
}


.modal {
    --bs-modal-zindex: 1055;
    --bs-modal-width: 100%;
    --bs-modal-padding: 1rem;
    --bs-modal-margin: 0.5rem;
    --bs-modal-color: ;
    --bs-modal-bg: #fff;
    --bs-modal-border-color: var(--bs-border-color-translucent);
    --bs-modal-border-width: 1px;
    --bs-modal-border-radius: 0.5rem;
    --bs-modal-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --bs-modal-inner-border-radius: calc(0.5rem - 1px);
    --bs-modal-header-padding-x: 1rem;
    --bs-modal-header-padding-y: 1rem;
    --bs-modal-header-padding: 1rem 1rem;
    --bs-modal-header-border-color: var(--bs-border-color);
    --bs-modal-header-border-width: 1px;
    --bs-modal-title-line-height: 1.5;
    --bs-modal-footer-gap: 0.5rem;
    --bs-modal-footer-bg: ;
    --bs-modal-footer-border-color: var(--bs-border-color);
    --bs-modal-footer-border-width: 1px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--bs-modal-zindex);
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
}

.btn-senha {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #144d47;
    --bs-btn-border-color: #144d47;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #103d38;
    --bs-btn-hover-border-color: #103d38;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #103d38;
    --bs-btn-active-border-color: #103d38;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #103d38;
    --bs-btn-disabled-border-color: #103d38;
}

.btn-capa {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #00495f;
    --bs-btn-border-color: #00495f;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #0d2a33;
    --bs-btn-hover-border-color: #0d2a33;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #0d2a33;
    --bs-btn-active-border-color: #0d2a33;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #0d2a33;
    --bs-btn-disabled-border-color: #0d2a33;
}

.btn-number {
    --bs-btn-color: #ffffff;
    --bs-btn-bg: #00607d;
    --bs-btn-border-color: #00607d;
    --bs-btn-hover-color: #ffffff;
    --bs-btn-hover-bg: #0d2a33;
    --bs-btn-hover-border-color: #0d2a33;
    --bs-btn-focus-shadow-rgb: 11,172,204;
    --bs-btn-active-color: #ffffff;
    --bs-btn-active-bg: #0d2a33;
    --bs-btn-active-border-color: #0d2a33;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #ffffff;
    --bs-btn-disabled-bg: #0d2a33;
    --bs-btn-disabled-border-color: #0d2a33;
}

.titulo {
    font-size: 18px;

}

.titulo b {
    font-size: 18px;
    font-weight: 800;
    
}

.titulo c {
    font-size: 16px;
    
}

.labelexpl {
    font-size: 16px; 
}

.divisor {
    display: none;
}


/* ANIMAÇÃO BLOCO */

.blocomov {
    transform: translateX(100%);
  /* Definindo a transição para que a animação seja suave */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Definindo a animação quando a div estiver visível */
.slide-in-from-right.animate {
    /* Exibindo a div com a opacidade máxima */
    opacity: 1;
    /* Movendo a div para a posição original (0) */
    transform: translateX(0);
  }

  .textosub{
    font-size: 19px !important;
    color: #fff;
  }

  /* BLOCOS CARDS OUVIDORIA */

.cardokdocs {
    display: flex;
    padding:10px;
    background-color:#fff;
    border-radius:10px;
}

.cardicon {
    padding:15px;
    width: 100px;
}

.carditens {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cardalinha {
    margin-bottom: 15px;
}

/* modal ouvidoria */ 


  
  
  
  .modal-content {
    height: 90vh;
    animation: modalFadeIn 0.5s ease-in-out;
  }

  @keyframes modalFadeIn {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  