@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
}

.row {
    width: 100%;
    display: flex;
    align-items: center;
}

.align-items-center {
    display: flex;
    align-items: center;
}

header {
    background: url("../images/customer/top-bkg.png") bottom repeat-x #fff;
    padding: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

header .container {
    width: 1000px;
    display: flex;
    justify-content: space-between;
}

.header-logo {
    text-align: center;
    padding: 20px 0;
}

.header-logo a:hover {
    opacity: 0.8;
}

.header-nav {
    width: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.bt-profile,
.bt-logout {
    width: 54px;
    height: 54px;
    display: block;
}

.bt-profile {
    background-image: url("../images/customer/bt-profile.png");
    background-size: contain;
}

.bt-profile:hover {
    background-image: url("../images/customer/bt-profile-hover.png");
}

.bt-logout {
    background-image: url("../images/customer/bt-logout.png");
    background-size: contain;
}

.bt-logout:hover {
    background-image: url("../images/customer/bt-logout-hover.png");
}

.banner {
    background-image: url("../images/customer/banner-01.jpg");
    height: 30vh;
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.banner h1 {
    font-size: 48px;
    margin: 0;
    color: #ffffff;
}

.banner p {
    font-size: 24px;
    margin-top: 10px;
}

.banner .button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #1eae8a;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

nav {
    width: 1000px;
    margin: 0 auto;
    margin-top: 25px;
    padding-bottom: 10px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}

nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    background-color: #16a077;
}

.search-container {
    display: flex;
    align-items: center;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    border: 2px solid #1fbba6;
    background: linear-gradient(to bottom, #1fddc1 50%, #1fbba6 50%);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.search-container input[type="text"] {
    flex-grow: 1;
    height: 100%;
    border: none;
    border-radius: 25px 0 0 25px;
    padding-left: 15px;
    font-size: 16px;
    outline: none;
    color: #fff;
    background: none;
}

.search-container button {
    height: 100%;
    width: 50px;
    border: none;
    border-left: #1ba895 1px solid;
    border-radius: 0 25px 25px 0;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-container button:hover {
    opacity: 0.8;
}

.search-container button svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

/* Estilo para o placeholder */
.search-container input::placeholder {
    color: #fff;
    opacity: 1;
}

.container {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    padding: 20px 0;
}

.sidebar {
    width: 280px;
    height: 800px;
    padding: 20px;
}

.sidebar img {
    position: absolute;
    top: -15px;
    left: -10px;
    z-index: 2;
}

.sidebar h2 {
    font-size: 24px;
    color: #1eae8a;
    margin-top: 0;
}

.menu-container {
    position: relative;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px 0 10px 0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 280px;
}

.bt-fale {
    width: 270px;
    height: 66px;
    display: block;
    background-image: url("../images/customer/btn-fale.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 15px;
}

.bt-fale:hover {
    background-image: url("../images/customer/btn-fale-hover.png");
}

.menu-item {
    font-size: 16px;
    color: #575755;
    padding: 10px;
    padding-left: 40px;
    border-bottom: 2px solid #b9b9b8;
    text-align: left;
    transition: background-color 0.3s ease;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item:hover {
    color: #16a077;
    background-color: #f2f2f2;
}

.menu-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.custom-button {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    background: #1fddc1;
    border: 2px solid #1fbba6;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensures text is on top */
}

.custom-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: #1fbba6;
    z-index: -1; /* Places the bottom half behind the text */
}

.custom-button:hover {
    background: #2a8d80;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.custom-button:hover::after {
    background: #2a8d80;
}

.content {
    width: 80%;
    padding-left: 20px;
}

.content h2 {
    font-size: 1.8rem;
    color: #1eae8a;
    margin-top: 0;
}

.content h3 {
    font-size: 1.2rem;
    color: #1eae8a;
    text-transform: uppercase;
}

/* .video-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
} */

.video-grid {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    gap: 15px;
}

.video-card {
    background-color: #ffffff;
    border-radius: 5px;
    width: 32%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 15px;
    transition: box-shadow 0.3s ease-in-out;
    text-decoration: none;
    color: #575756;
}

.video-card:hover {
    color: #16a077;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

.video-card img {
    width: 100%;
    height: auto;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.video-thumbnail {
    margin-bottom: 15px;
}

.video-title {
    font-size: 18px;
    margin-bottom: 10px;
    padding: 0 15px;
}

.video-short-description {
    font-size: 14px;
    margin-bottom: 10px;
    color: #777;
    padding: 0 15px;
}

.video-duration {
    font-size: 14px;
    color: #777;
    padding: 0 15px;
}

/* Container do Formulário */
.form-container {
    width: 100%;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Título do Formulário */
.form-container h2 {
    font-size: 24px;
    color: #16a077;
    text-align: center;
    margin-bottom: 20px;
}

/* Labels e Inputs */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 16px;
    color: #575755;
    margin-bottom: 5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group input[type="tel"],
.form-group select {
    width: 96%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #d9d9d9;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s;
}

.form-group select {
    width: 100%;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="date"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
    border-color: #16a077;
    outline: none;
}

/* Agrupamento de Campos Cidade e Estado */
.form-group-row {
    width: 98%;
    display: flex;
    justify-content: space-between;
}

.form-group-row .form-group {
    margin-bottom: 0;
}

.form-group-row .form-group:first-child {
    width: 65%;
}

.form-group-row .form-group:last-child {
    width: 30%; /* Deixe 2% para espaçamento entre os campos */
}

/* Estilo dos botões */
.form-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.form-buttons button {
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-buttons .btn-save {
    background-color: #16a077;
    color: #fff;
}

.form-buttons .btn-save:hover {
    background-color: #1fbba6;
}

.form-buttons .btn-cancel {
    background-color: #d9d9d9;
    color: #575755;
}

.form-buttons .btn-cancel:hover {
    background-color: #c4c4c4;
}

/* Estilos para Inputs de Data e Telefone */
.form-group input[type="date"] {
    padding: 9px;
}

.form-group input[type="tel"] {
    padding: 9px;
}

.mt-20 {
    margin-top: 20px;
}
.mb-20 {
    margin-bottom: 20px;
}

.me-20 {
    margin-right: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.dark-gray {
    color: #333 !important;
}

.tag-qtde {
    color: white;
    background-color: #1fbba6;
    border-radius: 5px;
    padding: 4px 15px;
    text-transform: uppercase;
    font-weight: bold;
}

.caps {
    text-transform: uppercase;
}

footer {
    background-color: #1eae8a;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    margin-top: 20px;
}

.footer-text {
    margin: 0;
    font-size: 14px;
}

iframe {
    border-radius: 10px;
    height: 372px;
}

.video-text {
    display: flex;
    flex-direction: column;
    text-align: justify;
}

.menu {
    display: none;
}

.fale-mobile {
    display: none;
}

.banner-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 27%;
}

.banner-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajusta a imagem dentro do contêiner mantendo a proporção */
    display: block;
}

.active {
    opacity: 1;
}

.indicator-container {
    text-align: center;
    position: absolute;
    bottom: 20px; /* Ajustado para não interferir no conteúdo */
    width: 100%;
}

.indicator {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.indicator.active {
    background-color: #717171;
}

/* Estilo responsivo para dispositivos móveis */
@media (max-width: 768px) {
    header .container {
        width: 100%;
        flex-direction: row;
    }

    .container {
        width: 100%;
    }

    nav {
        width: 90%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .breadcrumbs {
        margin-bottom: 15px;
    }

    .header-logo {
        flex: 0 0 58%;
        padding: 10px 0;
        text-align: center;
        margin-left: 15px;
    }

    .header-logo img {
        width: 100%;
    }

    .header-nav {
        flex: 0 0 35%;
        justify-content: center;
        width: auto;
    }

    .banner {
        background-image: url(../images/customer/banner-01.jpg);
        background-repeat: no-repeat;
        height: 212px;
        background-size: 201%;
        padding: 0;
    }

    .sidebar {
        display: none;
    }

    .content {
        width: 90%;
    }

    .video-card {
        width: 100%;
    }

    .form-container {
        width: 85%;
        padding: 20px;
    }

    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="password"],
    .form-group input[type="date"],
    .form-group input[type="tel"],
    .form-group select {
        width: 92%;
        padding: 10px;
    }

    .form-group select {
        width: 100%;
    }

    .form-group input[type="text"]:focus,
    .form-group input[type="email"]:focus,
    .form-group input[type="password"]:focus,
    .form-group input[type="date"]:focus,
    .form-group input[type="tel"]:focus,
    .form-group select:focus {
        border-color: #16a077;
        outline: none;
    }

    /* Agrupamento de Campos Cidade e Estado */
    .form-group-row {
        width: 92%;
        display: flex;
        justify-content: space-between;
    }

    .menu {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
    }

    .menu-list {
        display: none;
        position: relative;
        background-color: #ffffff;
        border-radius: 10px;
        padding: 0;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    .menu-list .menu-item {
        display: flex;
        font-size: 16px;
        padding: 5px 10px 5px 10px;
        border-bottom: 2px solid #b9b9b8;
    }

    .menu-list .menu-item a {
        width: 100%;
    }

    .menu-list .menu-item a:hover {
        color: #ffffff;
    }

    .fale-mobile {
        display: flex;
        justify-content: center;
    }

    .banner-container {
        width: 100%;
        position: relative;
        overflow: hidden;
        padding-top: 49%;
    }

    .indicator-container {
        bottom: 10px;
    }
}

.owl-carousel {
    position: relative; /* Certifique-se de que o contêiner do carousel está posicionado relativamente */
}
.owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
.owl-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    background-color: #ddd !important;
    border-radius: 50%;
    cursor: pointer;
}
.owl-dot.active {
    background-color: #333 !important;
}

.back-button {
    font-family: 'Courier New', Courier, monospace;
    padding: 4px 14px 3px;
    border-radius: 50px;
    color: white;
    font-size: 2rem;
    margin-right: 10px;
    text-decoration: none;
}


/** **********************************/
.form-group-row .w50:first-child {
    width: 48% !important;
}
.form-group-row .w50:last-child {
    width: 48% !important;
}

.text-danger {
    color: rgba(241, 85, 108) !important;
}

.parsley-errors-list {
    margin: 0;
    padding: 0;
}
.parsley-errors-list > li {
    list-style: none;
    color: #f1556c;
    margin-top: 5px;
    padding-left: 0;
    position: relative;
}
.parsley-errors-list > li:before {
    content: "\F0159";
    font-family: "Material Design Icons";
    position: absolute;
    left: 2px;
    top: -1px;
}
.parsley-error {
    border-color: #f1556c;
}

.form-group input:readonly {
    background-color: #eeeeee !important;
    border: 1px solid #ced4da !important;
    border-radius: 4px !important;
    color: #6c757d !important;
    pointer-events: none !important;
}
.form-group input:disabled,
.form-group input[readonly] {
    background-color: #eeeeee !important;
    border: 1px solid #ced4da !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}
.form-group select[readonly] {
    background-color: #eeeeee !important;
    border: 1px solid #ced4da !important;
    cursor: not-allowed !important;
    opacity: 1 !important;
}

.select2 { width: 100% !important; }
select[readonly].select2-hidden-accessible + .select2-container {
    pointer-events: none;
    touch-action: none;

    .select2-selection {
        background: #eeeeee !important;
        border: 1px solid #ced4da !important;
        box-shadow: none;
    }

    .select2-selection__arrow,
    select[readonly].select2-hidden-accessible
        + .select2-container
        .select2-selection__clear {
        display: none;
    }
}
.select2-container--default 
    .select2-selection--single 
        .select2-selection__rendered {
    font-size: 14px !important;
    color:#000 !important;
}

.submit-search {
    position: absolute;
    top: 8px;
    right: -10px;
    z-index: 10;
    border: none;
    background: transparent;
    outline: none;
}

.submit-line {
    position: relative;
    width: 200px;
}
