/* ============================================
   FACE DREAM - MOBILE CSS
   Estilos para telas < 1024px
   ============================================ */

/* === Container Mobile === */
.container {
    padding: 0 20px;
}

/* === Header Mobile === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-base);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.header--scrolled .header__logo-img--default {
    display: none;
}

.header--scrolled .header__logo-img--scrolled {
    display: block;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    display: block;
    height: 38px;
}

.header__logo-img img {
    height: 38px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
}

.header__logo-img--default {
    display: block;
}

.header__logo-img--scrolled {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 6px;
    z-index: calc(var(--z-fixed) + 10);
}

.menu-toggle__line {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-base);
}

.header--scrolled .menu-toggle__line {
    background: var(--grafite-dream);
}

.menu-toggle--active .menu-toggle__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle--active .menu-toggle__line:nth-child(2) {
    opacity: 0;
}

.menu-toggle--active .menu-toggle__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Mobile */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--grafite-dream);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 30px 40px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    z-index: var(--z-fixed);
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
}

/* Safari específico */
@supports (-webkit-touch-callout: none) {
    .nav {
        min-height: -webkit-fill-available;
    }
}

.nav--open {
    transform: translateX(0);
    overflow-y: auto;
}

.nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    margin: auto 0; /* Centraliza verticalmente */
}

.nav__link {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 0;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--dourado-glow);
    transition: width var(--transition-base);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__link:hover,
.nav__link--active {
    color: var(--dourado-glow);
}

.nav__cta {
    margin-top: 30px;
}

/* === Megamenu Mobile - Premium Dropdown === */
.nav__item {
    width: 100%;
}

.nav__item--dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__dropdown-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav__item--dropdown.active .nav__dropdown-icon {
    transform: rotate(180deg);
}

/* Megamenu Mobile */
.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--grafite-dream);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: calc(var(--z-fixed) + 5);
    padding: 100px 20px 40px;
    -webkit-overflow-scrolling: touch;
}

.megamenu--active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Botão de fechar no mobile */
.megamenu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.megamenu__close:hover {
    background: var(--dourado-glow);
    border-color: var(--dourado-glow);
    color: var(--white);
}

.megamenu__close svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
}

.megamenu__container {
    padding: 0;
}

/* Megamenu Header Mobile */
.megamenu__header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(188, 152, 94, 0.3);
}

.megamenu__label {
    display: none;
}

.megamenu__subtitle {
    font-family: Georgia, serif;
    font-size: 16px;
    color: var(--dourado-glow);
    line-height: 1.3;
}

/* Megamenu Grid Mobile - 2 Columns */
.megamenu__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Megamenu Item Card Mobile */
.megamenu__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.megamenu__item:active {
    background: rgba(188, 152, 94, 0.15);
    border-color: var(--dourado-glow);
    transform: scale(0.97);
}

/* Megamenu Icon Mobile */
.megamenu__item-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(188, 152, 94, 0.15);
    border-radius: var(--radius-full);
    border: 1px solid rgba(188, 152, 94, 0.3);
    transition: all 0.3s ease;
}

.megamenu__item:active .megamenu__item-icon {
    background: var(--dourado-glow);
    border-color: var(--dourado-glow);
}

.megamenu__item-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.megamenu__item:active .megamenu__item-icon img {
    filter: brightness(0) invert(1);
}

/* Megamenu Content Mobile */
.megamenu__item-content {
    flex: 1;
}

.megamenu__item-title {
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.3;
}

.megamenu__item:active .megamenu__item-title {
    color: var(--dourado-glow);
}

.megamenu__item-desc {
    display: none;
}

/* Megamenu Footer Mobile */
.megamenu__footer {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.megamenu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grafite-dream);
    background: var(--dourado-glow);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.megamenu__cta:active {
    transform: scale(0.98);
    background: #a88550;
}

.megamenu__cta svg {
    width: 14px;
    height: 14px;
    stroke: var(--grafite-dream);
}

/* Hide Close Button on Mobile (not needed for dropdown) */
.megamenu__close {
    display: none;
}

/* === Hero Mobile === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--grafite-dream) 0%, #2d3238 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}

.hero__background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, 
        var(--grafite-dream) 0%, 
        rgba(32, 36, 40, 0.85) 50%, 
        var(--grafite-dream) 100%);
}

.hero__decoration {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__text {
    text-align: center;
    order: 1;
}

.hero__tagline {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado-glow);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(188, 152, 94, 0.3);
}

.hero__title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.hero__title span {
    color: var(--dourado-glow);
    font-style: italic;
}

.hero__description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.hero__cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero__cta .btn {
    width: 100%;
    max-width: 280px;
}

.hero__visual {
    display: none;
}

.hero__stats {
    order: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-md);
    margin: 0 auto;
    max-width: 320px;
    box-shadow: var(--shadow-lg);
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: Georgia, serif;
    font-size: 28px;
    color: var(--dourado-glow);
    line-height: 1;
    margin-bottom: 5px;
}

.hero__stat-label {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gray-600);
}

.hero__scroll {
    display: none;
}

/* === Services Section Mobile === */
.services {
    padding: 60px 0;
    background: var(--white);
}

.services__header {
    text-align: center;
    margin-bottom: 40px;
}

.services__title {
    font-size: 28px;
}

.services__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    padding: 35px 25px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--dourado-glow);
    opacity: 0;
    transition: all var(--transition-base);
}

.service-card:active {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.service-card:active::before {
    opacity: 1;
}

.service-card__icon {
    width: 108px;
    height: 108px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.service-card__icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--dourado-glow);
    stroke-width: 1.5;
    fill: none;
}

.service-card__icon--img {
    background: transparent;
    box-shadow: none;
    position: relative;
}

.service-card__icon--img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.service-card__icon--img img.icon-default {
    opacity: 1;
}

.service-card__icon--img img.icon-hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.service-card:active .service-card__icon--img {
    background: var(--dourado-glow);
}

.service-card:active .service-card__icon--img img.icon-default {
    opacity: 0;
}

.service-card:active .service-card__icon--img img.icon-hover {
    opacity: 1;
}

.service-card__title {
    font-family: Georgia, serif;
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card__description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dourado-glow);
}

.service-card__link svg {
    width: 14px;
    height: 14px;
}

/* === CTA Banner Mobile === */
.cta-banner {
    position: relative;
    padding: 60px 0;
    background: var(--bege-touch);
    overflow: hidden;
}

.cta-banner__decoration {
    display: none;
}

.cta-banner__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.cta-banner__image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-md);
}

.cta-banner__text {
    max-width: 320px;
}

.cta-banner__title {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-banner__description {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 280px;
}

.cta-banner__actions .btn {
    width: 100%;
}

/* === Structure Section Mobile === */
.structure {
    padding: 60px 0;
    background: var(--white);
}

.structure__header {
    text-align: center;
    margin-bottom: 30px;
}

.structure__title {
    font-size: 28px;
}

.structure__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.structure__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
}

.structure__item:nth-child(1) {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.structure__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.structure__item-overlay {
    display: none;
}

/* === About Section Mobile === */
.about {
    padding: 60px 0;
    background: var(--gray-100);
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about__image-wrapper {
    position: relative;
}

.about__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about__image-accent {
    display: none;
}

.about__badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--grafite-dream);
    color: var(--white);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about__badge-number {
    font-family: Georgia, serif;
    font-size: 32px;
    color: var(--dourado-glow);
    line-height: 1;
}

.about__badge-text {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

.about__text {
    text-align: center;
}

.about__title {
    font-size: 28px;
    margin-bottom: 20px;
}

.about__description {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 25px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    justify-content: flex-start;
    padding: 15px;
    background: var(--white);
    border-radius: var(--radius-md);
}

.about__feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dourado-glow);
    border-radius: var(--radius-full);
    flex-shrink: 0;
}

.about__feature-icon svg {
    width: 12px;
    height: 12px;
    stroke: var(--white);
    stroke-width: 3;
}

.about__cta {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

/* === Doctor Section Mobile === */
.doctor {
    padding: 60px 0;
    scroll-margin-top: 70px;
}

.doctor::before {
    display: none;
}

.doctor__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.doctor__image-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.doctor__image {
    height: 400px;
    width: 100%;
}

.doctor__experience {
    bottom: -15px;
    right: 10px;
    padding: 20px 25px;
}

.doctor__experience-number {
    font-size: 32px;
}

.doctor__experience-text {
    font-size: 10px;
}

.doctor__info {
    text-align: center;
}

.doctor__name {
    font-size: 28px;
    margin-bottom: 8px;
}

.doctor__subtitle {
    margin-bottom: 20px;
}

.doctor__bio {
    text-align: left;
    margin-bottom: 30px;
}

.doctor__credentials {
    text-align: left;
    padding: 25px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.doctor__credentials-title {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.doctor__credential {
    margin-bottom: 18px;
}

.doctor__credential-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
}

.doctor__credential-icon svg {
    width: 18px;
    height: 18px;
}

.doctor__credential-text strong {
    font-size: 13px;
}

.doctor__credential-text span {
    font-size: 12px;
}

.doctor__cta {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    justify-content: center;
}

/* === Results Section Mobile === */
.results {
    padding: 60px 0;
    background: var(--white);
}

.results__header {
    text-align: center;
    margin-bottom: 30px;
}

.results__title {
    font-size: 28px;
}

.results__slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
}

.results__track {
    display: flex;
    gap: 16px;
    transition: transform var(--transition-smooth);
}

.result-card {
    flex: 0 0 100%;
    max-width: 320px;
    width: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.result-card__images {
    position: relative;
    height: 350px;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.result-card__before,
.result-card__after {
    position: relative;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.result-card__before img,
.result-card__after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

picture.result-card__before,
picture.result-card__after {
    display: block;
    position: relative;
    width: 50%;
    height: 100%;
}

picture.result-card__before img,
picture.result-card__after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-card__divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--white);
}

.result-card__labels {
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
}

.result-card__label {
    background: var(--grafite-dream);
    color: var(--white);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.result-card__info {
    padding: 20px;
    background: var(--white);
}

.result-card__procedure {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dourado-glow);
    margin-bottom: 5px;
}

.result-card__name {
    font-family: Georgia, serif;
    font-size: 16px;
}

/* Slider Navigation Mobile */
.results__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.results__nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results__nav-btn:active {
    background: var(--dourado-glow);
    border-color: var(--dourado-glow);
}

.results__nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: var(--grafite-dream);
}

.results__nav-btn:active svg {
    stroke: var(--white);
}

/* === Contact CTA Section Mobile === */
.contact-cta {
    padding: 60px 0;
    background: var(--grafite-dream);
    position: relative;
    overflow: hidden;
}

.contact-cta__decoration {
    display: none;
}

.contact-cta__content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.contact-cta__text {
    max-width: 100%;
}

.contact-cta__title {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 15px;
}

.contact-cta__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-cta__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-cta__input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
}

.contact-cta__input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-cta__form .btn {
    width: 100%;
}

.contact-cta__phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-cta__phone-icon {
    width: 60px;
    height: 60px;
    background: var(--dourado-glow);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cta__phone-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.contact-cta__phone-number {
    font-family: Georgia, serif;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 1px;
}

.contact-cta__phone-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dourado-glow);
}

/* === Testimonials Section Mobile === */
.testimonials {
    padding: 60px 0;
    background: var(--gray-100);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 30px;
}

.testimonials__title {
    font-size: 28px;
}

.testimonials__grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.testimonial-card__star {
    width: 16px;
    height: 16px;
    fill: var(--dourado-glow);
}

.testimonial-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.testimonial-card__procedure {
    font-size: 11px;
    color: var(--dourado-glow);
    letter-spacing: 1px;
}

/* === Footer Mobile === */
.footer {
    background: var(--grafite-dream);
    color: var(--white);
}

.footer__main {
    padding: 50px 0;
}

.footer__grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer__brand {
    text-align: center;
}

.footer__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer__logo-img {
    display: block;
    height: 55px;
}

.footer__logo-img img {
    height: 55px;
    width: auto;
    max-width: 275px;
    object-fit: contain;
}

.footer__tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer__social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

.footer__column {
    text-align: center;
}

.footer__column-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dourado-glow);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer__contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer__contact-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--dourado-glow);
    stroke-width: 1.5;
    fill: none;
}

.footer__contact-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    text-align: left;
}

.footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.footer__copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 1px;
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal-link {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

/* === WhatsApp Float Button Mobile === */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: var(--z-fixed);
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* === Modal Mobile === */
.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.modal--active {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(32, 36, 40, 0.95);
}

.modal__content {
    position: relative;
    max-width: 100%;
}

.modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
}

/* === Tablet Adjustments (768px - 1023px) === */
@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }

    /* Megamenu Tablet */
    .megamenu__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .megamenu__item {
        padding: 22px 14px;
    }

    .megamenu__item-icon {
        width: 56px;
        height: 56px;
    }

    .megamenu__item-icon img {
        width: 30px;
        height: 30px;
    }

    .megamenu__item-title {
        font-size: 14px;
    }

    .megamenu__cta {
        padding: 16px 24px;
        font-size: 12px;
    }
    
    .hero__title {
        font-size: 42px;
    }
    
    .hero__stats {
        max-width: 400px;
    }
    
    .hero__stat-number {
        font-size: 32px;
    }
    
    .services__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .structure__gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .structure__item:nth-child(1) {
        grid-column: span 3;
    }
    
    .about__image {
        height: 450px;
    }
    
    .about__features {
        grid-template-columns: 1fr 1fr;
    }
    
    .result-card {
        flex: 0 0 320px;
    }
    
    .testimonials__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .doctor__image {
        height: 500px;
    }

    .doctor__info {
        max-width: 600px;
        margin: 0 auto;
    }

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