@font-face {
    font-family: "Panton Black";
    src: url("../../../fonts/Panton-BlackCaps.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Panton Regular";
    src: url("../../../fonts/Panton-Regular.ttf") format("truetype"); 
    font-display: swap;
}

@font-face {
    font-family: "Panton Light";
    src: url("../../../fonts/Panton-LightCaps.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "Lato Bold";
    src: url("../../../fonts/Lato-Bold.ttf") format("truetype"); 
    font-display: swap;
}

@font-face {
    font-family: "Lato Regular";
    src: url("../../../fonts/Lato-Regular.ttf") format("truetype"); 
    font-display: swap;
}

@font-face {
    font-family: "Lato Light";
    src: url("../../../fonts/Lato-Light.ttf") format("truetype"); 
    font-display: swap;
}

@font-face {
    font-family: "Open Sans Regular";
    src: url("../../../fonts/OpenSans-Regular.ttf") format("truetype"); 
    font-display: swap;
}

:root{
    --cor-pink: #f5c2cb;
}

.heading-56 {
    font-size: 56px;
    font-family: "Panton Black"; 
    line-height: 67px;
}

.heading-52 {
    font-size: 52px;
    font-family: "Panton Black"; 
    line-height: 48px;
}

.heading-48 {
    font-size: 48px;
    font-family: "Panton Black"; 
    line-height: 57px;
}

.heading-40 {
    font-size: 40px;
    font-family: "Panton Regular"; 
    line-height: 48px;
}

.heading-40.bold {
    font-weight: 700;
}

.heading-32 {
    font-size: 32px;
    font-family: "Panton Regular"; 
    line-height: 48px;
}

.heading-32.bold {
    font-weight: 700;
}

.heading-24 {
    font-size: 24px;
    font-family: "Panton Regular"; 
    line-height: 36px;
}

.heading-24.bold {
    font-weight: 700;
}

.body-24 {
    font-size: 24px;
    font-family: "Lato Bold"; 
    line-height: 36px;
}

.body-18 {
    font-size: 18px;
    font-family: "Lato Regular"; 
    line-height: 27px;
}

.body-16 {
    font-size: 16px;
    font-family: "Lato Regular"; 
    line-height: 21px;
}

.body-14 {
    font-size: 14px;
    font-family: "Lato Light"; 
    line-height: 16px;
}

.btn-default {
    font-size: 18px;
    font-family: "Lato Bold"; 
    line-height: 27px;

    background-color: var(--cor-pink);
    color: #0E5358;
    height: 56px;
    border-radius: 130px;

    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    transition: all 200ms linear;
}

.btn-default:hover, .btn-default:active,.btn-default:focus {
    background-color: #0E5358;
    color: var(--cor-pink);
    height: 56px;
}

.input-default {
    padding: 16px 24px;

    border: 1px solid var(--cor-pink);
    box-sizing: border-box;
    border-radius: 6px;
}

select.input-default {
    -moz-appearance: none; 
    -webkit-appearance: none;
    appearance: none;

    background: transparent;
    background-image: url("../../images/svgs/select-arrow.svg");
    background-repeat: no-repeat;
    background-position-x: 95%;
    background-position-y: 50%;
}

::placeholder { 
    color:  #BFC1CA;
    opacity: 1; 
  }
  
  :-ms-input-placeholder { 
    color:  #BFC1CA;
  }
  
  ::-ms-input-placeholder { 
    color: #BFC1CA;
  }

#head-banner {
    height: 346px;
    background-image: url("../../images/banner-head.webp");
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

#head-banner .container {
    align-items: center;
    text-align: center;
}
.head-banner-title,
.head-banner-subtitle {
    letter-spacing: 3px;
    max-width: 800px;
    margin-bottom: 8px;
}

.head-banner-title {
    color: #333;
}
.head-banner-subtitle {
    color: #FFF;
    background-color: #0E5358;
    padding: 2px 15px;
    border-radius: 10px;
}

@media screen and (min-width: 1200px) {
    .hide-ds {
        display: none !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1199px){
    .hide-tb {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .hide-mb {
        display: none !important;
    }
}