/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: relative;
    width: 60px;
    height: 60px;
}

.loader-outter {
    position: absolute;
    border: 4px solid #007bff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s infinite linear;
}

.loader-inner {
    position: absolute;
    border: 4px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    top: 10px;
    left: 10px;
    animation: spin 1s infinite reverse;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.header-inner .logo img {
    max-height: 80px;
    padding: 10px 0;
}

.main-menu {
    position: relative;
}

.main-menu .navigation .nav.menu {
    list-style: none;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 0;
}

.nav.menu li {
    position: relative;
    margin: 0 20px;
}

.nav.menu li a {
    display: block;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 30px 0;
    transition: color 0.3s ease;
}

.nav.menu li a:hover,
.nav.menu li.active a {
    color: #007bff;
}

/* Botão Mobile */
.mobile-menu {
    display: none;
    text-align: right;
    padding: 20px 0;
}

.mobile-btn {
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
}

/* Media Queries para Responsividade */
@media (max-width: 991px) {
    .main-menu .navigation .nav.menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .main-menu .navigation .nav.menu.active {
        display: flex;
    }

    .nav.menu li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav.menu li a {
        padding: 15px 0;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 767px) {
    .header-inner .logo img {
        max-height: 60px;
    }
}

/* Seções Gerais */
.section {
    padding: 80px 0;
    padding-top: 160px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
}

.section-title img {
    margin: 10px 0;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Formulário */
.form-group {
    margin-bottom: 20px;
}

.form-group-button {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Appointment Section */
.appointment .form {
    max-width: 600px;
    margin: 0 auto;
}

.appointment .form .row {
    width: 100%;
}

.appointment .form .col-lg-5 {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: none;
}

/* Schedule Section */
.schedule .single-schedule {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.schedule .single-schedule .icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.schedule .single-schedule h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.schedule .single-schedule span {
    font-size: 1rem;
    color: #007bff;
    display: block;
    margin-bottom: 10px;
}

.schedule .single-schedule ul {
    list-style: none;
    margin: 20px 0;
}

.schedule .single-schedule ul li {
    margin-bottom: 10px;
}

.schedule .single-schedule a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.schedule .single-schedule a:hover {
    text-decoration: underline;
}

/* Features Section */
.Feautes .single-features {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.Feautes .single-features .signle-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.Feautes .single-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.Feautes .single-features p {
    font-size: 1rem;
    color: #666;
}

.choose-left {
    padding-bottom: 20px;
}

.choose-left h2 {
    padding-bottom: 30px;
}

.list {
    list-style: none;
    padding: 0;
}

.list li {
    margin-bottom: 15px;
}

/* Services Section */
.services {
    padding-top: 100px;
}

.services .single-service {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.services .single-service i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

.services .single-service h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.services .single-service h4 a {
    color: #333;
    text-decoration: none;
}

.services .single-service h4 a:hover {
    color: #007bff;
}

.services .single-service p {
    font-size: 1rem;
    color: #666;
    flex-grow: 1;
    margin-bottom: 0;
}

.pricing-table {
    background: #f1f6ff;
}

.single-table {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    margin: 0 15px;
}

.table-head .icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

.table-head h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.table-head .price p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.table-head .price span {
    font-size: 1rem;
    color: #666;
}

.table-list {
    list-style: none;
    margin: 20px 0;
}

.table-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-list li i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #007bff;
}

.table-list li.cross i {
    color: #dc3545;
}

.table-bottom .btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 50px 0 20px;
}

.single-footer h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.single-footer p {
    margin-bottom: 20px;
}

.social {
    list-style: none;
    display: flex;
}

.social li {
    margin-right: 15px;
}

.social li a {
    color: #fff;
    font-size: 1.5rem;
}

.copyright {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
}

.copyright p {
    margin: 0;
    color: #ccc;
}

/* WhatsApp Button */
.wp-version {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp-version .btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wp-version .btn:hover {
    background: #0056b3;
}

.wp-version .whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background 0.3s;
}

.wp-version .whatsapp-icon i {
    color: #fff;
    font-size: 2em;
}

.wp-version .whatsapp-icon:hover {
    background: #20b858;
}

/* Video Image */
.choose-right {
    height: 100%;
}

.video-image {
    width: 100%;
    padding-top: 56.25%;
    position: relative;
    background-size: cover;
    background-position: center;
}

.video-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}

.video-image.playing iframe {
    display: block;
}

.video-image.playing {
    background-image: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 123, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.play-button i {
    color: #fff;
    font-size: 24px;
}

.play-button:hover {
    background: rgba(0, 123, 255, 1);
}

.video-image.playing .play-button {
    display: none;
}

/* Media Queries */
@media (max-width: 991px) {
    .nav.menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        text-align: center;
    }

    .nav.menu.active {
        display: flex;
    }

    .nav.menu li {
        margin: 0;
    }

    .nav.menu li a {
        padding: 15px 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .header-inner .logo {
        text-align: center;
    }
}

@media (max-width: 767px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .single-schedule .icon,
    .single-features .signle-icon,
    .single-service i,
    .table-head .icon {
        font-size: 2rem;
    }

    .table-list li i {
        font-size: 1rem;
    }

    .header-inner .logo img {
        max-height: 60px;
    }

    .appointment .form .col-lg-5 {
        width: 100%;
    }

    .services .single-service {
        min-height: 350px;
    }

    .services {
        padding-top: 80px;
    }
}

/* Pricing Table - Botões de Navegação */
.pricing-tab {
    position: relative;
}

.owl-prev-btn, .owl-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #007bff;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.3s;
}

.owl-prev-btn {
    left: -40px;
}

.owl-next-btn {
    right: -40px;
}

.owl-prev-btn:hover, .owl-next-btn:hover {
    background: #0056b3;
}

/* Ajuste para responsividade */
@media (max-width: 767px) {
    .owl-prev-btn {
        left: -20px;
    }
    .owl-next-btn {
        right: -20px;
    }
    .owl-prev-btn, .owl-next-btn {
        font-size: 1.2em;
        padding: 8px;
    }
}

/* Appointment Section - Padding Específico */
.appointment {
    padding: 80px 0;
}