body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}
@font-face {
    font-family: 'SourceSansProBlack';
    src: url('/fonts/SourceSansPro-Black.otf') format('opentype');
}
@font-face {
    font-family: 'SourceSansProBold';
    src: url('/fonts/SourceSansPro-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'SourceSansProLight';
    src: url('/fonts/SourceSansPro-Light.otf') format('opentype');
}
@font-face {
    font-family: 'SourceSansProRegular';
    src: url('/fonts/SourceSansPro-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'SourceSansProSemi';
    src: url('/fonts/SourceSansPro-Semibold.otf') format('opentype');
}
@font-face {
    font-family: 'OpenSans';
    src: url('/fonts/OpenSans_Condensed-Medium.ttf') format('opentype');
}
@font-face {
    font-family: 'OpenSansExtraBold';
    src: url('/fonts/OpenSans_SemiCondensed-ExtraBold.ttf') format('opentype');
}
@font-face {
    font-family: 'Segoe';
    src: url('/fonts/Segoe.ttf') format('opentype');
}
:root {
    --source-black: 'SourceSansProBlack', sans-serif;
    --source-bold: 'SourceSansProBold', sans-serif;
    --source-light: 'SourceSansProLight', sans-serif;
    --source-regular: 'SourceSansProRegular', sans-serif;
    --source-semibold: 'SourceSansProSemi', sans-serif;
    --open-sans: 'OpenSans', sans-serif;
    --open-extra-bold: 'OpenSansExtraBold', sans-serif;
    --segoe: 'Segoe', sans-serif;
    --vermelho: #f00;
    --white: white;
    --black: black;
    --black-transparent: #0000006e;
}
/* Estilo do Header */
header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    background-color: transparent; /* Cor de fundo principal */
    padding: 30px 0;
    color: white;
    z-index: 1000;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    font-family: var(--liberation-regular);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.5s ease, transform 0.5s ease;
}
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.5s ease, transform 0.5s ease; /* Cor de fundo principal */
    padding: 15px 0;
    color: white;
    z-index: 1000;
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);*/
    font-family: var(--liberation-regular);
    align-items: center;
}
.logo {
    font-size: 1.5em;
    float: left;
    margin-left: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--white);
    padding: 0;
    align-items: center;
    background-color: var(--black);
}
.logo .logo-name{
    font-family: var(--open-extra-bold);
    display: flex;
    font-size: 25px;
    align-items: baseline;
    text-align: center;
    justify-content: center;
}
.logo .logo-username{
    font-size: 13px;
    display: flex;
    align-items: end;
    background-color: var(--white);
    color: var(--black);
    padding: 2px 4px;
    font-family: var(--source-regular);
}
.logo .logo-div{
    color: var(--vermelho);
    display: flex;
    align-items:end;
    font-size: 40px;
    width: 8px;
    height: 8px;
    margin-left: 3px;
    background-color: var(--vermelho);
}
.logo .logo-name .a{
    color: var(--vermelho);
}
.logo{
    width: 140px;
}
header nav {
    float: right;
    display: flex;
    align-items: center;
}
header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    margin-right: 30px;
}
header nav ul li {
    margin-left: 20px;
    display: flex;
    align-items: center;
}
header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-family: var(--source-bold);
}
header nav ul li .active{
    color: var(--vermelho);
}
header nav ul li a:hover {
    color: var(--vermelho);/* Cor ao passar o mouse */
}
.show {
    display: flex;
}
@keyframes entrada {
    from{
        width: 0%;
        opacity: 0;
    }
    to{
        width: 100%;
        opacity: 1;
    }
}
@media screen and (max-width: 980px) {
    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--black)!important; /* Cor de fundo principal */
        padding: 15px 0;
        color: white;
        z-index: 1000;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        font-family: var(--liberation-regular);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.5s ease, transform 0.5s ease;
    }
    .header-top{
        display: none!important;
    }
    header nav {
        animation: entrada 0.6s linear;
        position: fixed;
        top: 65px;
        width: 100%;
        height: 100vh;
        z-index: 1000;
        display: none;
        background-color: var(--white);
        list-style: none;
        margin: 0;
        padding: 0;
        align-items: center;
        padding-top: 20px;
    }
    header ul{
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        gap: 20px;
        text-align: left;
        background-color: var(--white);
    }
    header nav ul li {
        margin-left: 20px;
        width: 100%;
        margin-right: 30!important;
        display: flex;
        justify-content: left;
        text-align: left;
        margin-left: 30px!important;
    }
    header nav ul li a {
        color: var(--black);
        text-decoration: none;
        font-size: 20px;        
        border-bottom: 1px solid var(--black-transparent);
        padding-bottom: 8px;
        width: 100%;
        transition: color 0.3s ease;
        font-family: var(--source-bold);
        justify-content: left;
        text-align: left;
    }
    header nav ul li a:hover {
        color: var(--vermelho);
        font-family: var(--source-light); /* Cor ao passar o mouse */
    }
    .menu{
        margin-right: 20px;
        font-size: 30px;
        cursor: pointer;
        display: flex!important;
    }
    .logo{
        width: 90px;
    }
}
.menu{
    display: none;
}
.header-top{
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: var(--black);
    height: 35px;
    align-items: center;
}
.header-top .contact{
    color: var(--white);
    display: flex;
    align-items: center;
    margin-left: 25px;
    text-align: center;
    gap: 8px;
    font-size: 14px;
    font-family: var(--source-regular);
}
/* Container do Select */
.custom-select {
    position: relative;
    font-family: var(--liberation-regular);
    align-items: center;
    margin-right: 20px;
    width: auto;
}
/* Estilo básico do Select */
.custom-select select {
    display: none; /* Esconde o select padrão */
}
/* Estilo da área personalizada do Select */
.select-selected {
    background-color: transparent;
    color: var(--black);
    padding: 0px 15px;
    border-radius: 0px;
    cursor: pointer;
    display: block;
    display: flex;
    align-items: center;
    font-size: 13px;
    text-align: right;
    font-family: var(--source-light);
    justify-content: space-between;
}
/* Estilo das opções da lista */
.select-items div, .select-selected {
    color: white;
    padding: 10px 15px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}
.language{
    color: var(--vermelho);
    font-size: 18px;
    margin-right: 10px;
}
/* Estilo das opções ao passar o mouse */
.select-items div:hover {
    background-color: var(--black);
    color: var(--white)!important;
}
/* Estilo das opções abertas */
.select-items {
    position: absolute;
    top: 40px;
    background-color: var(--white);
    z-index: 9999;
    width: 100%;
    border-radius: 0px;
    display: none;
    align-items: center;
    text-align: left;
    color: var(--black);
    height: 70vh;
    overflow-x: auto;
}
.select-items div{
    align-items: center;
    display: flex;
    text-transform: uppercase;
    color: var(--black)!important;
    font-size: 12px;
    font-family: var(--source-bold);
}
/* Mostrar opções ao clicar */
.select-items.show {
    display: block;
}
/* Ícone de seta */
.select-arrow {
    float: right;
    margin-left: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 3px;
    transform: rotate(45deg);
}
/* Estilo da seta ao abrir o select */
.select-selected.select-arrow-active .select-arrow {
    transform: rotate(-135deg);
}

/* Container do Select */
.custom-select-header {
    position: relative;
    font-family: var(--liberation-regular);
    display: flex;
    align-items: center;
}
/* Estilo básico do Select */
.custom-select-header select {
    display: none;
}
/* Estilo da área personalizada do Select */
.select-selected-header {
    background-color: transparent;
    color: var(--black);
    padding: 0px 5px;
    border-radius: 0px;
    cursor: pointer;
    display: block;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-family: var(--source-light);
}
/* Estilo das opções da lista */
.select-items-header div, .select-selected-header {
    color: white;
    padding: 0px 8px;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
    cursor: pointer;
    user-select: none;
    align-items: center;
}
.language-header{
    color: var(--vermelho);
    font-size: 15px;
    margin-left: 10px;
}
.regions-header{
    padding: 8px 10px;
    margin-top: 5px;
    margin-bottom: 5px;
}
/* Estilo das opções ao passar o mouse */
.select-items-header div:hover {
    background-color: var(--black);
    color: var(--white)!important;
}
/* Estilo das opções abertas */
.select-items-header {
    position: absolute;
    top: 40px;
    background-color: var(--white);
    z-index: 99999;
    width: 100%;
    border-radius: 0px;
    display: none;
    align-items: center;
    text-align: left;
    color: var(--black);
    height: 70vh;
    overflow-x: auto;
}
.select-items-header div{
    align-items: center;
    display: flex;
    text-transform: uppercase;
    color: var(--black)!important;
    font-size: 12px;
    font-family: var(--source-bold);
    padding-top: 4px;
    padding-bottom: 4px;
}
/* Mostrar opções ao clicar */
.select-items-header.show-header {
    display: block;
}
/* Ícone de seta */
.select-arrow-header {
    float: right;
    margin-left: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 3px;
    transform: rotate(45deg);
}
.custom-select img {
    width: 20px;
    height: auto;
    margin-right: 10px!important;
}
.custom-select-header img {
    width: 20px;
    height: auto;
    margin-right: 10px!important;
}
/* Estilo da seta ao abrir o select */
.select-selected-header.select-arrow-active-header .select-arrow-header {
    transform: rotate(-135deg);
}
/* Estilo do Banner */
.banner {
    height: calc(100vh - 35px); /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
}
.banner .banner-text{
    z-index: 2;
    padding: 0 250px;
}
.banner .banner-text h1{
    color: var(--vermelho);
    font-family: var(--source-black);
}
.banner .banner-text h1 span{
    color: var(--white);
    font-family: var(--source-black);
}
.banner .banner-text p{
    color: var(--white);
    font-family: var(--source-light);
    font-size: 20px;
}
.banner .banner-bg{
    position: absolute;
    top: 0;
    background-color: var(--black-transparent);
    width: 100%;
    height: 100%;
    display: flex;
    background-position: center;
}
.banner h1 {
    font-size: 4em;
    text-transform: uppercase;
    margin: 0;
}

/*servicos*/
.container-service {
    max-width: 100%;
    margin: 0 auto;
    padding: 40px 10px;
    height: 100%;
    background-color: var(--black);
    justify-content: center;
}
.container-service .title {
    text-align: center;
    font-family: var(--source-bold);
    font-size: 2em;
    margin-bottom: 40px;
    text-transform: uppercase;
    color: var(--white);
}
.news-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}
.news-card {
    background-color: white;
    color: #333;
    flex: 1 1 300px;
    margin: 10px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 25%;
    position: relative;
    cursor: pointer;
}
.news-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.news-card .content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.news-card .content .category {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    background-color: var(--vermelho);
    color: white;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 0;
    display: inline-block;
    margin-bottom: 10px;
    font-family: var(--source-black);
}
.news-card .content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    font-family: var(--source-black);
}
.news-card .content p {
    font-size: 1em;
    margin-bottom: 20px;
    font-family: var(--source-light);
}
.news-card .content a {
    color: white;
    background-color: var(--vermelho);
    padding: 10px 15px;
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    font-family: var(--source-semibold);
}
.news-card .content a:hover {
    background-color: #FF4C4C;
}
.arrow {
    background-color: #FF4C4C;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    font-size: 1.5em;
    display: none;
}
.arrow-left {
    margin-right: 20px;
}
.arrow-right {
    margin-left: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 2em;
    }
    .news-container {
        justify-content: center;
        gap: 15px;
    }
    .news-card {
        max-width: 300px;
        flex: 1 1 100%;
    }
    .arrow {
        display: none;
    }
    .logo {
        font-size: 1.5em;
        font-weight: bold;
        float: left;
        margin-left: 15px;
        display: flex;
        align-items: center;
    }
    .logo .logo-name{
        font-family: var(--open-extra-bold);
        display: flex;
        font-size: 16px;
        align-items: baseline;
        text-transform: lowercase;
    }
    .logo .logo-username{
        font-size: 10px;
        display: flex;
        padding: 1px 2px;
    }
    .logo .logo-div{
        width: 5px;
        height: 5px;
    }
    .banner{
        height: 70vh!important;
        background-position: center!important;
        background-clip: border-box;
    }
    .banner-contact{
        height: 40vh!important;
    }
    .banner .banner-text{
        z-index: 10;
        padding: 0 50px!important;
    }
    .banner .banner-text h1{
        color: var(--vermelho);
        font-family: var(--source-black);
        margin-top: 30px;
        font-size: 40px;
        line-height: 1;
    }
    .banner .banner-text h1 span{
        color: var(--white);
        font-family: var(--source-black);
    }
    .banner .banner-text p{
        color: var(--white);
        font-family: var(--source-light);
        font-size: 16px;
    }
}

@media (max-width: 406px) {
    .container {
        padding: 20px 10px;
    }
    .banner .banner-text h1{
        color: var(--vermelho);
        font-family: var(--source-black);
        font-size: 28px!important;
    }
    .banner .banner-text h1 span{
        color: var(--white);
        font-family: var(--source-black);
    }
    .banner .banner-text p{
        color: var(--white);
        font-family: var(--source-light)!important;
        font-size: 16px!important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 10px;
    }
    .title {
        font-size: 1.8em;
    }
    .news-card .content h3 {
        font-size: 1.1em;
    }
    .news-card .content p {
        font-size: 0.85em;
    }
    .banner .banner-text{
        z-index: 10;
        padding: 0 20px!important;
    }
    .banner .banner-text h1{
        color: var(--vermelho);
        font-family: var(--source-black);
        font-size: 30px;
    }
    .banner .banner-text h1 span{
        color: var(--white);
        font-family: var(--source-black);
    }
    .banner .banner-text p{
        color: var(--white);
        font-family: var(--source-light)!important;
        font-size: 14px;
    }
}
@media screen and (max-width: 940px) {
    .banner .banner-text{
        z-index: 2;
        padding: 0 150px;
    }
    .banner .banner-text h1{
        color: var(--vermelho);
        font-family: var(--source-black);
        font-size: 40px;
        line-height: 1.2;
    }
    .banner .banner-text h1 span{
        color: var(--white);
        font-family: var(--source-black);
    }
    .banner .banner-text p{
        color: var(--white);
        font-family: var(--source-light)!important;
        font-size: 18px;
    }
}

@media screen and (max-width: 1075px) {
    .banner .banner-text{
        z-index: 2;
        padding: 0 200px;
    }
    .banner .banner-text h1{
        color: var(--vermelho);
        font-family: var(--source-black);
        font-size: 40px;
        line-height: 1.5;
    }
    .banner .banner-text h1 span{
        color: var(--white);
        font-family: var(--source-black);
    }
    .banner .banner-text p{
        color: var(--white);
        font-family: var(--source-light)!important;
        font-size: 25px;
    }
}
/*plano de contratacao*/
.container-plan {
    max-width: 100%;
    padding: 50px 25px;
    height: auto;
    background-color: var(--white);
    justify-content: center;
    padding-top: 00px;
}
.container-plan .title {
    text-align: center;
    font-family: var(--source-bold);
    font-size: 2em;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.help-section {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.help-box {
    background-color: var(--black);
    color: white;
    flex: 1 1 300px;
    width: 30px;
    padding: 0;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.help-box h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    text-align: left;
    font-family: var(--source-black);
    margin: 10px 40px;
    margin-top: 30px;
}
.help-box p {
    text-align: left;
    font-size: 1em;
    margin-bottom: 20px;
    font-family: var(--source-light);
    margin: 10px 40px;
}
.help-box .more {
    color: white;
    padding: 0;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    font-family: var(--source-semibold);
    margin: 20px 40px;
    background-color: var(--vermelho);
    width: 150px;
    padding: 5px 10px;
    font-size: 14px;

}
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin: 0 40px;
    margin-top: 15px;
}
.service-list li {
    font-size: 0.9em;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--vermelho);
    padding: 15px 0;
    width: 100%;
}
.service-list li a {
    width: 100%;
    color: var(--white);
    font-family: var(--source-semibold);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}
.service-list li a span{
    font-size: 20px;
}
.service-list li a:hover {
    transform: scale(1.1);
}
@media (max-width: 768px) {
    .container-plan {
        max-width: 100%;
        padding: 20px 25px;
        height: 100%;
        background-color: var(--white);
        justify-content: center;
    }
    .help-section {
        flex-direction: column;
        align-items: center;
    }
    .help-box {
        flex: 1 100%;
        width: 100%;
        height: auto!important;
    }
    .title {
        font-size: 1.5em;
    }
}


/*contacto*/
.banner-contact {
    height: 70vh; /* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
    width: 100%;
}
.banner-service {
    height: 70vh;/* Substitua pelo caminho da sua imagem */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
    color: white;
    transition: background-image 1s ease-in-out;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    position: relative;
    width: 100%;
}
.banner-contact .banner-contact-text{
    z-index: 2;
    padding: 20px;
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}
.banner-contact .banner-contact-text-c{
    z-index: 2;
    padding: 20px;
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}
.banner-contact-text-c a{
    background-color: var(--vermelho);
    font-family: var(--source-regular);
    font-size: 15px;
    padding: 8px 20px;
    color: var(--white);
    width: 100px;
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    border-radius: 2px;
    align-items: center;
}
.banner-contact-text-c a span{
    font-size: 20px;
}
.banner-contact .banner-contact-text h1 span{
    color: var(--white);
    font-family: var(--source-black);
    text-shadow: none;
}
.banner-contact .banner-contact-text-c h1 span{
    color: var(--black);
    font-family: var(--source-black);
    text-shadow: none;
    font-size: 25px;
}
.banner-contact .banner-contact-bg{
    position: absolute;
    top: 0;
    background-color: var(--black-transparent);
    width: 100%;
    height: 100%;
    display: flex;
    background-position: center;
}
.banner-contact .banner-contact-back{
    position: absolute;
    top: 0;
    background-color: rgba(255, 255, 255, 0.781);
    width: 100%;
    height: 100%;
    display: flex;
    background-position: center;
}
.contact-form-container {
    max-width: 40%;
    margin: 50px auto;
    padding: 0;
    border-radius: 3px;
    padding: 0 15px;
}
.contact-form-container h2 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--black);
    text-transform: uppercase;
    font-family: var(--source-bold);
}
.contact-form .form-group {
    margin: 0;
    width: 100%;
    margin-bottom: 15px;
}
.contact-form .form-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--black);
    font-family: var(--source-light);
}
.contact-form select{
    width: 100%;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid var(--black-transparent);
    border-radius: 1px;
    font-family: var(--source-light);
    box-sizing: border-box;
}
.custom-select-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.custom-select-container select {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 1px solid var(--black-transparent);
    border-radius: 1px 0 0 1px; /* Bordas arredondadas à esquerda */
    font-family: var(--source-light);
    margin-right: -1px; /* Remover margem direita */
    appearance: none; /* Remover estilo padrão do select */
    background-color: #fff;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgICA8cGF0aCBkPSJNMSAxbDYgNmw2LTYiIHN0cm9rZT0iIzMzMyIgLz4KPC9zdmc+');
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.custom-select-container input#prefix-field {
    width: 80px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid var(--black-transparent);
    border-radius: 0 1px 1px 0; /* Bordas arredondadas à direita */
    font-family: var(--source-light);
    background-color: #f5f5f5; /* Cor de fundo do campo de prefixo */
}
.contact-form .form-group textarea {
    resize: vertical;
}

.contact-form .form-group .required {
    color: #e60000;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--vermelho);
    outline: none;
    box-shadow: 0 0 5px rgba(255, 51, 0, 0.5);
}

.contact-form .submit-btn {
    width: 100%;
    padding: 12px;
    background-color: var(--vermelho);
    color: var(--white);
    font-size: 16px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: var(--source-black);
}

.contact-form .submit-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .contact-form-container {
        max-width: 100%;
        margin: 20px auto;
        padding: 0;
        border-radius: 3px;
    }
    .contact-form{
        padding: 10px;
    }
    .contact-form .submit-btn {
        width: 100%;
        padding: 12px;
        background-color: var(--vermelho);
        color: var(--white);
        font-size: 16px;
        border: none;
        border-radius: 2px;
        cursor: pointer;
        margin: 0;
        transition: background-color 0.3s ease;
        font-family: var(--source-black);
    }
    .contact-form .form-group label,
    .contact-form .submit-btn {
        font-size: 16px;
    }
    .banner-contact-text h1{
        font-size: 20px;
    }
}
/*footer*/
footer{
    background-color: var(--white);
    border-top: 1px solid var(--black-transparent);
}
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    color: var(--black);
}

.footer-left {
    max-width: 45%;
}

.footer-logo {
    width: 150px;
}

.footer-tagline {
    font-size: 20px;
    text-transform: uppercase;
    margin-top: 10px;
    font-family: var(--source-black);
}

.footer-tagline p {
    margin: 5px 0;
    font-family: var(--source-light);
}

.social-media {
    display: flex;
    list-style: none;
    padding: 0;
}

.social-media li {
    margin-right: 10px;
}

.social-media img {
    width: 24px;
    height: 24px;
}
.newsletter {
    margin-top: 20px;
    width: 100%;
}
.live{
    display: flex;
    align-items: center;
}
.live span{
    margin-right: 8px;
    font-size: 30px;
    color: var(--vermelho);
}
.live p{
    font-family: var(--source-black);
    font-size: 16px;
}
.footer-left p span{
    font-family: var(--source-light);
    font-size: 18px;
}
.footer-left strong{
    font-family: var(--source-bold);
    font-size: 16px;
}
.newsletter textarea{
    font-family: var(--source-regular);
    border: 0;
    border-radius: 2px;
    border: 2px solid #ccc;
    font-size: 15px;
    background-color: transparent;
    outline: none;
    width: 100%;
    padding: 0px;
    box-sizing: border-box;
    padding: 10px;
}
.newsletter textarea:focus{
    border-color: var(--vermelho);
}
.newsletter p{
    font-family: var(--source-light);
}
.signup-btn {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: var(--vermelho);
    color: var(--white);
    text-decoration: none;
    border-radius: 2px;
    width: 100px!important;
    font-family: var(--source-bold);
}
.signup-btn:hover {
    background-color: #cc0000;
}
.footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 20px;
    text-align: center;
    margin-bottom: 10px;
}
.footer-bottom p {
    margin: 10px 0;
    font-family: var(--source-light);
}
.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-family: var(--source-semibold);
}

.footer-links li {
    margin: 0 15px;
}
.footer-links a {
    color: #000;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--vermelho);
}
@media (max-width: 768px) {
    footer{
        padding: 20px;
    }
    .footer-content {
        flex-direction: column;
        width: 100%;
    }
    .footer-left, .footer-right {
        max-width: 100%;
        text-align: left;
    }
    .social-media {
        justify-content: center;
    }
}

/*info*/
.info-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
}
.info-section .db{
    background-color: var(--black);
    border: none;
    color: var(--white);
}
.info-section .border-none{
    border: none;
}
.info-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 0px;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
    margin-bottom: 20px;
    border-left: 1px solid #ccc;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.info-section .db h3 {
    font-size: 1.7em;
    margin-bottom: 10px;
    color: var(--white);
    font-family: var(--source-bold);
}
.info-section .db p {
    font-size: 1em;
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--source-light);
}
.info-box h3 {
    font-size: 1.7em;
    margin-bottom: 10px;
    color: var(--black);
    font-family: var(--source-bold);
    text-transform: uppercase;
}
.info-box p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #666;
    font-family: var(--source-light);
}
.info-box a {
    font-size: 1em;
    color: var(--vermelho);
    border-top: 1px solid #ccc;
    text-decoration: none;
    font-weight: bold;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-family: var(--source-light);
}
.info-box a span {
    margin-left: 5px;
    transition: transform 0.3s ease;
}
.info-box a:hover span {
    transform: translateX(5px);
}
.info-links {
    list-style: none;
    padding: 0;
}
.info-links li {
    display: flex;
    margin-bottom: 10px;
    grid-area: 10px;
    align-items: center;
    width: 100%;
}
.info-box .info-links li span{
    color: var(--vermelho);
    font-size: 20px;
}
.info-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: bold;
}
.info-links a:hover {
    color: #e60000;
}
@media screen and (max-width: 800px) {
    .info-section {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-between;
        max-width: 1200px;
        margin: 10px auto;
        padding: 20px;
    }
    .border-none{
        border-left: 1px solid #ccc!important;
    }
    .info-box {
        min-width: 250px;
        padding: 20px;
        background-color: var(--white);
        border-radius: 0px;
        /*box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);*/
        margin-bottom: 20px;
        border-left: 1px solid #ccc;
    }
    .info-box h3{
        font-size: 18px!important;
    }
    .title-header{
        margin-top: 0;
        color: var(--black)!important;
        text-transform: uppercase;
        text-align: center;
        margin-top: 0!important;
        font-size: 18px!important;
        font-family: var(--source-bold);
        margin: 15px 20px!important;
    }
    .review-section {
        padding: 20px;
        box-shadow: none!important;
        margin: 10px;
        border: 0;
    }
    .rating-number {
        font-size: 25px!important;
        color: var(--vermelho);
    }
    .stars {
        font-size: 18px!important;
        cursor: pointer;
    }
    .chat h4 p{
        font-size: 14px!important;
    }
    .user-avatar{
        width: 35px!important;
        height: 35px!important;
        display: flex!important;
        align-items: center!important;
        font-size: 16px!important;
        margin-right: 10px!important;
    }
    .review-rating{
        font-size: 14px!important;
    }
}

/*como podemos ajudar*/
.faq-section, .testimonials-section, .contact-section, .special-offers-section {
    margin-bottom: 8px;
    padding: 0;
    border-radius: 3px;
    text-decoration: none;
}
.testimonials-section {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-section .review-section{
    width: 100%;
}
.testimonials-section .review-content{
    width: 100%;
}
.faq-section{
    background-color: var(--white);
    box-shadow: none;
}
.title-header{
    margin-top: 20px;
    color: var(--black)!important;
    text-transform: uppercase;
    text-align: center;
    margin-top: 50px;
    font-size: 20px;
    font-family: var(--source-bold);
    margin: 50px 20px;
}
.special-offers-section .offers{
    display: flex;
    flex:  wrap;
    gap: 20px;
}
.container-help h2 {
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    font-family: var(--source-bold);
}
.faq-item, .solution-item, .testimonial-item, .service-item, .problem-item, .offer-item {
    margin-bottom: 10px;
}
.intro-video p, .faq-section p, .solutions-section p, .testimonials-section p, .services-section p, .contact-section p, .insights-section p, .problem-solving-section p, .special-offers-section p {
    margin: 0;
    align-items: center;
    color: var(--black);
    font-size: 16px;
    font-family: var(--source-light);
}
.faq-item, .solution-item, .testimonial-item, .service-item, .problem-item, .offer-item {
    padding: 10px;
    background-color: var(--white);
    border-radius: 0;
    align-items: center;
}
.faq-section h3{
    font-size: 20px!important;
    font-family: var(--source-bold);
}
.faq-item h3, .solution-item h3, .testimonial-item h3, .service-item h3, .problem-item h3, .offer-item h3 {
    margin: 0;
    margin-bottom: 5px;
    color: var(--black);
    text-transform: uppercase;
    font-family: var(--source-bold);
}
.faq-item a, .solution-item a, .testimonial-item a, .service-item a, .problem-item a, .offer-item a {
    text-decoration: none;
    align-items: center;
    color: var(--vermelho);
    font-family: var(--source-light);
}
.cta-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: 10px;
}
.cta-button:hover {
    background-color: #0056b3;
}
.services-section .service-item{
    display: flex;
    justify-content: space-between;
}

/*comentario*/
.review-section {
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 3px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}
.review-section .more{
    position: absolute;
    bottom: 10px;
    right: 20px;
    color: var(--vermelho);
    cursor: pointer;
}
h1 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.address {
    margin: 5px 0 20px;
    color: #777;
}

.rating {
    display: flex;
    align-items: center;
}
.rating-overview {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: space-between;
}
.rating-number {
    font-size: 32px;
    color: var(--vermelho);
    margin-right: 10px;
}
.stars {
    font-size: 24px;
    color: var(--vermelho);
    cursor: pointer;
}
.total-reviews {
    margin-left: auto;
    color: #777;
}
.reviews-list {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.review-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    cursor: pointer;
}
.review-item h4{
    font-size: 18px;
    font-family: var(--source-light);
}
.user-info {
    display: flex;
    align-items: center;
}
.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d3d3d3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    margin-right: 20px;
}
.review-item .chat{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.input-group-review{
    display: flex;
}
.order{
    display: flex;
    flex-direction: column;
}
.order input, .order textarea .order select{
    outline: none;
    padding: 8px 10px;
    font-family: var(--source-light);
    box-sizing: border-box;
    font-size: 16px;
    border: 0;
}
.order select{
    padding: 10px;
    font-family: var(--source-light);
    border: 2px solid #ccc;
    width: 100%;
    margin-bottom: 8px;
    font-size: 16px;
    outline: none;
    color: var(--vermelho);
}
.order select:focus{
    border-color:  var(--vermelho);
}
.order select option{
    color: var(--vermelho);
    font-size: 16px;
}
.review-rating {
    font-size: 18px;
    color: var(--vermelho);
    margin-bottom: 5px;
}

.like-button {
    margin-top: 10px;
    color: #007bff;
    cursor: pointer;
}

.response {
    margin-left: 50px;
    margin-top: 10px;
    padding-left: 10px;
    border-left: 2px solid #ddd;
}

.response p {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}
.faq-section .info-section{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 40px auto;
}

.container-help {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.services {
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}


