/* =================================
   Dhayse Theme - Clinica Carina Borges
   Autor: W3 Designer - Jorge Calcado
   ================================= */

/* =================================
   VARIAVEIS E RESET
   ================================= */

:root {
    --primary-color: #8B7355;
    --secondary-color: #6B5D52;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F5F3F0;
    --white: #FFFFFF;
    --font-family: 'Josefin Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* =================================
   SCREEN READER (WordPress)
   ================================= */

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* =================================
   HEADER NAVIGATION
   ================================= */

.main-header {
    background: linear-gradient(to bottom,
        rgba(104, 97, 98, 0.9) 0%,
        rgba(104, 97, 98, 0.6) 50%,
        rgba(104, 97, 98, 0.2) 80%,
        rgba(104, 97, 98, 0) 100%);
    padding: 15px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main-header .container,
.main-header .container-fluid {
    background: transparent !important;
}

/* WP Admin Bar offset */
.admin-bar .main-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .main-header {
        top: 46px;
    }
}

/* =================================
   DOBRA 1: HERO SECTION
   ================================= */

.hero-section {
    min-height: 80vh;
    background-image: url('../images/CB_banner_tecnologias_small.png');
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar {
    padding: 0;
    background: transparent !important;
}

.navbar-collapse {
    background: transparent !important;
}

.logo-img {
    height: 50px;
    width: auto;
}

.navbar-brand {
    margin-right: 20px;
}

.navbar-nav {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.navbar-nav .nav-link {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    padding: 8px 20px;
    transition: color 0.3s ease;
    text-transform: capitalize;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #000;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-top: 10px;
}

.dropdown-item {
    font-family: var(--font-family);
    font-size: 15px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

/* Social Icons */
.social-icons {
    gap: 0px;
}

.social-link {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #000;
    transform: translateY(-3px);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0;
    background: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 28px;
    height: 28px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Offcanvas Mobile Menu */
.dhayse-offcanvas {
    background-color: var(--text-dark);
    max-width: 320px;
    width: 85%;
}

.dhayse-offcanvas .offcanvas-header {
    padding: 25px 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dhayse-offcanvas .offcanvas-header .logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.dhayse-offcanvas-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 22px;
    cursor: pointer;
    padding: 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dhayse-offcanvas-close:hover {
    opacity: 1;
}

.dhayse-offcanvas .offcanvas-body {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dhayse-offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dhayse-offcanvas-nav .nav-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dhayse-offcanvas-nav .nav-link {
    display: block;
    padding: 15px 0;
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.dhayse-offcanvas-nav .nav-link:hover,
.dhayse-offcanvas-nav .active .nav-link {
    color: var(--primary-color);
    padding-left: 10px;
}

.dhayse-offcanvas-nav .dropdown-menu {
    background: transparent;
    border: none;
    padding: 0 0 10px 20px;
    margin: 0;
    display: block !important;
    position: static !important;
    transform: none !important;
    box-shadow: none;
    border-left: 2px solid rgba(255, 255, 255, 0.15);
}

.dhayse-offcanvas-nav .dropdown-item {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dhayse-offcanvas-nav .dropdown-item:hover {
    color: var(--primary-color);
    background: transparent;
    padding-left: 10px;
}

.dhayse-offcanvas-nav .dropdown-toggle::after {
    display: none;
}

.dhayse-offcanvas-social {
    display: flex;
    gap: 12px;
    padding-top: 30px;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dhayse-offcanvas-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dhayse-offcanvas-social-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Offcanvas backdrop */
.offcanvas-backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Hero Content */
.hero-content {
    width: 100%;
    padding: 40px 0;
}

.hero-text {
    text-align: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.outlined-text {
    font-weight: 400;
    position: relative;
    display: inline-block;
    padding: 0 15px;
}

.outlined-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--text-dark);
    transform: translateY(-50%);
    z-index: -1;
}

.outlined-text::after {
    content: '';
    position: absolute;
    top: 10px;
    left: -5px;
    right: -5px;
    bottom: 10px;
    border: 1px solid var(--text-dark);
    border-radius: 50px;
    z-index: -1;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* =================================
   BOTAO FLUTUANTE WHATSAPP
   ================================= */

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 20px;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
    font-size: 20px;
}

/* =================================
   DOBRA 2: SOBRE SECTION
   ================================= */

.sobre-section {
    padding: 70px 0;
    background-color: var(--white);
}

.sobre-content {
    padding-right: 40px;
}

.sobre-intro {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 300;
}

.sobre-title {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.sobre-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 35px;
    line-height: 1.4;
}

.btn-agendar {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-agendar:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* Gallery Grid */
.sobre-gallery {
    position: relative;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 2.5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* =================================
   DOBRA 3: DIFERENCIAIS SECTION
   ================================= */

.diferenciais-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #4f5054 0%, #4f5054 50%, #fff 50%, #fff 100%);
    position: relative;
}

.diferencial-card {
    background: linear-gradient(135deg, rgba(139, 109, 48, 0.95) 0%, rgba(198, 166, 78, 0.95) 50%, rgba(160, 132, 56, 0.92) 100%);
    border-radius: 10px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 0px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.diferencial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.diferencial-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.diferencial-text {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    margin: 0;
}

/* =================================
   DOBRA 4: A CLINICA SECTION
   ================================= */

.clinica-section {
    padding: 100px 0;
    background-color: #F5F5F5;
}

.clinica-content {
    padding-right: 50px;
}

.clinica-title {
    font-size: 46px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

.clinica-text {
    font-size: 22px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 35px;
}

.btn-saiba-mais {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-saiba-mais:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

.clinica-image {
    position: relative;
}

.clinica-image img {
    width: 100%;
    height: auto;
    border-radius: 0px 25px 0px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* =================================
   DOBRA 5: PRINCIPAIS TRATAMENTOS
   ================================= */

.tratamentos-section {
    background-color: #CAAF78;
    overflow: hidden;
}

.tratamentos-section .container-fluid {
    overflow: hidden;
}

.tratamentos-section .row {
    overflow: hidden;
}

.tratamentos-section .col-lg-6 {
    overflow: hidden;
}

.tratamentos-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 800px;
    max-height: 800px;
    overflow: hidden;
}

.tratamentos-image img {
    width: 100%;
    height: 800px;
    max-width: 100%;
    max-height: 800px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.tratamentos-content {
    background-color: #CAAF78;
    padding: 80px 60px;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tratamentos-title {
    font-size: 48px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 50px;
    line-height: 1.2;
}

.tratamento-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.tratamento-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tratamento-icon i {
    font-size: 28px;
    color: var(--white);
}

.tratamento-info {
    flex: 1;
}

.tratamento-name {
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 10px;
}

.tratamento-desc {
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.3;
    margin: 0;
}

.tratamentos-buttons {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.btn-tratamento {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-align: center;
}

.btn-tratamento:hover {
    background-color: var(--white);
    color: #C9B596;
    border-color: var(--white);
}

/* =================================
   DOBRA 6: RESULTADOS
   ================================= */

.resultados-section {
    padding: 80px 0;
    background-color: var(--white);
}

.resultados-header {
    text-align: center;
    margin-bottom: 50px;
}

.resultados-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.resultados-divider {
    width: 120px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 0 auto;
}

.resultados-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px 0;
}

.resultado-item {
    flex: 0 0 auto;
    width: 546px;
    height: 265px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.resultado-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.resultado-item:hover img {
    transform: scale(1.05);
}

/* Carousel Controls */
#resultadosCarousel {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: -60px;
}

.carousel-control-next {
    right: -60px;
}

.carousel-arrow-prev,
.carousel-arrow-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow-prev i,
.carousel-arrow-next i {
    color: var(--white);
    font-size: 16px;
}

.carousel-arrow-prev:hover,
.carousel-arrow-next:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

/* Carousel Indicators */
.resultados-indicators {
    position: relative;
    bottom: -30px;
    margin-bottom: 0;
}

.resultados-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background-color: #caaf78 !important;
    border: none !important;
    margin: 0 5px !important;
    opacity: 1 !important;
    padding: 0 !important;
}

.resultados-indicators button.active {
    background-color: var(--text-dark);
}

/* =================================
   DOBRA 7: FEEDBACKS
   ================================= */

.feedbacks-section {
    padding: 80px 0;
    background-color: var(--white);
}

.feedbacks-title {
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.feedbacks-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.feedback-item {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.feedback-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feedback-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.feedback-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
}

/* Feedbacks Carousel Controls */
#feedbacksCarousel {
    position: relative;
}

#feedbacksCarousel .carousel-control-prev,
#feedbacksCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

#feedbacksCarousel .carousel-control-prev {
    left: -60px;
}

#feedbacksCarousel .carousel-control-next {
    right: -60px;
}

.feedback-arrow-prev,
.feedback-arrow-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feedback-arrow-prev i,
.feedback-arrow-next i {
    color: #ccc;
    font-size: 16px;
}

.feedback-arrow-prev:hover,
.feedback-arrow-next:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.feedback-arrow-prev:hover i,
.feedback-arrow-next:hover i {
    color: var(--text-dark);
}

/* =================================
   DOBRA 8: ONDE ESTAMOS
   ================================= */

.onde-estamos-section {
    padding: 100px 0;
    background-color: #fff;
}

.onde-estamos-gallery {
    position: relative;
    height: 500px;
    margin-right: 40px;
}

.gallery-photo {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid var(--white);
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-photo.photo-1 {
    width: 200px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-photo.photo-2 {
    width: 280px;
    height: 200px;
    top: 0;
    right: 0;
    z-index: 2;
}

.gallery-photo.photo-3 {
    width: 350px;
    height: 250px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.onde-estamos-content {
    padding-left: 30px;
}

.onde-estamos-title {
    font-size: 56px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 10px;
}

.onde-estamos-destaque {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 25px;
}

.onde-estamos-text {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* =================================
   DOBRA 9: MAPA
   ================================= */

.mapa-section {
    width: 100%;
    background-color: #f5f5f5;
}

.mapa-container {
    width: 100%;
    line-height: 0;
}

.mapa-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* =================================
   DOBRA 10: CTA
   ================================= */

.cta-section {
    padding: 80px 0 0;
    background-color: #CAAF78;
}

.cta-content {
    text-align: center;
    padding-bottom: 80px;
}

.cta-title {
    font-size: 42px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.btn-cta {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-cta:hover {
    background-color: #fff;
    color: #CAAF78;
}

.cta-divider {
    width: 100%;
    height: 3px;
    background-color: #8B7355;
}

/* =================================
   DOBRA 11: FOOTER
   ================================= */

.footer-section {
    padding: 60px 0;
    background-color: #6B6B6B;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.footer-social a,
.footer-social a:link,
.footer-social a:visited {
    color: var(--white);
    font-size: 18px;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    color: var(--primary-color);
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-text {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.btn-footer-whatsapp {
    display: inline-block;
    padding: 12px 25px;
    background-color: #25D366;
    color: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.btn-footer-whatsapp i {
    margin-right: 8px;
}

.btn-footer-whatsapp:hover {
    background-color: #20BA5A;
    color: var(--white);
}

.footer-credits {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-credits p {
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-credits a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--white);
}

/* =================================
   BANNER PAGINAS INTERNAS
   ================================= */

.page-banner {
    position: relative;
    min-height: 450px;
    background-color: #4f5054;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.page-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 80px;
}

.page-banner-title {
    font-size: 56px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* =================================
   PAGINA SOBRE (interna)
   ================================= */

.psobre-section {
    padding: 80px 0;
}

.psobre-clinica {
    background-color: var(--white);
}

.psobre-equipe {
    background-color: #F5F3F0;
}

.psobre-text-content {
    padding-right: 40px;
}

.psobre-equipe .col-lg-6.order-lg-2 .psobre-text-content {
    padding-right: 0;
    padding-left: 40px;
}

.psobre-title {
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: var(--primary-color);
}

.psobre-texto {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
}

.psobre-texto p {
    margin-bottom: 15px;
}

.psobre-img {
    width: 100%;
    height: auto;
    border-radius: 0px 25px 0px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.psobre-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0px 25px 0px 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.psobre-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.psobre-video-local {
    padding-bottom: 0;
    height: auto;
    max-width: 70%;
    margin: 0 auto;
}

.psobre-video-local video {
    width: 100%;
    height: auto;
    display: block;
}

.psobre-quote {
    margin-top: 30px;
    padding: 25px 30px;
    border-left: 4px solid var(--primary-color);
    background-color: rgba(139, 115, 85, 0.06);
    border-radius: 0 8px 8px 0;
}

.psobre-quote p {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 10px;
}

.psobre-quote cite {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    font-style: normal;
}

/* =================================
   PAGINA TRATAMENTOS CORPORAIS (abas)
   ================================= */

.ptrat-section {
    padding: 80px 0;
    background-color: #fff;
}

.ptrat-main-title {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 50px;
    text-align: left;
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-color: var(--primary-color);
}

.ptrat-tabs-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.ptrat-tabs-nav {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: sticky;
    top: 100px;
}

.ptrat-tab-btn {
    background: #f5f5f5;
    border: none;
    border-left: 4px solid transparent;
    padding: 14px 20px;
    text-align: left;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ptrat-tab-btn:hover {
    background: #eee;
    border-left-color: var(--primary-color);
}

.ptrat-tab-btn.active {
    background: #fff;
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ptrat-tabs-content {
    flex: 1;
    min-width: 0;
}

.ptrat-tab-panel {
    display: none;
}

.ptrat-tab-panel.active {
    display: block;
}

.ptrat-tab-inner {
    display: flex;
    gap: 30px;
    align-items: center;
}

.ptrat-tab-text {
    flex: 1;
    min-width: 0;
}

.ptrat-tab-title {
    font-family: var(--font-family);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.ptrat-tab-desc {
    font-family: var(--font-family);
    font-size: 22px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.ptrat-tab-desc p {
    margin-bottom: 10px;
}

.ptrat-btn-saiba-mais {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 30px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ptrat-btn-saiba-mais:hover {
    background-color: #645e60;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ptrat-tab-img {
    flex: 0 0 320px;
    max-width: 320px;
}

.ptrat-tab-img img {
    width: 100%;
    height: auto;
    border-radius: 0 25px 0 25px;
    object-fit: cover;
}

.ptrat-tab-media {
    flex: 0 0 320px;
    max-width: 320px;
}

.ptrat-video-local {
    max-width: 100%;
}

.ptrat-video-local video {
    width: 100%;
    height: auto;
    border-radius: 0 25px 0 25px;
    object-fit: cover;
}

/* =================================
   CONTENT AREA (paginas internas WP)
   ================================= */

.content-area {
    padding: 60px 0;
}

.content-area .site-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Single Post Layout */
.single-post-area {
    padding: 80px 0;
    background-color: var(--white);
}

.single-post-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
    padding-top: 90px;
}

.single-post-content {
    min-width: 0;
}

.entry-title {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-dark);
    line-height: 1.3;
}

.entry-meta {
    color: var(--text-light);
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.entry-meta .posted-on {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.entry-meta .cat-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-meta .cat-links a:hover {
    color: var(--secondary-color);
}

.post-thumbnail {
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
    font-family: var(--font-family);
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.entry-content p {
    margin-bottom: 20px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.entry-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.entry-footer .tags-links {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
}

.entry-footer .tags-links span {
    font-weight: 500;
    color: var(--text-dark);
}

.entry-footer .tags-links a {
    color: var(--primary-color);
    text-decoration: none;
}

.entry-footer .tags-links a:hover {
    color: var(--secondary-color);
}

/* Post Navigation */
.post-navigation {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-navigation .nav-subtitle {
    display: block;
    font-family: var(--font-family);
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.post-navigation .nav-title {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    color: var(--primary-color);
}

.post-navigation a {
    text-decoration: none;
}

.post-navigation a:hover .nav-title {
    color: var(--secondary-color);
}

/* Single Post Sidebar */
.single-post-sidebar {
    position: sticky;
    top: 100px;
}

.single-post-sidebar .widget-area {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 30px;
}

.single-post-sidebar .widget {
    margin-bottom: 30px;
}

.single-post-sidebar .widget:last-child {
    margin-bottom: 0;
}

.single-post-sidebar .widget-title {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.single-post-sidebar .widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-post-sidebar .widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.single-post-sidebar .widget ul li:last-child {
    border-bottom: none;
}

.single-post-sidebar .widget ul li a {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 300;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-sidebar .widget ul li a:hover {
    color: var(--primary-color);
}

/* Single Post - Tablet */
@media (max-width: 991px) {
    .single-post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .single-post-sidebar {
        position: static;
    }
}

/* Single Post - Mobile */
@media (max-width: 767px) {
    .single-post-area {
        padding: 50px 15px;
    }

    .entry-title {
        font-size: 26px;
    }

    .entry-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .single-post-sidebar .widget-area {
        padding: 20px;
    }
}

/* =================================
   404
   ================================= */

.error-404 {
    text-align: center;
    padding: 80px 20px;
}

.error-404 .page-title {
    font-size: 120px;
    color: var(--primary-color);
    font-weight: 300;
}

.error-404 h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
}

.error-404 p {
    margin-bottom: 30px;
    color: var(--text-light);
}

.error-404 .btn-primary {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background: none;
    border-radius: 0;
}

.error-404 .btn-primary:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* =================================
   RESPONSIVE
   ================================= */

/* Tablets */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .navbar-nav .nav-link {
        padding: 4px 20px;
    }

    .social-icons {
        margin-top: 5px;
        justify-content: center;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-content {
        padding: 30px 0;
    }

    .psobre-text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .psobre-equipe .col-lg-6.order-lg-2 .psobre-text-content {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .page-banner-title {
        font-size: 42px;
    }

    /* Tratamentos corporais tablet */
    .ptrat-tabs-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .ptrat-tabs-nav {
        flex: none;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
        position: static;
    }

    .ptrat-tab-btn {
        border-left: none;
        border-bottom: 3px solid transparent;
        padding: 10px 16px;
        font-size: 14px;
    }

    .ptrat-tab-btn.active {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .ptrat-tab-btn:hover {
        border-left: none;
        border-bottom-color: var(--primary-color);
    }

    .ptrat-tab-inner {
        flex-direction: column;
    }

    .ptrat-tab-img,
    .ptrat-tab-media {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .logo-img {
        height: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-section {
        min-height: 32vh;
    }

    .sobre-section {
        padding: 25px 0;
    }

    .sobre-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .sobre-title {
        font-size: 32px;
    }

    .sobre-subtitle {
        font-size: 18px;
    }

    .whatsapp-float {
        font-size: 12px;
        padding: 10px 20px;
    }

    .whatsapp-float i {
        font-size: 18px;
    }

    .diferenciais-section {
        padding: 60px 0;
    }

    .diferencial-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .diferencial-title {
        font-size: 20px;
    }

    .diferencial-text {
        font-size: 15px;
    }

    .clinica-section {
        padding: 60px 0;
    }

    .clinica-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .clinica-title {
        font-size: 40px;
    }

    .clinica-text {
        font-size: 20px;
    }

    .tratamentos-image {
        min-height: 400px;
    }

    .tratamentos-content {
        padding: 50px 30px;
        min-height: auto;
    }

    .tratamentos-title {
        font-size: 36px;
    }

    .tratamento-desc {
        font-size: 18px;
    }

    .tratamentos-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .diferenciais-section {
        padding: 40px 0;
    }

    .diferencial-title {
        font-size: 18px;
    }

    .diferencial-text {
        font-size: 14px;
    }

    .clinica-section {
        padding: 40px 0;
    }

    .clinica-title {
        font-size: 32px;
    }

    .clinica-text {
        font-size: 20px;
    }

    .tratamentos-image {
        min-height: 300px;
    }

    .tratamentos-content {
        padding: 40px 20px;
    }

    .tratamentos-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .tratamento-icon {
        width: 60px;
        height: 60px;
    }

    .tratamento-icon i {
        font-size: 24px;
    }

    .tratamento-name {
        font-size: 18px;
    }

    .tratamento-desc {
        font-size: 18px;
    }

    .btn-tratamento {
        font-size: 11px;
        padding: 12px 20px;
    }

    .resultados-section {
        padding: 50px 15px;
    }

    .resultados-title {
        font-size: 36px;
    }

    .resultados-grid {
        flex-wrap: wrap;
        gap: 8px;
    }

    .resultado-item {
        width: 100%;
        height: 200px;
    }

    .resultados-grid {
        flex-direction: column;
    }

    .resultado-item:not(:first-child) {
        display: none;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .feedbacks-section {
        padding: 50px 15px;
    }

    .feedbacks-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .feedbacks-grid {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .feedback-item {
        max-width: 100%;
    }

    .feedback-photo {
        width: 120px;
        height: 120px;
    }

    #feedbacksCarousel .carousel-control-prev,
    #feedbacksCarousel .carousel-control-next {
        display: none;
    }

    .onde-estamos-section {
        padding: 50px 15px;
    }

    .onde-estamos-gallery {
        height: 350px;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .gallery-photo.photo-1 {
        width: 140px;
        height: 200px;
    }

    .gallery-photo.photo-2 {
        width: 200px;
        height: 140px;
    }

    .gallery-photo.photo-3 {
        width: 250px;
        height: 180px;
    }

    .onde-estamos-content {
        padding-left: 0;
    }

    .onde-estamos-title {
        font-size: 36px;
    }

    .onde-estamos-destaque {
        font-size: 16px;
    }

    .onde-estamos-text {
        font-size: 14px;
    }

    .cta-section {
        padding: 50px 15px 0;
    }

    .cta-content {
        padding-bottom: 50px;
    }

    .cta-title {
        font-size: 28px;
    }

    .btn-cta {
        font-size: 12px;
        padding: 12px 30px;
    }

    .footer-section {
        padding: 40px 15px;
    }

    .footer-logo,
    .footer-contact,
    .footer-location,
    .footer-hours {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
        display: block;
    }

    .footer-social {
        justify-content: center;
    }

    /* Paginas internas responsive */
    .page-banner {
        min-height: 250px;
    }

    .page-banner .container {
        padding-top: 60px;
    }

    .page-banner-title {
        font-size: 32px;
    }

    .psobre-section {
        padding: 50px 15px;
    }

    .psobre-text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .psobre-equipe .col-lg-6.order-lg-2 .psobre-text-content {
        padding-left: 0;
        margin-bottom: 30px;
    }

    .psobre-title {
        font-size: 32px;
    }

    .psobre-quote {
        padding: 20px;
    }

    .psobre-quote p {
        font-size: 15px;
    }

    .psobre-video-local {
        max-width: 100%;
    }

    /* Tratamentos corporais mobile */
    .ptrat-section {
        padding: 50px 15px;
    }

    .ptrat-main-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .ptrat-tabs-nav {
        gap: 3px;
    }

    .ptrat-tab-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .ptrat-tab-title {
        font-size: 32px;
    }

    .ptrat-tab-desc {
        font-size: 22px;
    }

    .ptrat-btn-saiba-mais {
        padding: 10px 28px;
        font-size: 13px;
    }
}

/* =================================
   PAGINA NUTRICAO
   ================================= */

/* Hero title dentro da intro */
.pnutri-intro-hero-title {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
}

.pnutri-hero-btn {
    display: inline-block;
    padding: 14px 40px;
    margin-bottom: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pnutri-hero-btn:hover {
    background-color: #645e60;
    color: var(--white);
}

/* Intro */
.pnutri-intro-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.pnutri-intro-title {
    font-family: var(--font-family);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    display: block;
    text-align: center;
}

.pnutri-intro-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.pnutri-intro-desc {
    max-width: 800px;
    margin: 0 auto;
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
}

/* Accordion - Tipos de Nutricao */
.pnutri-accordion-section {
    padding: 60px 0 80px;
    background-color: var(--bg-light);
}

.pnutri-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.pnutri-accordion-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pnutri-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    transition: background-color 0.3s ease;
}

.pnutri-accordion-header:hover {
    background-color: var(--bg-light);
}

.pnutri-accordion-header-title {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    min-width: 200px;
}

.pnutri-accordion-header-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    flex: 1;
}

.pnutri-accordion-icon {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pnutri-accordion-item.active .pnutri-accordion-icon {
    transform: rotate(180deg);
}

.pnutri-accordion-body {
    display: none;
    padding: 0 30px 25px;
}

.pnutri-accordion-body-inner {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid var(--bg-light);
    padding-top: 20px;
}

/* CTA Section */
.pnutri-cta-section {
    position: relative;
    padding: 100px 200px;
    background-color: var(--secondary-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
}

.pnutri-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.45);
}

.pnutri-cta-section .container {
    position: relative;
    z-index: 1;
}

.pnutri-cta-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.pnutri-cta-foto {
    flex: 0 0 280px;
}

.pnutri-cta-foto img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.pnutri-cta-content {
    flex: 1;
    text-align: left;
}

.pnutri-cta-title {
    font-family: var(--font-family);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 35px;
    line-height: 1.5;
}

.pnutri-cta-title strong {
    font-weight: 600;
}

.pnutri-cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pnutri-cta-btn:hover {
    background-color: #645e60;
    color: var(--white);
}

/* Exames Cards */
.pnutri-exames-section {
    padding: 80px 0;
    background-color: var(--white);
}

.pnutri-exames-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.pnutri-exame-card {
    flex: 1;
    max-width: 380px;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pnutri-exame-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pnutri-exame-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pnutri-exame-icon i {
    font-size: 28px;
    color: var(--white);
}

.pnutri-exame-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pnutri-exame-desc {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
}

/* FAQ */
.pnutri-faq-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pnutri-faq-title {
    font-family: var(--font-family);
    font-size: 38px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    display: block;
}

.pnutri-faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

.pnutri-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.pnutri-faq-item {
    margin-bottom: 10px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.pnutri-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.pnutri-faq-question:hover {
    background-color: var(--bg-light);
}

.pnutri-faq-icon {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.pnutri-faq-item.active .pnutri-faq-icon {
    transform: rotate(45deg);
}

.pnutri-faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.pnutri-faq-answer-inner {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
    border-top: 1px solid var(--bg-light);
    padding-top: 15px;
}

.pnutri-faq-answer-inner p {
    margin-bottom: 10px;
}

/* Nutricao Responsive - Tablet */
@media (max-width: 991px) {
    .pnutri-intro-hero-title {
        font-size: 34px;
    }

    .pnutri-accordion-header {
        flex-direction: column;
        gap: 8px;
        padding: 18px 25px;
    }

    .pnutri-accordion-header-title {
        min-width: auto;
    }

    .pnutri-exames-grid {
        flex-direction: column;
        align-items: center;
    }

    .pnutri-exame-card {
        max-width: 100%;
        width: 100%;
    }
}

/* Nutricao Responsive - Mobile */
@media (max-width: 767px) {
    .pnutri-intro-hero-title {
        font-size: 28px;
    }

    .pnutri-intro-section {
        padding: 50px 15px;
    }

    .pnutri-intro-title {
        font-size: 28px;
    }

    .pnutri-intro-desc {
        font-size: 18px;
    }

    .pnutri-accordion-section {
        padding: 40px 15px 60px;
    }

    .pnutri-accordion-header {
        padding: 15px 20px;
    }

    .pnutri-accordion-header-title {
        font-size: 18px;
    }

    .pnutri-accordion-header-subtitle {
        font-size: 14px;
    }

    .pnutri-accordion-body {
        padding: 0 20px 20px;
    }

    .pnutri-cta-section {
        padding: 60px 15px;
    }

    .pnutri-cta-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .pnutri-cta-foto {
        flex: 0 0 auto;
    }

    .pnutri-cta-foto img {
        width: 200px;
        height: 200px;
    }

    .pnutri-cta-content {
        text-align: center;
    }

    .pnutri-cta-title {
        font-size: 26px;
    }

    .pnutri-exames-section {
        padding: 50px 15px;
    }

    .pnutri-faq-section {
        padding: 50px 15px;
    }

    .pnutri-faq-title {
        font-size: 28px;
    }

    .pnutri-faq-question {
        font-size: 16px;
        padding: 15px 20px;
    }

    .pnutri-faq-answer {
        padding: 0 20px 15px;
    }
}

/* =================================
   PAGINA ESPECIAL DO MES
   ================================= */

.pesp-titulo-section {
    padding: 40px 0 0;
    background-color: var(--white);
    text-align: center;
}

.pesp-page-title {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.pesp-section {
    padding: 0 0 80px;
    background-color: var(--white);
}

.pesp-header {
    text-align: center;
    margin-bottom: 60px;
}

.pesp-mes-titulo {
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.pesp-subtitulo {
    font-family: var(--font-family);
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pesp-validade {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 1px;
}

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

.pesp-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pesp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pesp-card-img {
    width: 100%;
    overflow: hidden;
}

.pesp-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pesp-card-body {
    padding: 30px;
}

.pesp-card-validade {
    display: block;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pesp-card-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pesp-card-desc {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.pesp-card-desc p {
    margin-bottom: 8px;
}

.pesp-card-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pesp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.pesp-btn-instagram {
    background-color: var(--text-dark);
    color: var(--white);
}

.pesp-btn-instagram:hover {
    background-color: #555;
    color: var(--white);
}

.pesp-btn-info {
    background-color: var(--primary-color);
    color: var(--white);
}

.pesp-btn-info:hover {
    background-color: #645e60;
    color: var(--white);
}

.pesp-empty {
    text-align: center;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    padding: 60px 0;
}

/* Especial do Mes - Tablet */
@media (max-width: 991px) {
    .pesp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Especial do Mes - Mobile */
@media (max-width: 767px) {
    .pesp-titulo-section {
        padding: 50px 15px;
    }

    .pesp-page-title {
        font-size: 28px;
    }

    .pesp-section {
        padding: 0 15px 50px;
    }

    .pesp-mes-titulo {
        font-size: 30px;
    }

    .pesp-subtitulo {
        font-size: 22px;
    }

    .pesp-card-img img {
        height: auto;
    }

    .pesp-card-body {
        padding: 20px;
    }

    .pesp-card-title {
        font-size: 20px;
    }

    .pesp-card-btns {
        flex-direction: column;
    }

    .pesp-btn {
        justify-content: center;
        text-align: center;
    }
}

/* =================================
   PAGINA NEWS
   ================================= */

.pnews-titulo-section {
    padding: 40px 0 0;
    background-color: var(--white);
    text-align: center;
}

.pnews-page-title {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

.pnews-section {
    padding: 40px 0 80px;
    background-color: var(--white);
}

.pnews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pnews-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pnews-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pnews-card-img {
    width: 100%;
    overflow: hidden;
}

.pnews-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

.pnews-card-body {
    padding: 30px;
}

.pnews-card-date {
    display: block;
    font-family: var(--font-family);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.pnews-card-title {
    font-family: var(--font-family);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.pnews-card-excerpt {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 25px;
}

.pnews-card-btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 30px;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--white);
    transition: background-color 0.3s ease;
}

.pnews-card-btn:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Paginacao */
.pnews-pagination {
    margin-top: 60px;
    text-align: center;
}

.pnews-pagination ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.pnews-pagination li {
    display: inline-block;
}

.pnews-pagination a,
.pnews-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-dark);
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pnews-pagination a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pnews-pagination .current {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pnews-pagination .dots {
    border: none;
    color: var(--text-light);
}

.pnews-pagination .prev,
.pnews-pagination .next {
    font-size: 13px;
}

.pnews-empty {
    text-align: center;
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    padding: 60px 0;
}

/* News - Tablet */
@media (max-width: 991px) {
    .pnews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* News - Mobile */
@media (max-width: 767px) {
    .pnews-titulo-section {
        padding: 50px 15px 0;
    }

    .pnews-page-title {
        font-size: 28px;
    }

    .pnews-section {
        padding: 30px 15px 50px;
    }

    .pnews-card-body {
        padding: 20px;
    }

    .pnews-card-title {
        font-size: 20px;
    }

    .pnews-pagination {
        margin-top: 40px;
    }

    .pnews-pagination a,
    .pnews-pagination span {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* =================================
   PAGINA CONTATO
   ================================= */

.pcont-titulo-section {
    padding: 40px 0 0;
    background-color: var(--white);
    text-align: center;
}

.pcont-page-title {
    font-family: var(--font-family);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0 0 20px;
}

.pcont-intro-texto {
    font-family: var(--font-family);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Info Section */
.pcont-info-section {
    padding: 60px 0;
    background-color: var(--white);
}

.pcont-info-title {
    font-family: var(--font-family);
    font-size: 26px;
    font-weight: 400;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 50px;
}

.pcont-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.pcont-info-card {
    text-align: center;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.pcont-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 22px;
}

.pcont-info-card-title {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pcont-info-card-text {
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 5px;
}

.pcont-info-card-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.pcont-info-card-text a:hover {
    color: var(--secondary-color);
}

/* Form Section */
.pcont-form-section {
    padding: 0 0 80px;
    background-color: var(--white);
}

.pcont-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 50px;
}

.pcont-alert {
    padding: 15px 20px;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 30px;
}

.pcont-alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pcont-alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pcont-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.pcont-form-group {
    margin-bottom: 20px;
}

.pcont-form-group label {
    display: block;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pcont-form-group input,
.pcont-form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 300;
    color: var(--text-dark);
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.pcont-form-group input:focus,
.pcont-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.pcont-form-group textarea {
    resize: vertical;
}

.pcont-form-btn {
    display: inline-block;
    padding: 14px 40px;
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pcont-form-btn:hover {
    background-color: var(--secondary-color);
}

/* Mapa Section */
.pcont-mapa-section {
    width: 100%;
    line-height: 0;
}

.pcont-mapa-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Contato - Tablet */
@media (max-width: 991px) {
    .pcont-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Contato - Mobile */
@media (max-width: 767px) {
    .pcont-titulo-section {
        padding: 50px 15px 0;
    }

    .pcont-page-title {
        font-size: 28px;
    }

    .pcont-intro-texto {
        font-size: 16px;
    }

    .pcont-info-section {
        padding: 40px 15px;
    }

    .pcont-info-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .pcont-info-card {
        padding: 30px 20px;
    }

    .pcont-form-section {
        padding: 0 15px 50px;
    }

    .pcont-form-wrapper {
        padding: 30px 20px;
    }

    .pcont-form-row {
        grid-template-columns: 1fr;
    }

    .pcont-mapa-section iframe {
        height: 300px;
    }
}
