
body{
    font-family:'Inter',sans-serif;
    background:#F3F4F6;
    overflow-x:hidden;
}

h1,h2,h3,h4,h5{
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

/* SCROLL */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#E5E7EB;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(
    180deg,
    #1E3A8A,
    #312E81
    );
    border-radius:20px;
}

/* NAVBAR */

.navbar{
    background:rgba(15,23,42,0.88);
    backdrop-filter:blur(12px);
    padding:18px 0;
}

.navbar-brand{
    color:white !important;
    font-size:30px;
    font-weight:800;
}

.nav-link{
    color:white !important;
    font-weight:600;
    margin-left:18px;
    transition:0.3s;
}

.nav-link:hover{
    color:#FACC15 !important;
}

/* HERO */

.hero{
    position:relative;
    overflow:hidden;
    color:white;
    padding:140px 0 100px;

    background:
    radial-gradient(circle at top left, rgba(250,204,21,0.15), transparent 25%),
    radial-gradient(circle at bottom right, rgba(124,58,237,0.25), transparent 30%),
    linear-gradient(135deg, #0F172A 0%, #1E3A8A 45%, #312E81 100%);
}

.hero h1{
    font-size:62px;
    font-weight:800;
    margin-bottom:25px;
}

.hero p{
    font-size:22px;
    color:rgba(255,255,255,0.9);
    max-width:700px;
    margin:auto;
}

/* FORM */

.form-section{
    margin-top:-70px;
    position:relative;
    z-index:10;
}

.form-card{
    background:white;
    border-radius:35px;
    padding:55px;
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.form-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
}

.form-subtitle{
    color:#6B7280;
    margin-bottom:40px;
    font-size:18px;
}

.form-label{
    font-weight:700;
    margin-bottom:10px;
    color:#111827;
}

.form-control,
.form-select{
    height:60px;
    border-radius:16px;
    border:1px solid #D1D5DB;
    padding-left:18px;
    font-size:16px;
    transition:0.3s;
}

.form-control:focus,
.form-select:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 0.2rem rgba(37,99,235,0.15);
}

textarea.form-control{
    height:140px;
    padding-top:15px;
}

/* BUTTON */

.btn-submit{
    width:100%;
    height:65px;
    border:none;
    border-radius:18px;
    background:linear-gradient(
    135deg,
    #1E3A8A,
    #312E81
    );

    color:white;
    font-size:18px;
    font-weight:700;
    transition:0.3s;
}

.btn-submit:hover{
    transform:translateY(-3px);

    background:linear-gradient(
    135deg,
    #2563EB,
    #4F46E5
    );
}

/* INFO BOX */

.info-box{
    background:#EFF6FF;
    border-radius:25px;
    padding:30px;
    margin-top:30px;
}

.info-box h4{
    color:#1E3A8A;
    margin-bottom:15px;
}

.info-box p{
    color:#4B5563;
    margin-bottom:0;
}

/* FOOTER */

footer{
    background:#030712;
    color:#9CA3AF;
    padding:80px 0;
    margin-top:100px;
}

footer h4{
    color:white;
    margin-bottom:20px;
}

/* SOCIAL */

.social-icons{
    display:flex;
    gap:15px;
}

.social-icon{
    width:52px;
    height:52px;
    border-radius:16px;

    background:linear-gradient(
    135deg,
    #1E3A8A,
    #312E81
    );

    color:white;
    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:20px;

    transition:0.3s;
}

.social-icon:hover{
    transform:translateY(-5px);

    color:#FACC15;
}

/* RESPONSIVO */

@media(max-width:992px){

.hero h1{
    font-size:42px;
}

.form-card{
    padding:35px;
}

.form-title{
    font-size:32px;
}

}
footer {
      background: #030712;
      color: #9CA3AF;
      padding: 80px 0;
    }

    footer h4 {
      color: white;
      margin-bottom: 20px;
    }

    footer ul {
      list-style: none;
      padding-left: 0;
    }

    footer ul li {
      margin-bottom: 12px;
    }


/* SOCIAL ICONS */

.social-icons{
    display:flex;
    gap:15px;
}

.social-icon{
    width:52px;
    height:52px;
    border-radius:16px;

    background:linear-gradient(
    135deg,
    #1E3A8A,
    #312E81
    );

    color:white;
    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;
    font-size:20px;

    transition:0.3s;

    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.social-icon:hover{
    transform:translateY(-5px) scale(1.05);

    background:linear-gradient(
    135deg,
    #2563EB,
    #4F46E5
    );

    color:#FACC15;
}
/* POWERED BY */

.footer-powered{
    margin-top:30px;
    padding-top:25px;

    border-top:1px solid rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    color:#9CA3AF;
    font-size:15px;
}

.footer-powered i{
    color:#60A5FA;
}

.footer-powered strong{

    background:linear-gradient(
    90deg,
    #60A5FA,
    #818CF8
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    font-weight:800;
}
.logo-iave{

    filter:drop-shadow(
    0 0 8px rgba(96,165,250,0.35)
    );

}
footer a{

    color:#D1D5DB;

    text-decoration:none;

    transition:0.3s;

    position:relative;
}

/* LINHA */

footer a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-4px;

    width:0%;
    height:2px;

    background:#FACC15;

    transition:0.3s;
}

footer a:hover{

    color:white;
}

footer a:hover::after{

    width:100%;
}

.box-cookies.hide {
  display: none !important;
}

.box-cookies {
  position: fixed;
  background: rgba(0, 0, 0, .9);
  width: 100%;
  z-index: 998;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.box-cookies .msg-cookies,
.box-cookies .btn-cookies {
  text-align: center;
  padding: 25px;
  color: #fff;
  font-size: 18px;
}

.box-cookies .btn-cookies {
  background: #1e88e5;
  cursor: pointer;
  align-self: normal;
}

@media screen and (max-width: 600px) {
  .box-cookies {
    flex-direction: column;
  }
}
