@charset "utf-8";

@import url('top.css');
@import url('router.css');
@import url('service.css');
@import url('clients.css');
@import url('faq.css');
@import url('about.css');
@import url('footer.css');

@import url('whatsapp.css');
/*
@import url('cookies.css');
*/

:root {
    --pri-color: #013a56ff;
    --sec-color: #f29620ff;
    --std-color: #333333ff;
    --wts-color: #19ae5bff;

    --pri-color-transparent: #013a5655;
    --sec-color-transparent: #f2962055;
    --white-transparent: #ffffff22;

    --soft: #e4e4e4;
    --gray: #4d4d4dff;
    --white: #ffffffff;
    --black: #000000ff;
    --shadow: #00000022;
}

* {
    border: 0;
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    background-repeat: no-repeat;
    scroll-behavior: smooth;
    scroll-margin-top: 100px;
    font-family: "Rubik", sans-serif;
    color: var(--pri-color);
    transition: all ease 0.3s;
}

/* Scrollbar Remover Desktop */
body *::-webkit-scrollbar {display: none;}
body * {-ms-overflow-style: none; scrollbar-width: none;}

h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: var(--pri-color);
}

h2 {
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    color: var(--pri-color);
    text-transform: uppercase;
}

a {
    font-size: inherit;
    text-decoration: underline;
    color: var(--pri-color);
}

p {
    font-weight: 300;
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: var(--std-color);
}

strong {
    font-weight: 500;
    color: var(--std-color);
}

img {
    display: block;
    width: 100%;
}

li {
    list-style: none;
}

button {
    background-color: transparent;
}

iframe {
    display: block;
}

input::placeholder {
	color: var(--pri-color);
}

input:focus::placeholder {
	color: transparent;
}

/* DEFAULT CLASS */
.wrapper {
    width: 100%;
    margin: 0 auto;
}

.content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* DEFAULT BUTTON */
.btn {
    background-color: var(--pri-color);
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 8px 30px;
    cursor: pointer;
    transition: all ease 0.3s
}

.btn .icon {
    width: 20px;
    height: 20px;
    background-image: url(../media/template/icon-whatsapp-white.svg);
    background-size: 20px;
}

.btn .text {
    color: var(--white);
    font-weight: 500;
    font-size: 18px;
}

/* RESPONSIVE VIDEO */
.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    width: 100%;
}

.video-responsive video,
.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position:absolute;
    border-radius: 7px;
}

/* RESPONSIVIDADE */
@media screen and (max-width: 1300px) {
	.content {
		padding: 0 2%;
	}	
}

@media screen and (max-width: 500px) {
    h2 {
        font-size: 1.2rem;
    }

    h3 {
        font-size: 1.05rem;
    }
    
    p {
        font-size: 1rem;
    }
}