/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?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&display=swap');
*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 2rem;
    box-sizing: border-box;
    font-family: var(--roboto-font-family);
}
/* Vaiables */
:root {
    /* Font Families*/
    --roboto-font-family: "Roboto", sans-serif;
    /* Colors*/
    --body-color1: #ffffff;
    --body-color2: rgb(0, 23, 79);
    --body-color3: #041132;
    --icons-color: #0057a5;
    --body-alter-color: #4454ff;
    --main-color: #e80c81;
    --hover-color: #ff0088;
    --container-color: #f3f3f4;
    --text-alter-color: #0bd2d4;
    --text-color1: #000000;
    --text-color2: #fbfeff;
}
/* Basic Styles */
::selection {
    background: var(--main-color);
    color: var(--text-color1);
}
section{
    padding: 4rem 0 3rem;    
}
img {
    width: 100%;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
body {
    color: var(--text-color1);
    background: var(--body-color1);
}
.container {
    max-width: 1060px;
    margin: auto;
    width: 100%;

}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--body-color2);
    z-index: 200;
}
.nav{
    max-width: 1200px;
    margin: auto;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}
.logo{
    display: flex;
    align-items: center;
    width: 100%;
}
.navbar {
    display: flex;
    align-items: center;
    column-gap: 1.2rem;
}
.celphone {
    color: var(--text-color2);
    font-size: 0.9rem;
    font-weight: 400;
}
.nav-link{
    position: relative;
    font-size: 1rem;
    color: var(--text-color2);
    font-weight: 600;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 3px;
    background: var(--main-color);
}
.nav-link:hover::after {
    width: 100%;
    transition: 0.2s all linear;
}
.login-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 2px;
    background: var(--main-color);
    color: var(--text-color2);
    font-weight: 500;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 0.7rem;
    text-transform: uppercase;
}
.login-btn .bx {
    font-size: 1.1rem;
    font-weight: 600;
}
.login-btn:hover {
    background: var(--hover-color);
    transition: 0.2s all linear;
}
/* Drop Login */
.drop-login {
    position: absolute;
    top: 115%;
    right: 0;
    width: 231px;
    height: auto;
    background: var(--body-color2);
    box-shadow: 4px 4px 10px 2px rgb(23, 27, 38 / 60%);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
}
.drop-login .drop-item {
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
}
.drop-login .drop-item:hover {
    background: var(--hover-color);
    transition: 0.3s all linear;
}
.drop-login .drop-item a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color2);
}
.drop-login .drop-item span {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--text-color2);
}
.drop-login.drop-login-open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    transition: 0.2s all linear;
}
/* Menu Icon */
.menu-icon {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 5px;
    cursor: pointer;
    z-index: 200;
    transition: 0.2s;
}
.menu-icon div {
    display: block;
    background: var(--text-color2);
    height: 2px;
    width: 25px;
    transition: 0.2s;
}
.move .line1 {
    transform: rotate(-45deg) translate(-5px, 5px);
}
.move .line2 {
    opacity: 0;
}
.move .line3 {
    transform: rotate(45deg) translate(-5px, -5px);
}
/* Home */
.home-slide {
    min-height: 550px;
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.slide-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}
.home-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;
}
.swiper-pagination-bullet {
    width: 6px !important;
    height: 6px !important;
    border-radius: 0.2rem !important;
    background: var(--text-color2) !important;
    opacity: 1 !important;
}
.swiper-pagination-bullet-active {
    width: 1.5rem !important;
    background: var(--hover-color) !important;
}
.home-text {
    z-index: 200;
}
.slide-title {
    position: relative;
    font-size: 2.1rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--text-color2);
}
.slide-title::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 44px;
    height: 3px;
    background: var(--main-color);
}
.slide-title span {
    color: var(--hover-color);
}
.slide-description {
    max-width: 550px;
    font-size: 1rem;
    margin: 1rem 0 1rem;
    color: var(--text-color2) ;
}
.btn {
    display: inline-flex;
    background: var(--main-color);
    padding: 10px 16px;
    color: var(--text-color2);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0.7rem;
}
.btn:hover {
    background: var(--hover-color);
    transition: 0.2s all linear;
}
/* Heading */
.heading {
    position: relative;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--icons-color);
}
.heading::after {
    content: "";
    position: absolute;
    display: flex;
    left: 50%;
    transform: translate(-50%);
    bottom: -4px;
    width: 44px;
    height: 3px;
    background: var(--main-color);
}
.services-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 1.5rem;
}
.ser-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--container-color);
    border-radius: 0.8rem;
    padding: 15px;
}
.ser-box:hover {
    transform: scale(1.05);
    transition: 0.4s all ease-in-out;
}
.ser-box .bx {
    font-size: 1.7rem;
    padding: 10px;
    background: var(--main-color);
    border-radius: 0.3rem;
    color: var(--text-color2);
}
.ser-box-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 1.3rem 0 0.5rem;
    color: var(--icons-color);
}
.ser-box p {
    font-size: 0.938rem;
}
.ser-box p::selection {
    color: var(--text-color2);
}
/* About */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, auto));
    gap: 2rem;
}
.about-box {
    background: var(--container-color);
    border-radius: 0.5rem;
}
.about-text {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.about-box-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04rem);
    border-radius: 0.5rem;
    box-shadow: 0px 8px 7px 0px rgba(146, 149, 191, 0.6);
}
.about-box-title {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 0.5rem;
    color: var(--icons-color);
}
.about-box p {
    font-size: 0.938rem;
    margin-top: 0.5rem;
}
.about-box p::selection {
   color: var(--text-color2);
}
/* Contact Form*/
.contact-form {
    max-width: 600px;
    margin: auto;
    width: 100%;
    display: grid;
    row-gap: 1rem;
}
.contact-form input,
.contact-form textarea {
    border: none;
    outline: none;
    font-size: 0.9rem;
    padding: 15px;
    color: var(--text-color1);
    background: var(--container-color);
    border-radius: 0.5rem;
}
.contact p {
    font-size: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}
.contact label {
    font-size: 0.9rem;
    margin-bottom: -1rem;
    margin-left: 0.1rem;
    color: var(--icons-color);
}
.contact span {
    color: var(--hover-color);
}
.contact-form .send-btn {
    width: 150px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 12px;
    background: var(--main-color);
    color: var(--text-color2);
    cursor: pointer;
}
.contact-form .send-btn:hover {
    background: var(--hover-color);
    transition: 0.2s all linear;
}

/* Contacts */
.dados {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem !important;
    padding: 30px;
    border: solid;
    border-width: 0.1rem;
    border-radius: 2rem;
    border-color: var(--icons-color);
    background: var(--container-color);
}
.dados h2 {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: var(--icons-color);
}
.dados p {
    font-size: 0.85rem; 
    color: var(--text-color1);
}
.dados-box {
    display: flex;
    flex-direction: column;
}
.dados-title {
    font-size: 1.2rem;
    color: var(--icons-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.contacts .bx {
    font-size: 1.3rem;
    color: var(--icons-color);
}

/* Footer */
.footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem !important;
    padding-bottom: 20px;
}
.footer-box {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    width: 70%;
}
.footer-title {
    font-size: 1.2rem;
    color: var(--icons-color);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.footer-box a {
    color: var(--text-color1);
    font-size: 0.9rem;
    font-weight: 400;
    
    margin-top: 0.5rem;
}
.footer-box a:hover {
    color: var(--main-color);
    transition: 0.1s all linear;
}
.social {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    column-gap: 7px;
}
.social .bx {
    font-size: 30px;
    color: var(--icons-color);
}
.social .bx:hover {
    color: var(--main-color);
    transition: 0.1s all linear;
}
.copyright {
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--hover-color);
}
.copyright p {
    font-size: 0.82rem;
}

/*------------------------------------------------------------------
[8. Alerts]
*/
.alert {
    background-image: none;
    box-shadow: none;
    text-shadow: none;
    padding: 9px 19px 9px 15px;
    border-radius: 3px;
    font-size: 13px;
    border-width: 0;
    -webkit-transition: all 0.2s linear 0s;
    transition: all 0.2s linear 0s;
  }
  .alert.bordered {
    border-width: 1px;
  }
  .alert .link {
    color: #ce8f22;
    font-weight: bold;
  }
  .alert .alert-heading {
    color: #ce8f22 !important;
    margin-bottom: 5px;
    font-weight: 600;
  }
  .alert .btn-small {
    position: relative;
    top: -3.5px;
  }
  .alert .button-set .btn {
    position: relative;
    top: 8px;
  }
  .alert .close {
    background: url("../img/icons/noti-cross.png") no-repeat scroll 0 0 transparent;
    background-position: -9px -10px;
    width: 10px;
    height: 9px;
    position: relative;
    opacity: 0.8;
    top: 4.5px;
    margin-left: 20px;
    font-size: 0;
  }
  .alert .close:hover {
    opacity: 1;
  }
  /* Alert : Color Options
  ------------------------------------
  */
  .alert-danger,
  .alert-error {
    background-color: #fddddd;
    color: #933432;
    border-color: #933432;
  }
  .alert-danger .close,
  .alert-error .close {
    background-position: -95px -10px !important;
  }
  .alert-warning {
    background-color: #fef6dd;
    color: #957d32;
    border-color: #957d32;
  }
  .alert-info {
    background-color: #daeffd;
    color: #2b6a94;
    border-color: #2b6a94;
  }
  .alert-info .close {
    background-position: -67px -10px !important;
  }
  .alert-success {
    background-color: #cff5f2;
    color: #0a7c71;
    border-color: #0a7c71;
  }
  .alert-success .close {
    background-position: -38px -10px !important;
  }
  .alert-default {
    background-color: #fff;
    color: #626262;
    border-color: #e6e6e6;
  }
  .alert-default .close {
    background-position: -67px -10px !important;
  }
  
/* Making Responisve */
@media (max-width: 1050px) {
    .container {
        margin: 0 auto;
        width: 92%;
    }
    .navbar p {
        display: none;
    }
}
@media (max-width: 952px) {
    .nav {
        padding: 14px 0;
    }
    .navbar p {
        display: none;
    }
    .section {
        padding: 3rem 0 2rem;
    }
    .home-slide {
        min-height: 560px;
    }
    .about-content {
        grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    }
    .about-box-img {
        height: 160px;
    }
} 
@media (max-width: 792px) {
    .menu-icon {
        display: flex;
    }
    .navbar {
        position: absolute;
        top: 0%;
        right: -1000%;
        width: 300px;
        height: 100vh;
        background: var(--body-color2);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }
    .navbar.open-menu {
        right: 0;
        transition: 0.2s;
    }
    .navbar p {
        display: none;
    }
    .nav-link {
        display: block;
        margin: 1rem 0;
    }
    .login-btn {
        margin-top: 1.5rem;
    }
    .drop-login {
        left: 0;
        background: var(--body-color3);
    }
}
@media (max-width: 750px) {
    .home-slide {
        min-height: 500px;
    }
    p {
        font-size: 0.875rem;
    }
    .slide-title {
        font-size: 1.7rem;
    }
    .slide-description,
    .ser-box p,
    .dados p{
        font-size: 0.875rem;
    }
    .heading {
        font-size: 1.5rem;
    }
    .footer,
    .dados {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 440px) {
    .home-slide {
        min-height: 454px;
    }
    .about {
        width: 90%;
    }
    .about-box-img {
        height: 190px;
    }
    .footer,
    .dados {
        grid-template-columns: 1fr;
    }
    .copyright {
        padding: 20px 0;
        flex-direction: column;
        row-gap: 1rem;
    }
}
@media (max-width: 392px) {
    .navbar {
        width: 280px;
    }
    .services-content,
    .about-content {
        grid-template-columns: 1fr;
    }
    .footer-title,
    .dados-title {
        font-size: 1rem;
    }
}
@media (max-width: 316px) {
    .navbar {
        width: 100%;
    }
}