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

:root {
    --blue: #4A9FD8;
    --yellow: #F9D749;
    --red: #E74C3C;
    --cream: #FFF8E7;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --green: #2ECC71;
    --purple: #9B59B6;
    --orange: #F39C12;
    --pink: #E91E63;
    --cyan: #1ABC9C;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    overflow: hidden;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: float 15s ease-in-out infinite;
}

.shape-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--white);
}

.shape-star {
    width: 100px;
    height: 100px;
    background: var(--red);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.shape:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.shape:nth-child(2) { top: 60%; right: 15%; animation-delay: 3s; }
.shape:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 6s; }
.shape:nth-child(4) { top: 30%; right: 25%; animation-delay: 9s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(20px, -20px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-15px, 15px) rotate(180deg) scale(0.9); }
    75% { transform: translate(25px, 10px) rotate(270deg) scale(1.05); }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    width: 180px;
    height: 180px;
    background: #fcfbf7;
    border-radius: 50%;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards, bounce 3s ease-in-out 1.5s infinite;
    padding: 20px;
    border: 6px solid var(--yellow);
    overflow: hidden;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.logo-placeholder {
    font-size: 5rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

h1 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-tagline {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.8s backwards;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.cta-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    font-family: 'Fredoka', sans-serif;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.5);
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
}

.btn-secondary {
    background: white;
    color: var(--blue);
    border-color: white;
}

.btn-secondary:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-5px) scale(1.05);
}

.icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    font-size: 1.2em;
    line-height: 1;
}

.section {
    padding: 5rem 2rem;
    position: relative;
}

.section-white { background: white; }
.section-cream { background: var(--cream); }

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

.section-title {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--blue);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.card:nth-child(1) {
    border-color: rgba(74, 159, 216, 0.3);
}

.card:nth-child(2) {
    border-color: rgba(155, 89, 182, 0.3);
}

.card:nth-child(3) {
    border-color: rgba(243, 156, 18, 0.3);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 50%, var(--purple) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--blue) 0%, var(--cyan) 100%);
}

.card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--purple) 0%, var(--pink) 100%);
}

.card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--orange) 0%, var(--red) 100%);
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(74, 159, 216, 0.4);
    animation: wiggle 3s ease-in-out infinite;
}

.card-icon i {
    font-size: 2.5rem;
    line-height: 1;
    color: white;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.card:nth-child(1) .card-icon {
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    box-shadow: 0 10px 30px rgba(74, 159, 216, 0.4);
}

.card:nth-child(2) .card-icon {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.4);
    animation-delay: 1s;
}

.card:nth-child(3) .card-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
    box-shadow: 0 10px 30px rgba(243, 156, 18, 0.4);
    animation-delay: 2s;
}

.card h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

/* SEÇÃO SOBRE O MÉDICO COM FOTO */
.doctor-section {
    background: white;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.doctor-section::before {
    content: '🧸';
    position: absolute;
    font-size: 25rem;
    opacity: 0.03;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
}

.doctor-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .doctor-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.doctor-photo-container {
    position: relative;
    z-index: 2;
}

.doctor-photo-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    border: 6px solid var(--yellow);
}

.doctor-photo-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 159, 216, 0.3) 0%, rgba(249, 215, 73, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.doctor-photo-wrapper:hover::after {
    opacity: 1;
}

.doctor-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* Placeholder para foto */
.doctor-photo-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
}

.doctor-info {
    z-index: 2;
}

.doctor-info h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: var(--blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.doctor-info .credentials {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 600;
}

.doctor-info p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.doctor-highlight {
    background: linear-gradient(135deg, rgba(74, 159, 216, 0.1) 0%, rgba(249, 215, 73, 0.1) 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid var(--blue);
    margin: 2rem 0;
}

.doctor-highlight p {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
}

.doctor-highlight strong i {
    color: var(--yellow);
    margin-right: 0.5rem;
}

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

.doctor-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.doctor-feature:nth-child(1) {
    border-left-color: var(--red);
}

.doctor-feature:nth-child(2) {
    border-left-color: var(--orange);
}

.doctor-feature:nth-child(3) {
    border-left-color: var(--purple);
}

.doctor-feature:nth-child(4) {
    border-left-color: var(--green);
}

.doctor-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    background: white;
}

.doctor-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.doctor-feature-icon i {
    font-size: 1.5rem;
    line-height: 1;
}

.doctor-feature:nth-child(1) .doctor-feature-icon i {
    color: var(--red);
}

.doctor-feature:nth-child(2) .doctor-feature-icon i {
    color: var(--orange);
}

.doctor-feature:nth-child(3) .doctor-feature-icon i {
    color: var(--purple);
}

.doctor-feature:nth-child(4) .doctor-feature-icon i {
    color: var(--green);
}

.doctor-feature-text {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .info-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.location-card {
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 4px solid var(--cream);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.location-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 25px rgba(74, 159, 216, 0.4);
    margin-bottom: 1.5rem;
}

.location-icon i {
    font-size: 2rem;
    line-height: 1;
    color: white;
}

.location-card:nth-child(2) .location-icon {
    background: linear-gradient(135deg, var(--purple) 0%, var(--pink) 100%);
    box-shadow: 0 10px 25px rgba(155, 89, 182, 0.4);
}

.location-info h3 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: var(--blue);
    font-weight: 700;
}

.location-address {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.contact-section {
    background: linear-gradient(135deg, var(--blue) 0%, var(--yellow) 100%);
    color: white;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '🧸';
    position: absolute;
    font-size: 20rem;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-section .section-title {
    color: white;
}

.contact-section p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

footer {
    background: var(--text-dark);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.social-link {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: var(--blue);
    transform: translateY(-5px) scale(1.1);
}

.social-link i {
    font-size: 1.5rem;
    line-height: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce-arrow 2s infinite;
    z-index: 3;
}

@keyframes bounce-arrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-8px); }
}

.scroll-indicator svg {
    width: 40px;
    height: 40px;
    color: white;
    opacity: 0.9;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-decorator {
    text-align: center;
    font-size: 3rem;
    margin: 2rem 0;
    opacity: 0.3;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
}

.section-decorator i {
    font-size: 2rem;
    opacity: 0.6;
}

.section-decorator i:nth-child(1) {
    color: var(--yellow);
}

.section-decorator i:nth-child(2) {
    color: var(--pink);
}

.section-decorator i:nth-child(3) {
    color: var(--cyan);
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Tablets and below (max-width: 968px) */
@media (max-width: 968px) {
    .hero {
        min-height: 90vh;
        padding: 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
        margin-bottom: 1.5rem;
        padding: 15px;
        border-width: 4px;
    }

    .shape-circle {
        width: 100px;
        height: 100px;
    }

    .shape-star {
        width: 70px;
        height: 70px;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .doctor-section {
        padding: 4rem 1.5rem;
    }

    .doctor-section::before {
        font-size: 15rem;
        right: -10%;
    }

    .contact-section {
        padding: 4rem 1.5rem;
    }

    .contact-section::before {
        font-size: 12rem;
    }

    .cards-grid {
        gap: 2rem;
    }

    .card {
        padding: 2.5rem;
        width: 400px;
    }

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

    .location-card {
        padding: 2.5rem;
    }
}

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 0.5rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-logo {
        width: 120px;
        height: 120px;
        margin-bottom: 1rem;
        padding: 12px;
        border-width: 4px;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.4rem);
        margin-bottom: 0.75rem;
    }

    .hero-tagline {
        font-size: clamp(0.9rem, 3.5vw, 1.2rem);
        margin-bottom: 2rem;
        padding: 0.75rem 1.5rem;
    }

    .cta-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cards-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .card {
        padding: 2rem;
        width: 100%;
        max-width: 400px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

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

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

    .doctor-section {
        padding: 3rem 1rem;
    }

    .doctor-section::before {
        font-size: 10rem;
        right: -15%;
    }

    .doctor-content {
        gap: 2rem;
    }

    .doctor-info h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .doctor-info .credentials {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .doctor-info p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .doctor-highlight {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .doctor-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .doctor-feature {
        padding: 1.25rem;
    }

    .location-card {
        padding: 2rem;
    }

    .location-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .location-info h3 {
        font-size: 1.5rem;
    }

    .location-address {
        font-size: 1rem;
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-section::before {
        font-size: 8rem;
    }

    .contact-section p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .section-decorator {
        font-size: 2rem;
        margin: 1.5rem 0;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .scroll-indicator svg {
        width: 30px;
        height: 30px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
        padding: 10px;
    }

    h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.3rem);
    }

    .hero-tagline {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
        padding: 0.6rem 1.25rem;
    }

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

    .section {
        padding: 2.5rem 0.75rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        border-radius: 15px;
    }

    .card h3 {
        font-size: 1.3rem;
    }

    .card p {
        font-size: 0.95rem;
    }

    .doctor-section {
        padding: 2.5rem 0.75rem;
    }

    .doctor-section::before {
        font-size: 8rem;
    }

    .doctor-info h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .doctor-info .credentials {
        font-size: 1rem;
    }

    .doctor-info p {
        font-size: 0.95rem;
    }

    .doctor-highlight {
        padding: 1.25rem;
        border-radius: 15px;
    }

    .doctor-feature {
        padding: 1rem;
    }

    .doctor-feature-icon {
        font-size: 1.5rem;
    }

    .doctor-feature-text {
        font-size: 0.9rem;
    }

    .location-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .location-icon {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .location-info h3 {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 2.5rem 0.75rem;
    }

    .contact-section::before {
        font-size: 6rem;
    }

    .contact-section p {
        font-size: 1rem;
        padding: 0 0.5rem;
    }

    .shape-circle {
        width: 80px;
        height: 80px;
    }

    .shape-star {
        width: 50px;
        height: 50px;
    }

    .section-decorator {
        font-size: 1.5rem;
    }
}