/* Estilos globais - Design moderno */
:root {
    /* Paleta de cores da fibromialgia - roxo/lavanda */
    --primary-gradient-start: #9969FF;
    --primary-gradient-end: #703FCD;
    --primary-color: #8A4FFF;
    --primary-dark: #5D3FD3;
    --primary-light: #EDE4FF;
    --accent-color: #FF7B9C;
    --text-color: #000000;
    --text-light: #4d4c4c;
    --background-color: #FFFFFF;
    --background-alt: #F8F9FA;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(138, 79, 255, 0.1);
    --shadow-md: 0 4px 12px rgba(138, 79, 255, 0.15);
    --shadow-lg: 0 8px 24px rgba(138, 79, 255, 0.2);
    --border-radius: 12px;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.9;
    color: var(--text-color);
    background-color: var(--background-alt);
    font-size: 16px;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Tipografia moderna */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.5;
    color: var(--text-color);
    margin-top: 1.5rem;
}

h1 { font-size: 2.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2rem; margin-bottom: 1.2rem; }
h3 { font-size: 1.5rem; margin-bottom: 1rem; }

p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.9;
}

/* Cabeçalho com gradiente */
.header {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.header::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.header::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.header h1 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: white;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.tagline {
    font-weight: 400;
    opacity: 0.9;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color:#333333
}

/* Navegação moderna */
.main-nav {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    margin-bottom: 3rem;
}

.nav-container {
    display: flex;
    justify-content: center; /* Modificado para centralizar a navegação */
    align-items: center;
}

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

.main-nav li {
    margin: 0;
}

.main-nav a {
    display: block;
    color: var(--text-color);
    text-decoration: none;
    padding: 20px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after,
.main-nav li.active a::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.main-nav li.active a {
    color: var(--primary-color);
}

/* Conteúdo principal */
.main-content {
    padding: 60px 0;
}

/* Seção de boas vindas */
.welcome-section {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 48px;
    margin-bottom: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.welcome-section h2 {
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.welcome-section p {
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

/* Botões modernos */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    border: none;
    box-shadow: var(--shadow-sm);
}

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

.btn-primary:active {
    transform: translateY(0);
}

/* Cards de recursos - design moderno */
.feature-section {
    margin-bottom: 80px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: 16px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Formulários modernos */
form {
    background: var(--background-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    margin-top: 2rem;
    margin-bottom: 3rem;
}

label {
    display: block;
    margin: 24px 0 12px;
    color: var(--text-color);
    font-weight: 500;
}

input[type="number"],
input[type="text"],
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Ajuste para campos de data e hora */
input[type="date"],
input[type="time"] {
    width: auto; /* Permite que o navegador defina uma largura padrão */
    max-width: 200px; /* Define uma largura máxima */
    padding: 16px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus,
textarea:focus,
select:focus,
input[type="date"]:focus,
input[type="time"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(138, 79, 255, 0.1);
}

button {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    border: none;
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Histórico de registros */
.history {
    margin-top: 32px;
}

.record {
    background: var(--background-color);
    padding: 24px;
    margin: 16px 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 28px;
}

.record::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gradient-start), var(--primary-gradient-end));
    border-radius: 4px 0 0 4px;
}

.record:hover {
    box-shadow: var(--shadow-md);
}

/* Mais espaçamento entre registros na página de registros */
.record-item {
    margin-bottom: 32px;
}

/* Rodapé */
.footer {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    text-align: center;
    padding: 60px 0;
    margin-top: 80px;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav li {
        margin: 0;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-section,
    .feature-card,
    form,
    .record {
        padding: 24px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.2rem; }

    .nav-container {
        flex-direction: column;
    }
}

/* Estilos para o formulário de registro */
.form-section {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
}

.symptom-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: none;
    padding: 0;
    box-shadow: none;
    border: none;
}

.form-date {
    margin-bottom: 10px;
}

.form-date input {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

/* Estilo para sliders */
.slider-container {
    margin-bottom: 24px;
}

.slider-with-value {
    display: flex;
    align-items: center;
    gap: 15px;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color));
    outline: none;
    transition: opacity 0.2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.1);
}

.slider-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    border-radius: 50%;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Estilos para campo de anotações */
.notes-container {
    margin-bottom: 24px;
}

.notes-container textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    resize: vertical;
    min-height: 120px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.notes-container textarea::placeholder {
    color: #AAA;
}

.notes-container textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(138, 79, 255, 0.1);
}

/* Painel informativo */
.info-panel {
    background-color: var(--primary-light);
    padding: 24px;
    border-radius: var(--border-radius);
    margin-top: 32px;
}

.info-panel h3 {
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.info-panel ul {
    margin-left: 20px;
    color: var(--text-color);
}

.info-panel li {
    margin-bottom: 8px;
}

/* Seções */
.intro, .how-to-use, .features {

    padding: 1rem 0;
}

/* Features */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    margin-bottom: 0.5rem;
}

.feature-icon {
    margin-right: 1rem;
    font-size: 1.3rem;
}

/* Estilos para modais */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 600px;
    width: 100%;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-dark);
}

/* Estilos para cards de registro */
.record-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.record-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.record-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: var(--primary-light);
    border-bottom: 1px solid var(--border-color);
}

.record-header h4 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.record-actions {
    display: flex;
    gap: 10px;
}

.edit-btn, .delete-btn {
    padding: 6px 12px;
    font-size: 0.9rem;
    border-radius: 20px;
}

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

.delete-btn {
    background-color: #ff4757;
    color: white;
}

.record-body {
    padding: 20px;
}

.record-field {
    margin-bottom: 8px;
    line-height: 1.5;
}

.record-field:last-child {
    margin-bottom: 0;
}

/* Estilos para formulários */
.form-group {
    margin-bottom: 24px;
}

/* Novo: Estilo para agrupar campos na mesma linha */
.form-row {
    display: flex;
    gap: 20px; /* Espaço entre os grupos de data e hora */
    align-items: flex-end; /* Alinha os itens na base */
    margin-bottom: 28px; /* Mantém a margem inferior */
}

.form-group-inline {
    display: flex;
    flex-direction: column; /* Coloca label acima do input */
    flex-grow: 1; /* Permite que os grupos cresçam se necessário */
}

.form-group-inline label {
    margin-bottom: 8px; /* Reduz a margem abaixo do label */
    margin-top: 0; /* Remove margem superior do label dentro do grupo */
}

/* Ajusta a margem inferior dos inputs dentro do grupo inline */
.form-group-inline input[type="date"],
.form-group-inline input[type="time"] {
    margin-bottom: 0;
    width: 100%; /* Faz com que ocupem o espaço disponível no flex container */
    max-width: none; /* Remove a largura máxima anterior para permitir flexibilidade */
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* Mensagens de feedback */
.message {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-weight: 500;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transition: all 0.3s ease;
}

.message.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.message-success {
    background-color: #2ecc71;
}

.message-error {
    background-color: #e74c3c;
}

.message-info {
    background-color: var(--primary-color);
}

/* Estilos para sliders na página de registro */
.slider-container {
    margin-bottom: 1.5rem; /* Ajuste de margem */
}

.slider-container label {
    display: block;
    margin-bottom: 0.8rem; /* Espaço entre label e slider */
    font-weight: 500;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    cursor: pointer;
    appearance: none; /* Remove estilos padrão */
    background: linear-gradient(to right, var(--primary-light), var(--primary-color)); /* Gradiente no track */
    border-radius: 5px;
    outline: none;
    transition: opacity 0.2s;
    margin-bottom: 0; /* Remove margem padrão do input */
}

/* Estilo do "polegar" (thumb) do slider para Webkit/Blink (Chrome, Safari, Edge) */
.slider-container input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Estilo do "polegar" (thumb) do slider para Firefox */
.slider-container input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    background: var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    border: none; /* Remove borda padrão do Firefox */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.slider-container input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.1);
}

/* Estilo para o span que mostra o valor */
.slider-container span {
    display: inline-block;
    min-width: 25px; /* Garante espaço mínimo */
    text-align: center;
    font-weight: 600;
    color: var(--primary-dark);
    margin-left: 5px; /* Espaço entre o texto e o número */
}

/* Estilos específicos para a página Sobre Fibromialgia */
.info-section {
    background: var(--background-color);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.info-section h2 {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

.info-section h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 0.5rem;
}

/* Grid para sintomas */
.symptom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.symptom-card {
    background: linear-gradient(135deg, var(--primary-light), #F0F8FF);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.symptom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.symptom-card h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.symptom-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Lista de sintomas estilizada */
.symptoms-list {
    list-style: none;
    padding: 0;
}

.symptoms-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.symptoms-list li:hover {
    background-color: var(--primary-light);
    padding-left: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid transparent;
}

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

/* Grid para fatos importantes */
.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.fact-card {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-light);
    transition: border-color 0.3s ease;
}

.fact-card:hover {
    border-color: var(--primary-color);
}

.fact-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.fact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Seção de tratamento */
.treatment-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.treatment-item {
    display: flex;
    align-items: center;
    background: var(--background-alt);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    transition: transform 0.3s ease;
}

.treatment-item:hover {
    transform: translateX(10px);
}

.treatment-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    min-width: 2rem;
}

/* Seção destacada */
.highlight-section {
    background: linear-gradient(135deg, var(--primary-light), #E6F3FF);
    border-left: 4px solid var(--accent-color);
}

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

.benefits-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(138, 79, 255, 0.1);
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.benefits-list li:hover {
    background-color: rgba(138, 79, 255, 0.05);
    padding-left: 1rem;
    border-radius: 8px;
    border-bottom: 1px solid transparent;
}

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

/* Seção CTA (Call to Action) */
.cta-section {
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: white;
    text-align: center;
    border-left: none;
}

.cta-section h3 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-dark);
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Footer */
footer {
    background: var(--primary-dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .info-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .symptom-grid,
    .facts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .treatment-item {
        padding: 0.8rem 1rem;
    }
    
    .treatment-item:hover {
        transform: translateX(5px);
    }
}