@import url("https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

body {
    background-color: #fff;
    color: #333;
}

/* Navbar */
.navbar {
    background: linear-gradient(1deg, #297370, #40b75b);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem;
    max-width: 940px;
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 1rem;
}

.logo {
    width: 180px;
}

.nav-links a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
}

.nav-links a:hover {
    text-decoration: underline;
    color: #ffdf00;
}

.search-icon {
    color: white;
    font-size: 24px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .navbar-container {
        flex-direction: column;
        align-items: center;
    }

    .search-icon img {
        width: 24px;
    }
}
/* Finish Navbar */
/* Section Banner */
.banner {
    display: flex;
    overflow: hidden;
    background: url(/themes/odonto2022/assets/lp-implante/assets/images/patternHeader.webp)
        #1b5d5a repeat;
    background-size: auto;
}

.banner-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 550px;
    margin: auto;
    z-index: 1;
    width: 1920px;
}

.banner-content-center {
    display: flex;
    margin: 0 auto;
    max-width: 1600px;
}

.woman-section {
    background: url("/themes/odonto2022/assets/lp-tododia/assets/images/woman2.webp")
        no-repeat;
    background-size: 750px;
    background-position: 10px 0px;
    width: 665px;
    height: 550px;
}

.woman-section img {
    max-height: 400px;
    height: auto;
    width: auto;
}

.title-box {
    position: absolute;
    bottom: 200px;
    left: 160px;
    background: #114240;
    padding: 16px 20px;
    border-radius: 8px;
    color: white;
    max-width: 596px;
    width: 100%;
}

.title-box h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-box span {
    font-size: 16px;
    font-weight: 400;
    color: #9dce66;
}

.form-box {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 660px;
    min-height: 345px;
    position: absolute;
    top: 80px;
    right: 70px;
}

.form-box h2 {
    font-size: 24px;
    font-weight: 700;
    color: #297370;
    margin-bottom: 20px;
}

.form-box h3 {
    font-size: 14px;
    font-weight: 500;
    color: #297370;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
}

.form-box button {
    width: 100%;
    padding: 12px;
    background-color: #fcd900;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background 0.3s;
    color: #297370;
}

.form-box button:hover {
    background-color: #e5b800;
}

.arrow {
    font-size: 16px;
}

@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        padding: 30px 20px;
        width: 100%;
    }

    .form-box {
        margin: 20px 0 0;
        width: 95%;
        right: 9px;
        height: 380px;
    }

    .title-box {
        position: relative;
        margin-top: 10px;
    }

    .woman-section {
        text-align: center;
        display: none !important;
    }

    .woman-section img {
        max-height: 300px;
    }
}
/* Finish Section Banner */

/* Section Description */
.ortodontia-section {
    padding: 60px 20px;
}

.container {
    max-width: 1570px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.grid-hero {
    max-width: 1270px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.image-wrapper {
    display: inline-block;
    max-width: 680px;
    max-height: 498px;
}

.image-wrapper img {
    display: block;
    width: 100%;
    max-width: 680px;
    max-height: 498px;
    border-radius: 0 50px;
}

.content h2 {
    color: #0d7155;
    font-size: 24px;
    margin-bottom: 16px;
}

.content p {
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .grid-hero {
        flex-direction: column;
        display: flex;
    }

    .buttons {
        flex-direction: column;
    }

    section.accordion-item {
        margin: 10px;
    }
}

/* .btn-outline {
  padding: 10px 20px;
  background-color: white;
  border: 2px solid #1bc47d;
  color: #1bc47d;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
} */

.btn-filled {
    padding: 10px 20px;
    background-color: #ffdf00;
    color: #000;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    color: #297370;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.btn-filled img {
    width: 24px;
    height: 24px;
    margin-left: 8px;
}

/* Grid dos cards */
.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.card {
    background-color: white;
    padding: 20px;
    border: 1px solid #dee2e6;
    text-align: left;
    border-radius: 12px;
    min-height: 272px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.card img {
    width: 48px;
    margin-bottom: 12px;
}

.card h4 {
    font-size: 16px;
    color: #297370;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

p {
    line-height: 150%;
}

.card p {
    font-size: 16px;
    font-weight: 400;
}
/* Finish Section Description */
/* Highlight Section */

.highlight-section {
    color: white;
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
}

.top-pattern {
    height: 40px;
    background-image: url("/themes/odonto2022/assets/lp-implante/assets/images/highlight.webp");
    background-repeat: repeat-x;
    background-size: auto 100%;
}
.content-highlight {
    background-color: #1c6b67;
    min-height: 312px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.content-highlight h2 {
    font-size: 32px;
    font-weight: 700;
}

.content-highlight h2 span {
    color: white;
}

.content-highlight p {
    font-size: 16px;
    color: #fff;
    margin: 30px 0;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item h3 {
    color: #9dce66;
    font-size: 40px;
    font-weight: bold;
    margin: 0 0 5px;
}

.stat-item p {
    margin: 0;
    font-size: 24px;
    color: white;
    font-weight: 700;
}

/* Fnsh Highlight Section */

/* Carousel Section */
section.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.carousel-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #297370;
    margin-bottom: 30px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    max-width: 1570px;
}
section.card-carousel {
    min-width: 250px;
    max-width: 100%;
    margin-right: 20px;
    background: #fff;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.card-carousel img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.btn {
    background: #fcd900;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #e5b800;
}

.carousel-buttons {
    position: absolute;
    top: 50%;
    max-width: 1570px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.nav-btn {
    background: #fd7e14;
    color: white;
    border: none;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .carousel-track {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        transform: none !important;
    }

    .card-carousel {
        flex: 0 0 auto;
        scroll-snap-align: start;
        margin-right: 10px;
    }

    .carousel-buttons {
        display: none;
    }
}

.nav-btn:hover {
    background: #004f56;
}

/* Finish Carousel Section */

/* Footer */
.footer {
    background-color: #297370;
    color: white;
    padding: 30px 20px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-container {
    max-width: 1570px;
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 30px;
}

.help-box,
.app-box {
    display: flex;
    background-color: #185754;
    padding: 20px;
    width: 48%;
    border-radius: 16px;
    justify-content: space-between;
}

.title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 10px;
}
.subtitle {
    font-weight: 400;
    font-size: 14px;
}

.help-box a {
    display: inline-block;
    font-size: 24px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-self: center;
}
.help-box a img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    margin-top: 4px;
}

.app-buttons img {
    height: 48px;
    margin-right: 10px;
    margin-top: 10px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer-columns h4 {
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 700;
}

.footer-columns ul {
    list-style: none;
}
.footer-columns .legal-list {
    list-style: disc;
}

.footer-columns li {
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-columns li strong {
    margin-bottom: 8px;
}

.footer-columns a {
    color: white;
    text-decoration: none;
}

.footer-columns a:hover {
    text-decoration: underline;
    color: #ffdf00;
}

.social-icons img {
    width: 24px;
    margin-right: 10px;
}

.selo {
    margin-top: 25px;
    width: 140px;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #0f4d4b;
    padding-top: 20px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
    }

    .help-box,
    .app-box {
        width: 100%;
    }

    .help-box {
        margin-bottom: 15px;
        flex-direction: column;
        gap: 20px;
    }

    .app-box {
        flex-direction: column;
    }

    .app-buttons {
        display: flex;
        flex-direction: row;
    }

    .app-buttons img {
        height: 42px;
    }
}
/* Finish Footer */

.select2-container--default .select2-selection--single {
    width: 100%;
    min-height: 44px;
    margin-bottom: 10px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    height: auto; /* Remove o height fixo padrão */
    box-sizing: border-box;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding-left: 0;
    line-height: initial;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 100%;
    top: 0;
    right: 10px;
}

.hidden {
    display: none !important;
}

.form-box form {
    display: flex;
    flex-direction: column;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.w45 {
    width: 45% !important;
}

.mt20 {
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    margin-bottom: 2px;
    font-size: 14px;
    color: #297370;
}

.full-width {
    grid-column: span 2;
    text-align: right;
}

label.error {
    font-size: 11px !important;
    color: red !important;
    padding: 0 !important;
}

#step3 {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* evita bloquear cliques nos slides */
}

.owl-nav button {
    background: none;
    border: none;
    font-size: 2rem;
    color: #fff;
    pointer-events: all;
    cursor: pointer;
}

.owl-nav .owl-prev {
    position: absolute;
    left: -40px; /* ajuste conforme necessário */
}

.owl-nav .owl-next {
    position: absolute;
    right: -40px; /* ajuste conforme necessário */
}

.btn-video {
    background: #d4f2ee;
    color: #297370;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn-video img {
    width: 24px;
    height: 24px;
    margin: 0;
}

.btn-avalicao {
    background: #ffdf00;
    color: #297370;
    border: none;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.btn-avalicao img {
    width: 24px;
    height: 24px;
    margin: 0;
}

/* Section Accordion */
.accordion {
    max-width: 1570px;
    margin: 50px auto;
}

.accordion h2 {
    text-align: center;
    color: #297370;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.accordion .subtitle-accordion {
    text-align: center;

    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
}

section.accordion-item {
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    background: #f8f8f8;
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.accordion-header:hover {
    background: #e0e0e0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
    background: #fff;
}

.accordion-content p {
    margin: 15px 0;
}

section.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 15px 20px;
}
/* Finish Section Accordion */

.acc-footer {
    width: 240px;
    margin: 40px auto;
}
