@font-face {
    font-family: 'circular std book';
    src: url('../fonts/circularstd-book.woff2') format('woff2'),
        url('circularstd-book.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'circular std bold';
    src: url('../fonts/circularstd-bold.woff2') format('woff2'),
        url('../fonts/circularstd-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;
}

body{
    font-size: 62.5%; 
}

h1, h2, h3, h4, h5, h6, p, ul{
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

input[type="checkbox"] { -webkit-appearance: checkbox; }
input[type="radio"] { -webkit-appearance: radio; }
select { -webkit-appearance:textfield; }



/* ==========================================================================
   Author's custom styles
   ========================================================================== */


body{
    font-family: 'circular std bold';
}

.book{
    font-family: 'circular std book';
}


.container{
    width: 96%;
    max-width: 1180px;
    margin: 0 auto;
}

.topo{
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 768px;
    background: url('../img/fundo.jpg') no-repeat center;
    background-size: cover;
}

.topo .container{
    position: relative;
    height: 100%;
}


.topo img.menina{
    position: absolute;
    width: 450px;
    height: auto;
    bottom: 0;
    left: 160px;
}

.topo img.texto-1{
    position: absolute;
    width: 420px;
    height: auto;
    top: 150px;
    right: 200px;
}

.topo img.texto-2{
    position: absolute;
    width: 460px;
    height: auto;
    bottom: 50px;
    right: 100px;
}

.topo .logo{
    width: 460px;
    height: 130px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url('../img/fundo-logo.png') no-repeat center top;
    background-size: 100% auto;
}

.topo .logo img{
    position: absolute;
    width: 184px;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.formulario{
    background-color: #f6f6f6;
    padding: 150px 0 325px 0;
   
}

.formulario h2{
    text-align: center;
    font-size: 80px;
    line-height: 90px;
    color: #46A1BD;
    letter-spacing: -0.04em;
    padding-bottom: 0;
   
}

.formulario form{
    padding-top: 100px;
}

.formulario form .ct-campo{
    margin-bottom: 50px;
}

.formulario form .ct-campo label{
    display: block;
    font-size: 40px;
    line-height: 1.1em;
    color: #54575B;
    padding-bottom: 10px; 
}

.formulario form .ct-campo .input-text{
    width: 100%;
    height: 100px;
    background-color: transparent;
    border: 1px solid #54575B;
    border-radius: 8px;
    display: block;
    font-size: 44px;
    color: #54575B;
    line-height: 100px;
    padding: 0 45px;

}

.formulario form .ct-campo .input-text.error{
    border: 1px solid red;
}

.formulario form .bt-enviar{
    display: block;
    width: 100%;
    height: 100px;
    border-radius: 8px;
    border: none;
    text-align: center;
    font-size: 40px;
    line-height: 100px;
    color: #fff;
    background-color: #46A1BD;
}

@media screen and (max-width: 1280px){

   .container{
       width: 96%;
       max-width: calc(1180px * 0.8);
       margin: 0 auto;
   }

   .topo{
       position: relative;
       width: 100%;
       height: 100vh;
       min-height: calc(768px * 0.8);
       background: url('../img/fundo.jpg') no-repeat center;
       background-size: cover;
   }

   .topo .container{
       position: relative;
       height: 100%;
   }


   .topo img.menina{
       position: absolute;
       width: calc(450px * 0.8);
       height: auto;
       bottom: 0;
       left: calc(160px * 0.8);
   }

   .topo img.texto-1{
       position: absolute;
       width: calc(420px * 0.8);
       height: auto;
       top: calc(150px * 0.8);
       right: calc(200px * 0.8);
   }

   .topo img.texto-2{
       position: absolute;
       width: calc(460px * 0.8);
       height: auto;
       bottom: calc(50px * 0.8);
       right: calc(100px * 0.8);
   }

   .topo .logo{
       width: calc(460px * 0.8);
       height: calc(130px * 0.8);
       position: absolute;
       top: 0;
       left: 50%;
       transform: translateX(-50%);
       background: url('../img/fundo-logo.png') no-repeat center top;
       background-size: 100% auto;
   }

   .topo .logo img{
       position: absolute;
       width: calc(184px * 0.8);
       left: 50%;
       top: 50%;
       transform: translateX(-50%) translateY(-50%);
   }

   .formulario{
       background-color: #f6f6f6;
       padding: calc(150px * 0.8) 0 calc(325px * 0.8) 0;
      
   }

   .formulario h2{
       text-align: center;
       font-size: calc(80px * 0.8);
       line-height: calc(90px * 0.8);
       color: #46A1BD;
       letter-spacing: -0.04em;
       padding-bottom: 0;
      
   }

   .formulario form{
       padding-top: calc(100px * 0.8);
   }

   .formulario form .ct-campo{
       margin-bottom: calc(50px * 0.8);
   }

   .formulario form .ct-campo label{
       display: block;
       font-size: calc(40px * 0.8);
       line-height: 1.1em;
       color: #54575B;
       padding-bottom: calc(10px * 0.8); 
   }

   .formulario form .ct-campo .input-text{
       width: 100%;
       height: calc(100px * 0.8);
       background-color: transparent;
       border: 1px solid #54575B;
       border-radius: 8px;
       display: block;
       font-size: calc(44px * 0.8);
       color: #54575B;
       line-height: calc(100px * 0.8);
       padding: 0 calc(45px * 0.8);

   }

   .formulario form .ct-campo .input-text.error{
       border: 1px solid red;
   }

   .formulario form .bt-enviar{
       display: block;
       width: 100%;
       height: calc(100px * 0.8);
       border-radius: 8px;
       border: none;
       text-align: center;
       font-size: calc(40px * 0.8);
       line-height: calc(100px * 0.8);
       color: #fff;
       background-color: #46A1BD;
   }


}

@media screen and (max-width: 1000px){

    .container{
           width: 96%;
           max-width: calc(1180px * 0.6);
           margin: 0 auto;
       }

       .topo{
           position: relative;
           width: 100%;
           height: 100vh;
           min-height: calc(768px * 0.6);
           background: url('../img/fundo.jpg') no-repeat center;
           background-size: cover;
       }

       .topo .container{
           position: relative;
           height: 100%;
       }


       .topo img.menina{
           position: absolute;
           width: calc(450px * 0.6);
           height: auto;
           bottom: 0;
           left: calc(160px * 0.6);
       }

       .topo img.texto-1{
           position: absolute;
           width: calc(420px * 0.6);
           height: auto;
           top: calc(150px * 0.6);
           right: calc(200px * 0.6);
       }

       .topo img.texto-2{
           position: absolute;
           width: calc(460px * 0.6);
           height: auto;
           bottom: calc(50px * 0.6);
           right: calc(100px * 0.6);
       }

       .topo .logo{
           width: calc(460px * 0.6);
           height: calc(130px * 0.6);
           position: absolute;
           top: 0;
           left: 50%;
           transform: translateX(-50%);
           background: url('../img/fundo-logo.png') no-repeat center top;
           background-size: 100% auto;
       }

       .topo .logo img{
           position: absolute;
           width: calc(184px * 0.6);
           left: 50%;
           top: 50%;
           transform: translateX(-50%) translateY(-50%);
       }

       .formulario{
           background-color: #f6f6f6;
           padding: calc(150px * 0.6) 0 calc(325px * 0.6) 0;
          
       }

       .formulario h2{
           text-align: center;
           font-size: calc(80px * 0.6);
           line-height: calc(90px * 0.6);
           color: #46A1BD;
           letter-spacing: -0.04em;
           padding-bottom: 0;
          
       }

       .formulario form{
           padding-top: calc(100px * 0.6);
       }

       .formulario form .ct-campo{
           margin-bottom: calc(50px * 0.6);
       }

       .formulario form .ct-campo label{
           display: block;
           font-size: calc(40px * 0.6);
           line-height: 1.1em;
           color: #54575B;
           padding-bottom: calc(10px * 0.6); 
       }

       .formulario form .ct-campo .input-text{
           width: 100%;
           height: calc(100px * 0.6);
           background-color: transparent;
           border: 1px solid #54575B;
           border-radius: 8px;
           display: block;
           font-size: calc(44px * 0.6);
           color: #54575B;
           line-height: calc(100px * 0.6);
           padding: 0 calc(45px * 0.6);

       }

       .formulario form .ct-campo .input-text.error{
           border: 1px solid red;
       }

       .formulario form .bt-enviar{
           display: block;
           width: 100%;
           height: calc(100px * 0.6);
           border-radius: 8px;
           border: none;
           text-align: center;
           font-size: calc(40px * 0.6);
           line-height: calc(100px * 0.6);
           color: #fff;
           background-color: #46A1BD;
       }



}

@media screen and (max-width: 720px){

    .container{
           width: 96%;
           max-width: 320px;
           margin: 0 auto;
       }

       .topo{
           position: relative;
           width: 100%;
           height: 560px;
           min-height: 560px;
           background: url('../img/fundo.jpg') no-repeat center;
           background-size: cover;
           overflow: hidden;
       }

       .topo .container{
           position: relative;
           height: 100%;
       }


       .topo img.menina{
           position: absolute;
           width: calc(450px * 0.6);
           height: auto;
           bottom: 0;
           left: -60px;
       }

       .topo img.texto-1{
           position: absolute;
           width: calc(420px * 0.5);
           height: auto;
           top: calc(150px * 0.4);
           right: 0;
       }

       .topo img.texto-2{
           position: absolute;
           width: calc(460px * 0.5);
           height: auto;
           bottom: auto;
           right: -20px;
           top: 200px;
           
       }

       .topo .logo{
           width: calc(460px * 0.5);
           height: calc(130px * 0.5);
           position: absolute;
           top: 0;
           left: 50%;
           transform: translateX(-50%);
           background: url('../img/fundo-logo.png') no-repeat center top;
           background-size: 100% auto;
       }

       .topo .logo img{
           position: absolute;
           width: calc(184px * 0.5);
           left: 50%;
           top: 50%;
           transform: translateX(-50%) translateY(-50%);
       }

       .formulario{
           background-color: #f6f6f6;
           padding: calc(150px * 0.4) 0 calc(325px * 0.4) 0;
          
       }

       .formulario h2{
           text-align: center;
           font-size: calc(80px * 0.4);
           line-height: calc(90px * 0.4);
           color: #46A1BD;
           letter-spacing: -0.04em;
           padding-bottom: 0;
          
       }

       .formulario form{
           padding-top: calc(100px * 0.4);
       }

       .formulario form .ct-campo{
           margin-bottom: calc(50px * 0.4);
       }

       .formulario form .ct-campo label{
           display: block;
           font-size: calc(40px * 0.4);
           line-height: 1.1em;
           color: #54575B;
           padding-bottom: calc(10px * 0.4); 
       }

       .formulario form .ct-campo .input-text{
           width: 100%;
           height: calc(100px * 0.4);
           background-color: transparent;
           border: 1px solid #54575B;
           border-radius: 8px;
           display: block;
           font-size: calc(44px * 0.4);
           color: #54575B;
           line-height: calc(100px * 0.4);
           padding: 0 calc(45px * 0.4);

       }

       .formulario form .ct-campo .input-text.error{
           border: 1px solid red;
       }

       .formulario form .bt-enviar{
           display: block;
           width: 100%;
           height: calc(100px * 0.4);
           border-radius: 8px;
           border: none;
           text-align: center;
           font-size: calc(40px * 0.4);
           line-height: calc(100px * 0.4);
           color: #fff;
           background-color: #46A1BD;
       }



}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* Remove padding and margin into box account */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/*Float Classes*/

.clearBoth{
    clear: both;
}

.left{
    float: left;
}

.right{
    float: right;
}

/*Text Classes*/

.upper{
    text-transform: uppercase;
}

.image{
    text-indent: -9999px;
    white-space: nowrap;
}


/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


/* ==========================================================================
  ESTILOS DA MENSAGEM PARA NAVEGADORES DESATUALIZADOS
   ========================================================================== */


#msg-atualizacao{
    position: fixed; 
    width: 100%; 
    height: 100%;
    top: 0; 
    left: 0; 
    background-color: #FFF; 
    color: #000; 
    z-index:9999999999999999999999;
}

#msg-atualizacao div.wrapper{
    position: absolute; 
    width: 800px; 
    height: 400px; 
    top: 50%; 
    left: 50%; 
    margin: -200px 0 0 -400px; 
    font-family: Arial, sans-serif;
    text-align: center; 
}

#msg-atualizacao div.wrapper h1{
    margin-top: 0px; 
    margin-bottom: 30px; 
    font-family: inherit;
    font-size: 48px; 
    line-height: 1em;  
    font-weight: bold;
    text-transform: uppercase; 
}

#msg-atualizacao div.wrapper p{
    font-family: inherit;
    font-size: 16px; 
}

#msg-atualizacao div.wrapper hr{
    width: 70px; 
    margin: 30px auto;
    border-top: 1px solid #ccc;
}

#msg-atualizacao div.wrapper h2{
    font-family: inherit;
    font-size: 16px; 
    line-height: 1em; 
    font-weight: normal !important;
}

#msg-atualizacao div.wrapper ul{
    width: 560px;
    list-style: none; 
    font-family: inherit; 
    margin: 60px auto 0 auto;
}

#msg-atualizacao div.wrapper ul li{
    float: left;
    margin-right: 20px;
    padding-right: 20px;
    border-right: 1px solid #ccc;
}

#msg-atualizacao div.wrapper ul li.no-border{
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

#msg-atualizacao div.wrapper ul li a{
    display: block;
    color: #000;
    text-decoration: none;
    padding-top: 66px;
    text-align: center;
} 

#msg-atualizacao div.wrapper ul li a:hover{
    text-decoration: underline;
}

#msg-atualizacao div.wrapper ul li a.chrome{
    background: url('../img/msg-atualizacao/chrome.jpg') no-repeat center top;
}

#msg-atualizacao div.wrapper ul li a.ff{
    background: url('../img/msg-atualizacao/firefox.jpg') no-repeat center top;
}

#msg-atualizacao div.wrapper ul li a.ie{
    background: url('../img/msg-atualizacao/ie.jpg') no-repeat center top;
}

#msg-atualizacao div.wrapper ul li a.safari{
    background: url('../img/msg-atualizacao/safari.jpg') no-repeat center top;
}