/* ===== VARIABLES ===== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    font-size: 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    height: 70px;
    min-height: 70px;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.logo__text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', sans-serif;
}

.logo__text--script {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    font-style: italic;
    font-family: 'Inter', sans-serif;
    margin-left: 0.25rem;
}

.logo__tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    font-weight: 400;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
}

.nav__link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav__details {
    position: relative;
}

.nav__details summary {
    list-style: none;
}

.nav__details summary::-webkit-details-marker {
    display: none;
}

.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0.5rem;
    min-width: 200px;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1100;
}

.nav__submenu li a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav__submenu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

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

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

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 70px;
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.hero__services {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1rem;
}

.hero__services li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.hero__services li + li {
    margin-top: 0.5rem;
}

.hero__services li::before {
    content: "•";
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* ===== AREA SECTIONS ===== */
.area-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.area-section__eyebrow {
    font-size: 0.95rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.area-section__title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.area-section__description {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.area-section--alt {
    background-color: var(--bg-light);
}

.area-section__block {
    margin-top: 4rem;
}

.area-section__block .section__header {
    margin-bottom: 2.5rem;
}

.area-section__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.area-section__card {
    background-color: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.area-section__card h3 {
    font-size: 1.35rem;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.area-section__list {
    list-style: none;
    padding: 0;
}

.area-section__list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.7;
}

.area-section__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    background-color: var(--bg-light);
}

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

.about__text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about__text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== CORPO CLINICO SECTION ===== */
.clinical {
    background-color: #ffffff;
}

.clinical__intro {
    max-width: 900px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--text-light);
    line-height: 1.8;
}

.clinical__name {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.clinical__role {
    color: var(--text-light);
    font-weight: 500;
}

.clinical__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: start;
}

.clinical__profile {
    background-color: white;
    border-radius: 16px;
    padding: 2.75rem 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-rows: auto auto auto 1fr auto auto;
    gap: 1.25rem;
    text-align: center;
}

.clinical__profile-header {
    padding-top: 0.25rem;
}

.clinical__photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #e2e8f0;
    border: 8px solid #eef2f4;
    margin: -3.5rem auto 0;
    box-shadow: 0 12px 25px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    position: relative;
}

.clinical__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.clinical__about h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.clinical__about {
    align-self: stretch;
    min-height: 140px;
}

.clinical__summary {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    min-height: calc(1.8em * 4);
}

.clinical__about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-light);
    display: grid;
    gap: 0.5rem;
    justify-content: center;
    min-height: 48px;
}

.clinical__about-list strong {
    color: var(--text-color);
    font-weight: 600;
}

.clinical__actions {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-self: start;
}

.btn--small {
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
}

.btn--outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid #6aa6a6;
    border-radius: 999px;
}

.btn--outline:hover {
    background-color: #6aa6a6;
    color: white;
}

.clinical__details {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: left;
    align-self: start;
}

.clinical__details summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--primary-color);
    list-style: none;
}

.clinical__details summary::-webkit-details-marker {
    display: none;
}

.clinical__details-content {
    margin-top: 1rem;
    color: var(--text-light);
    line-height: 1.75;
}

.clinical__details-content h4 {
    font-size: 1.05rem;
    margin: 1.25rem 0 0.5rem;
    color: var(--text-color);
}

.clinical__details-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clinical__details-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.clinical__details-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.clinical__details-list {
    columns: 2;
    column-gap: 2rem;
}

.clinical__details-list li {
    break-inside: avoid;
}

.about__features {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.feature__icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.feature__content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature__content p {
    color: var(--text-light);
    margin: 0;
}

/* ===== FEATURED SPECIALTIES SECTION ===== */
.featured-specialties {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

.featured-specialties__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.featured-specialties__header {
    margin-bottom: 3rem;
}

.featured-specialties__title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
}

.featured-specialties__description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.featured-specialties__list {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

.featured-specialties__subtitle {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.specialties-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.specialties-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.125rem;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.specialties-list li:last-child {
    border-bottom: none;
}

.specialties-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
}

.specialties-list li:hover {
    color: var(--text-color);
    padding-left: 3rem;
}

/* ===== VISUAL SERVICES SECTION ===== */
.visual-services {
    background: linear-gradient(135deg, #f5f5f0 0%, #e8f5e9 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.visual-services::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40%;
    height: 40%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.visual-services__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.visual-services__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-services__image-wrapper {
    position: relative;
    transform: rotate(-8deg);
    padding: 10px;
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(155, 89, 182, 0.3);
    transition: var(--transition);
}

.visual-services__image-wrapper:hover {
    transform: rotate(-8deg) scale(1.02);
}

.visual-services__photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 4px;
    display: block;
    object-fit: cover;
}

.visual-services__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visual-service__box {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.visual-service__box:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.visual-service__box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

/* ===== SERVICES SECTION ===== */
.services {
    background-color: var(--bg-color);
}

.services#servicos-principais {
    background-color: var(--bg-light);
}

.services__main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service__main-card {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.service__main-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service__main-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service__main-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service__card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service__title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service__description {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== TREATMENTS SECTION ===== */
.treatments__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.treatments__column {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.treatments__column h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.treatments__column h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.treatments__list {
    list-style: none;
    padding: 0;
}

.treatments__list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.treatments__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.treatments__problems {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.treatments__benefits {
    background-color: #fafafa;
    color: var(--text-color);
    border: 2px solid var(--border-color);
}

.treatments__benefits h3 {
    color: var(--primary-color);
}

.benefits__list {
    list-style: none;
    padding: 0;
}

.benefits__list li {
    padding: 0.875rem 0;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== PROFESSIONAL SECTION ===== */
.professional {
    background-color: #f8fafc;
}

.professional__container {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) 1.4fr;
    gap: 3.5rem;
    align-items: center;
    width: 100%;
    margin: 0;
}

.professional__image-block {
    position: relative;
    width: 100%;
}

.professional__text-block {
    padding-top: 0;
    width: 100%;
}

.professional__image-wrapper {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
}

.professional__photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.professional__card {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}


.professional__name {
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.professional__title {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 2rem;
}

.professional__description {
    margin-bottom: 2rem;
    max-width: 100%;
    width: 100%;
}

.professional__description p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: left;
    width: 100%;
}

.professional__highlight {
    padding: 1.25rem;
    border-radius: 12px;
    background: #f8fafc;
    border-left: 4px solid var(--primary-color);
    color: var(--text-color);
}

.professional__highlight p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
}
.professional__qualifications {
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #f8fafc;
}

.professional__qualifications-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.professional__qualifications-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.9rem;
}

.professional__qualifications-list li + li {
    margin-top: 0.5rem;
}

.professional__description p strong {
    color: var(--text-color);
    font-weight: 600;
}

.gds {
    background: linear-gradient(135deg, #f5f2ea 0%, #f9f7f2 100%);
}

.gds__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gds__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.gds__content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.25rem;
}

.gds__image-block {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.gds__image {
    width: min(100%, 760px);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid #e2e8f0;
    background-color: white;
}

.pericial {
    background: linear-gradient(135deg, #eef2e6 0%, #f4f6ef 100%);
}

.pericial__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pericial__eyebrow {
    font-size: 0.95rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.pericial__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}

.pericial__object {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pericial__procedures {
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 0 auto 1.5rem;
    max-width: 700px;
    text-align: left;
    box-shadow: var(--shadow);
}

.pericial__procedures h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.pericial__procedures ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--text-light);
    line-height: 1.75;
}

.pericial__procedures li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.pericial__conclusion {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.pericial-services {
    background: #eef2e6;
}

.pericial-services__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pericial-services__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.pericial-services__list {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.pericial-services__list li + li {
    margin-top: 0.4rem;
}

.pericial-services__contacts {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.95rem;
}

.professional__specialties {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.professional__specialties h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.professional__specialties p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.professional__qualifications {
    margin-top: 2rem;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.professional__qualifications h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.qualifications__list {
    list-style: none;
    padding: 0;
}

.qualifications__list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.qualifications__list li:last-child {
    border-bottom: none;
}

.qualifications__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===== PROTOCOLS SECTION ===== */
.protocols {
    background: linear-gradient(135deg, #f5f5f0 0%, #faf9f6 100%);
    position: relative;
    overflow: hidden;
}

.protocols::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 50%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

.protocols__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.protocols__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.protocol__item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.protocol__item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.protocol__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.protocol__item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.protocol__item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.protocols__highlight {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight__content {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.highlight__content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.highlight__content p {
    color: var(--text-light);
    line-height: 1.7;
}

.highlight__cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 2.5rem;
    border-radius: 12px;
    color: white;
    text-align: center;
}

.highlight__cta h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.highlight__cta p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
}

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

.protocols__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    aspect-ratio: 1;
}

.gallery__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--bg-light);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact__info h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact__item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact__icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.contact__item p {
    color: var(--text-light);
    margin: 0;
}

.contact__form {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form__group textarea {
    resize: vertical;
}

.form__message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form__message.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid var(--success-color);
}

.form__message.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer__section h3,
.footer__section h4 {
    margin-bottom: 1rem;
}

.footer__brand {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.footer__brand-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.footer__brand-title--script {
    font-weight: 400;
    font-style: italic;
}

.footer__section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer__section ul li a:hover {
    color: white;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    .nav__menu.show {
        left: 0;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__submenu {
        position: static;
        margin-top: 0.5rem;
        min-width: auto;
        box-shadow: none;
        border: 0;
        padding: 0.25rem 0 0.5rem;
    }

    .nav__submenu li a {
        padding-left: 0;
    }

    .logo__tagline {
        font-size: 0.65rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .contact__container {
        grid-template-columns: 1fr;
    }

    .services__grid {
        grid-template-columns: 1fr;
    }

    .clinical__grid {
        grid-template-columns: 1fr;
    }
    .clinical__details-list {
        columns: 1;
    }

    .clinical__profile {
        grid-template-rows: auto auto auto auto auto auto;
    }

    .clinical__about {
        min-height: 0;
    }

    .clinical__summary {
        min-height: 0;
        -webkit-line-clamp: unset;
        display: block;
    }

    .clinical__about-list {
        min-height: 0;
    }

    .services__main {
        grid-template-columns: 1fr;
    }

    .treatments__container {
        grid-template-columns: 1fr;
    }

    .protocols__content {
        grid-template-columns: 1fr;
    }

    .protocols__list {
        grid-template-columns: 1fr;
    }

    .protocols__gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .professional__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .professional__image-block {
        max-width: 100%;
        margin: 0 auto;
    }

    .professional__image-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }

    .visual-services__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .visual-services__image-wrapper {
        transform: rotate(0deg);
        max-width: 100%;
    }

    .visual-service__box:hover {
        transform: translateY(-5px);
    }

    .featured-specialties__title {
        font-size: 2rem;
    }

    .featured-specialties__description {
        font-size: 1.125rem;
    }

    .featured-specialties__list {
        padding: 2rem;
    }

    .area-section__grid {
        grid-template-columns: 1fr;
    }

    .area-section__title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .section__title {
        font-size: 2rem;
    }

    .area-section__title {
        font-size: 1.8rem;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .logo__image {
        height: 45px;
    }

    .treatments__column {
        padding: 1.5rem;
    }

    .treatments__column h3 {
        font-size: 1.5rem;
    }

    .protocol__item {
        padding: 1.5rem;
    }

    .highlight__cta {
        padding: 2rem;
    }

    .professional__name {
        font-size: 1.75rem;
    }

    .professional__title {
        font-size: 1.125rem;
    }

    .professional__description p {
        font-size: 1rem;
    }

    .professional__qualifications {
        padding: 1.5rem;
    }

    .professional__qualifications h3 {
        font-size: 1.25rem;
    }

    .qualifications__list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }

    .protocols__gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

    .featured-specialties__title {
        font-size: 1.75rem;
    }

    .featured-specialties__description {
        font-size: 1rem;
    }

    .featured-specialties__list {
        padding: 1.5rem;
    }

    .specialties-list li {
        font-size: 1rem;
        padding-left: 2rem;
    }

    .visual-services__container {
        gap: 2rem;
    }

    .visual-service__box {
        padding: 1.5rem;
    }

    .visual-service__box h3 {
        font-size: 1.125rem;
    }
}
