/* Variáveis de cores */
:root {
    --primary-color: #0a3b5c; /* Azul marinho escuro */
    --secondary-color: #1a5b8c; /* Azul marinho médio */
    --accent-color: #00b8d4; /* Azul turquesa para destaque */
    --text-color: #333;
    --light-text: #666;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* Estilo específico para imagem de obesidade */
.obesity-image {
    object-fit: contain;
    max-width: 90%;
    max-height: 90%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 80px; /* Altura fixa para o header */
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #3d3b3c;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 14px;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    transform: translateY(-3px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 160px 0 60px; /* Aumentado para dar mais espaço abaixo do menu */
    background-color: #DFE3E5;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda no desktop */
}

.hero-content {
    flex: 1;
    padding-right: 0;
    max-width: 600px;
    text-align: left; /* Alinhado à esquerda no desktop */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Alinhado à esquerda no desktop */
}

.credentials-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(10, 59, 92, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.credentials-badge i {
    margin-right: 8px;
    color: var(--accent-color);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #7c90a7; /* Nova cor conforme solicitado */
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left; /* Alinhado à esquerda no desktop */
    width: 100%;
    max-width: 600px;
    text-transform: uppercase;
}

/* Estilo para as credenciais */
.credentials {
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero p {
    font-size: 1.2rem;
    color: #3d3b3c; /* Nova cor cinza escuro conforme solicitado */
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: left; /* Alinhado à esquerda no desktop */
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-start; /* Alinhado à esquerda no desktop */
    width: 100%;
}

.btn-primary {
    background-color: #2ecc71; /* Verde como na imagem de referência */
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #27ae60; /* Verde mais escuro para hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 2px solid #7c90a7;
    color: #7c90a7;
    background-color: transparent;
    padding: 15px 30px;
}

.btn-outline:hover {
    background-color: #7c90a7;
    color: white;
    transform: translateY(-3px);
}

.hero-image {
    position: absolute;
    right: 0;
    top: 80px; /* Altura do header */
    width: 50%;
    height: calc(100% - 80px);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-image img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* Removendo o quadrado azul no desktop */
@media (min-width: 993px) {
    .hero-image::before {
        display: none;
    }
}

/* Mantendo o quadrado azul apenas no mobile */
@media (max-width: 992px) {
    .hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 80%;
        height: 100%;
        background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
        opacity: 0.8;
        border-radius: 30% 0 0 70%;
        z-index: 1;
    }
}

/* Seção Sobre a Médica */
.about-doctor {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-header h2 span {
    color: var(--accent-color);
}

.section-header .credentials {
    color: var(--light-text);
    font-size: 1.1rem;
    font-weight: 500;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-image {
    flex: 1;
    max-width: 45%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

.philosophy, .experience, .mission {
    margin-bottom: 30px;
}

.about-text ul {
    list-style: none;
    padding: 0;
}

.about-text ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.about-text ul li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1rem;
    margin-top: 5px;
}

.mission p {
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
}

.cta-about {
    margin-top: 40px;
}

/* Seção Como Posso Te Ajudar */
.how-can-help-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

/* Banner de Abordagem */
.approach-banner {
    margin: 40px 0;
    padding: 50px 40px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 59, 92, 0.15);
    background: linear-gradient(135deg, #6f8aa3 0%, #5A7D9A 100%);
    border-left: 5px solid #00b8d4;
}

.approach-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%),
               radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 20%);
    opacity: 0.8;
    z-index: 1;
}

.approach-banner::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-image: url('images/favicon\ maria\ angelica.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(15deg);
}

.approach-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.approach-icon {
    margin: 0 auto 20px;
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 184, 212, 0.5);
    padding: 5px;
}

.approach-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.approach-content h4 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.approach-content h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

.approach-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 20px auto 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.approach-content strong {
    font-weight: 700;
}

.how-can-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(135, 151, 178, 0.1) 0%, rgba(135, 151, 178, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.how-can-help-section .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.how-can-help-section .section-header::after {
    display: none;
}

.how-can-help-section .section-header h2 {
    color: #8797b2;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.secondary-title {
    text-transform: uppercase;
    letter-spacing: 1px;
    hyphens: manual;
    word-break: keep-all;
}

.how-can-help-section .section-header h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 0;
}

.help-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.help-intro {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.help-intro-icon {
    flex: 0 0 80px;
    height: 80px;
    width: 80px;
    background: linear-gradient(135deg, #8797b2 0%, #6a7a94 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    box-shadow: 0 10px 20px rgba(106, 122, 148, 0.3);
    min-width: 80px;
    min-height: 80px;
    aspect-ratio: 1 / 1;
}

.help-intro-icon i {
    font-size: 36px;
    color: white;
}

.help-text {
    line-height: 1.8;
    color: #444;
    flex: 1;
}

.symptoms-intro {
    margin-bottom: 20px;
}

.symptoms-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.symptoms-title h4 {
    font-size: 1.3rem;
    color: #333;
    margin: 0 15px;
    font-weight: 600;
}

.symptoms-title .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(135, 151, 178, 0.5), transparent);
}

.highlight-text {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    border-left: 4px solid #8797b2;
    padding-left: 20px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 25px 25px 25px 30px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    line-height: 1.9;
}

.highlight-text strong {
    color: #6a7a94;
    font-weight: 600;
}

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.symptom-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
}

.symptom-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid #8797b2;
}

.symptom-item i {
    color: #8797b2;
    font-size: 1.4rem;
    margin-right: 15px;
    background-color: rgba(135, 151, 178, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 45px;
    min-height: 45px;
    aspect-ratio: 1 / 1;
}

.symptom-item:hover i {
    background-color: #8797b2;
    color: white;
}

.symptom-item span {
    font-weight: 500;
    color: #333;
    font-size: 1.05rem;
}

.approach-banner {
    color: white;
    padding: 0;
    border-radius: 15px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(106, 122, 148, 0.3);
    height: 280px;
    width: 100%;
    max-width: 100%;
}

.approach-content {
    background: linear-gradient(135deg, rgba(135, 151, 178, 0.85) 0%, rgba(106, 122, 148, 0.9) 100%);
    padding: 20px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.medical-bg {
    background-image: url('images/primeira consulta.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.approach-banner::before {
    content: '\f0eb';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 180px;
    opacity: 0.1;
    color: white;
}

.approach-banner h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.approach-banner h4::after {
    content: '';
    display: block;
    width: 70%;
    height: 2px;
    background-color: white;
    margin-top: 8px;
}

.approach-banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 100%;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.approach-banner p strong {
    font-weight: 700;
    font-size: 1.25rem;
}

.closing-text {
    font-size: 1.15rem;
    text-align: center;
    margin-top: 40px;
    color: #333;
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.closing-text::before {
    content: '\201C';
    font-size: 60px;
    position: absolute;
    top: -15px;
    left: 20px;
    color: rgba(135, 151, 178, 0.2);
    font-family: Georgia, serif;
}

.closing-text::after {
    content: '\201D';
    font-size: 60px;
    position: absolute;
    bottom: -40px;
    right: 20px;
    color: rgba(135, 151, 178, 0.2);
    font-family: Georgia, serif;
}

/* Estilos para as etapas de cuidado */
.care-steps {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    flex-wrap: wrap;
}

.care-step {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    padding: 20px;
    margin: 10px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.care-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #8797b2, #6a7a94);
}

.care-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #8797b2 0%, #6a7a94 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(106, 122, 148, 0.3);
}

.step-info {
    flex: 1;
}

.step-info h5 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    color: #333;
}

.step-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 992px) {
    .how-can-help-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .how-can-help-section .section-header h3 {
        font-size: 1.3rem;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-text {
        font-size: 1.1rem;
    }
    
    .approach-banner p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .approach-banner h4 {
        font-size: 1.2rem;
    }
    
    .closing-text {
        font-size: 1rem;
    }
    
    .help-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .help-intro-icon {
        margin: 0 auto 20px;
    }
    
    .care-steps {
        flex-direction: column;
    }
    
    .care-step {
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
    
    .symptom-item i {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        font-size: 1.2rem;
    }
    
    .help-intro-icon {
        width: 70px;
        height: 70px;
        min-width: 70px;
        min-height: 70px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        flex-direction: column;
        padding-top: 150px;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
        z-index: 10;
        align-items: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero h1, .hero p {
        text-align: center;
    }
    
    .credentials {
        margin-top: 30px;
        text-align: center;
    }
    
    .hero h1 {
        margin-top: 5px;
        font-size: 2.2rem;
    }
    
    .hero-image {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        right: auto;
        margin-top: 30px;
    }
    
    .hero-image img {
        width: 100%;
        height: auto;
        max-width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .hero-image::before {
        display: none;
    }
}

/* Seção de Tratamentos */
.treatments {
    background-color: #E3E7E8;
    padding: 80px 0;
    width: 100%;
    overflow: hidden;
}

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

.section-header h2 {
    font-size: 3.5rem;
    color: #7c90a7;
    font-weight: 600;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    width: 100%;
    margin-bottom: 50px;
}

.treatment-card {
    background-color: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

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

.treatment-image {
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    flex: 0 0 auto;
    position: relative;
}

.treatment-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.treatment-card:hover .treatment-image img {
    transform: scale(1.05);
}

.treatment-card h3 {
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #3d3b3c;
    font-weight: 600;
    margin: 0;
    background-color: #f5f5f5;
}

.treatment-quote {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-style: italic;
    color: #3d3b3c;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Responsividade para a seção de tratamentos */
@media (max-width: 992px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Consultation Process Section */
.consultation-process {
    background-color: #f9f9f9;
    padding: 80px 0;
    width: 100%;
    overflow: visible;
    position: relative;
}

.consultation-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 1000px;
}

.consultation-intro {
    flex: 0 0 40%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
    padding-top: 0;
    z-index: 10;
}

.consultation-intro h2 {
    font-size: 2.5rem;
    color: #7C90A7;
    margin-bottom: 10px;
    font-weight: 600;
    white-space: normal;
}

.consultation-intro p {
    color: #3d3b3c;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.consultation-steps {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding-top: 80px;
    margin-top: 0;
    padding-bottom: 80px;
}

.step-item {
    display: flex;
    gap: 20px;
    border-radius: 15px;
    overflow: hidden;
    padding: 40px;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item:nth-child(1) {
    background: linear-gradient(135deg, #7C90A7 0%, #5d6e80 100%);
    border-left: 5px solid rgba(255, 255, 255, 0.3);
}

.step-item:nth-child(2) {
    background: linear-gradient(135deg, #6d7f95 0%, #5d6e80 100%);
    border-left: 5px solid rgba(255, 255, 255, 0.3);
}

.step-item:nth-child(3) {
    background: linear-gradient(135deg, #5d6e80 0%, #4d5d6c 100%);
    border-left: 5px solid rgba(255, 255, 255, 0.3);
}

.step-item:nth-child(4) {
    background: linear-gradient(135deg, #4d5d6c 0%, #3d4c5a 100%);
    border-left: 5px solid rgba(255, 255, 255, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(1.2) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    transition: transform 0.3s ease;
}

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

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsividade para a seção de consulta */
@media (max-width: 992px) {
    .consultation-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .consultation-intro {
        position: static;
        width: 100%;
        text-align: center;
    }
    
    .consultation-steps {
        width: 100%;
    }
}

@media (max-width: 768px) {
    /* Treatments section */
    .treatments {
        padding: 60px 0;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
    }
    
    .treatment-card {
        width: 100%;
        max-width: 350px;
        margin: 0 auto 20px;
        height: auto;
        border-radius: 10px;
        overflow: hidden;
        background-color: #f5f5f5;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .treatment-image {
        height: 250px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f5f5f5;
        flex: 0 0 auto;
        border-radius: 10px 10px 0 0;
        max-width: 350px;
    }
    
    .treatment-image img {
        max-width: 90%;
        max-height: 90%;
    }
    
    .obesity-image {
        max-width: 85%;
        max-height: 85%;
        margin: 0 auto;
    }
    
    .treatment-card h3 {
        padding: 15px;
        font-size: 1.3rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .treatment-quote {
        font-size: 1rem;
    }
    
    /* Consultation Process Section */
    .consultation-process {
        padding: 60px 0;
    }
    
    .step-item {
        padding: 20px;
    }
    
    .consultation-intro h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    /* Hero section */
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-header {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2,
    .consultation-intro h2 {
        font-size: 1.8rem;
        white-space: normal;
        hyphens: manual;
    }
    
    .section-header h2.secondary-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .consultation-intro h2 br,
    .section-header h2 br {
        display: none;
    }
    
    .symptoms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin: 20px 0;
        width: 100%;
        overflow: visible;
        padding: 0 5px;
        box-sizing: border-box;
    }
    
    .symptom-item {
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        margin: 0;
        overflow: hidden;
    }
    
    .symptom-item i {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }
    
    .symptom-item span {
        font-size: 0.9rem;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-content {
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .consultation-intro h2 {
        font-size: 2.8rem;
    }
}

/* Responsividade para a seção Sobre a Médica */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Estilos para a seção de contato e consultório */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 125, 154, 0.05) 0%, rgba(106, 122, 148, 0.1) 100%);
    z-index: 0;
}

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

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

.contact-subtitle {
    color: #5A7D9A;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px 15px;
    width: 300px;
    transition: transform 0.3s ease;
    background: transparent;
    height: 100%;
    justify-content: space-between;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0.9;
}

.whatsapp-contact .contact-icon {
    color: #25D366;
    background-color: transparent;
}

.location-contact .contact-icon {
    color: #5A7D9A;
    background-color: transparent;
}

.contact-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.contact-text p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.address-line {
    margin: 2px 0;
    line-height: 1.4;
}

.address-line:last-of-type {
    margin-bottom: 15px;
}

.btn-contact {
    display: inline-block;
    padding: 10px 22px;
    background-color: #5A7D9A;
    color: white;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 5px;
    text-align: center;
}

.btn-contact:hover {
    background-color: #4a6a84;
    color: white;
    transform: translateY(-2px);
}

.office-gallery {
    margin-top: 30px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    overflow: hidden;
    border-radius: 15px;
}

/* Responsividade para tablets */
@media (max-width: 992px) {
    .gallery-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

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

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

/* Estilos para a seção da Dra. Maria Angélica */
.doctor-profile {
    background: linear-gradient(135deg, #7C90A7 0%, #5d6e80 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.doctor-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0.6;
    z-index: 1;
}

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

.doctor-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.doctor-image {
    flex: 0 0 45%;
}

.doctor-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.doctor-image img:hover {
    transform: scale(1.02);
}

.doctor-info {
    flex: 0 0 50%;
}

.doctor-info h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: white;
}

.credentials {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.doctor-bio {
    margin-bottom: 30px;
}

.doctor-bio p {
    margin-bottom: 15px;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Estilos para a seção de Contato e Localização */
.location-section {
    padding: 80px 0;
    background-color: #e9f0f7;
}

.location-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.location-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #5A7D9A;
}

.location-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.location-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.location-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.location-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #5A7D9A;
    background-color: rgba(90, 125, 154, 0.1);
    border-radius: 50%;
}

.location-text p {
    margin: 0;
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.location-text p:first-child {
    font-weight: 600;
}

.instagram-link,
.phone-link,
.whatsapp-link {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.instagram-link:hover,
.phone-link:hover {
    color: #5A7D9A;
}

.whatsapp-link:hover {
    color: #25D366;
}

.location-map {
    flex: 1.5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 450px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.location-cta {
    margin-top: 25px;
    text-align: center;
}

.btn-schedule {
    display: inline-block;
    padding: 14px 30px;
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-schedule:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.btn-appointment i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-appointment:hover {
    background-color: #3d8b40;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsividade para a seção da Dra. Maria Angélica */
@media (max-width: 992px) {
    .doctor-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .doctor-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .doctor-info {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .doctor-info h2 {
        font-size: 2.2rem;
    }
    
    .credentials {
        font-size: 1rem;
    }
    
    .doctor-bio p {
        font-size: 1rem;
    }
}

/* Estilos para a seção Programa de Emagrecimento */
.weight-loss-program {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
}

.program-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-info {
    flex: 0 0 50%;
}

.program-info h2 {
    color: #7C90A7;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.program-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #3d3b3c;
    margin-bottom: 30px;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: #7C90A7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-text h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #7C90A7;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555;
}

.program-image {
    flex: 0 0 45%;
}

.program-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.program-image img:hover {
    transform: scale(1.02);
}

.btn-program {
    display: inline-block;
    background: linear-gradient(135deg, #7C90A7 0%, #5d6e80 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.btn-program:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsividade para a seção Programa de Emagrecimento */
@media (max-width: 992px) {
    .program-content {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0 20px;
    }
    
    .program-info, .program-image {
        width: 100%;
    }
    
    .program-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Estilos para a seção de Avaliações Google */
.testimonials-section {
    background-color: #f5f8fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(124, 144, 167, 0.1), transparent 70%);
    z-index: 0;
}

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

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

.testimonials-section .section-header {
    text-align: center;
}

.testimonials-section .section-header .primary-title {
    color: #000000;
    font-size: 1.8rem;
    margin-bottom: 5px;
    display: block;
}

.testimonials-section .section-header .secondary-title {
    color: #8797b2;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    display: block;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 0 20px;
}

/* Estilos do carrossel de depoimentos */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 40px;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    width: 100%;
    margin-bottom: 30px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 90%;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
    min-height: 280px;
    box-sizing: border-box;
    margin: 0 5%;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-content {
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(124, 144, 167, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
}

.testimonial-author {
    font-weight: 600;
    color: #7C90A7;
    margin-top: 20px;
    text-align: right;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.carousel-control {
    background-color: #7C90A7;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: #5d6e80;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #7C90A7;
    transform: scale(1.2);
}

/* Responsividade para a seção de Avaliações */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header h3 {
        font-size: 1.3rem;
    }
    
    .testimonial-slide {
        flex: 0 0 90%;
        margin: 0 5%;
        padding: 25px;
        height: auto;
        min-height: 300px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        width: 90%;
        box-sizing: border-box;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .carousel-controls {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .program-info h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .program-description {
        text-align: center;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-text {
        text-align: center;
    }
    
    .btn-program {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 250px;
    }
}

@media (max-width: 992px) {
    .about-text h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .about-doctor {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .mission p {
        font-size: 1rem;
    }
}
/* Estilo para o texto de atendimento particular */
.atendimento-particular {
    color: #5a7d9a; /* Cor mais escura e visível */
    font-size: 1.5rem;
    font-weight: 600; /* Peso mais forte para destacar */
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
}

@media (max-width: 768px) {
    .atendimento-particular {
        font-size: 0.9rem; /* Tamanho maior para melhor visibilidade */
        text-align: center;
        font-weight: 500; /* Peso médio para destacar */
        color: #5a7d9a; /* Mesma cor do desktop */
        letter-spacing: 0.2px;
        margin-top: -5px;
        margin-bottom: 15px;
        text-transform: none;
    }
}/* E
stilo para o texto de atendimento particular - versão mais visível */
.atendimento-particular {
    color: #0a3b5c; /* Cor mais escura e contrastante */
    font-size: 1.6rem;
    font-weight: 600; /* Peso mais forte para destacar */
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
}

@media (max-width: 768px) {
    .atendimento-particular {
        font-size: 1.1rem; /* Tamanho maior para melhor visibilidade */
        text-align: center;
        font-weight: 600; /* Peso mais forte para destacar */
        color: #0a3b5c; /* Cor mais escura e contrastante */
        letter-spacing: 0.2px;
        margin-top: -5px;
        margin-bottom: 15px;
        text-transform: none;
    }
}/* Estilo
 para o texto de atendimento particular - ajuste final */
.atendimento-particular {
    color: #0a3b5c; /* Cor mais escura e contrastante */
    font-size: 1.6rem; /* Aproximadamente 57% do tamanho do H1 (2.8rem) */
    font-weight: 600; /* Peso mais forte para destacar */
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: none;
}

@media (max-width: 768px) {
    .atendimento-particular {
        font-size: 1.15rem; /* Aproximadamente 57% do tamanho do H1 mobile (2rem) */
        text-align: center;
        font-weight: 500; /* Um pouco mais leve que o desktop */
        color: #0a3b5c; /* Mesma cor do desktop */
        letter-spacing: 0.2px;
        margin-top: 5px; /* Espaçamento normal como no desktop */
        margin-bottom: 15px;
        text-transform: none;
    }
}/* C
ORREÇÃO URGENTE - Texto atendimento particular no mobile */
@media (max-width: 768px) {
    .atendimento-particular {
        font-size: 0.7rem !important; /* Muito menor no mobile */
        text-align: center !important;
        font-weight: 400 !important; /* Mais leve */
        color: #5a7d9a !important; /* Cor mais suave */
        letter-spacing: 0.1px !important;
        margin-top: 2px !important;
        margin-bottom: 15px !important;
        text-transform: none !important;
    }
}/* CORREÇÃO
 URGENTE - Texto atendimento particular MUITO MENOR no mobile */
@media (max-width: 768px) {
    .atendimento-particular {
        font-size: 0.5rem !important; /* MUITO PEQUENO */
        text-align: center !important;
        font-weight: 300 !important; /* MUITO LEVE */
        color: #7c90a7 !important; /* Cor mais clara */
        letter-spacing: 0.05px !important;
        margin-top: -5px !important; /* MARGEM NEGATIVA */
        margin-bottom: 5px !important; /* MARGEM MUITO PEQUENA */
        text-transform: none !important;
        line-height: 1 !important; /* ALTURA DE LINHA MÍNIMA */
        padding: 0 !important;
    }
}