* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 24px;
    color: #008080;
}

.logo span {
    color: #004c4c;
}

.logo p {
    font-size: 12px;
    color: #666;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #008080;
}

.btn-acesso {
    background: #008080;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 5px;
}

.btn-acesso:hover {
    background: #006666;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #008080 0%, #004c4c 100%);
    color: #fff;
    padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: #ffd700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary {
    background: #ffd700;
    color: #333;
}

.btn-primary:hover {
    background: #ffed4a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Stats */
.hero-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    font-weight: 800;
}

.stat p {
    font-size: 14px;
    opacity: 0.8;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    color: #008080;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Diferenciais */
.diferenciais {
    padding: 80px 0;
    background: #f8f9fa;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.diferencial:hover {
    transform: translateY(-5px);
}

.diferencial .icon {
    font-size: 48px;
    color: #008080;
    margin-bottom: 20px;
}

.diferencial h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Especialidades */
.especialidades {
    padding: 80px 0;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.especialidade {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s;
}

.especialidade:hover {
    background: #008080;
    color: #fff;
}

.especialidade i {
    font-size: 48px;
    color: #008080;
    margin-bottom: 20px;
}

.especialidade:hover i {
    color: #fff;
}

.especialidade h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Depoimentos */
.depoimentos {
    padding: 80px 0;
    background: #f8f9fa;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.depoimento {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.depoimento .quote {
    font-size: 30px;
    color: #008080;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.depoimento p {
    margin-bottom: 20px;
    font-style: italic;
}

.paciente h4 {
    color: #008080;
    margin-bottom: 5px;
}

.paciente span {
    font-size: 12px;
    color: #666;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #008080 0%, #004c4c 100%);
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
    margin-top: 70px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

/* História */
.historia {
    padding: 80px 0;
}

.historia-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.historia-texto h2 {
    font-size: 32px;
    color: #008080;
    margin-bottom: 20px;
}

.historia-texto p {
    margin-bottom: 15px;
}

.historia-imagem img {
    width: 100%;
    border-radius: 10px;
}

/* Missão, Visão, Valores */
.mvv {
    padding: 80px 0;
    background: #f8f9fa;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mvv-card .icon {
    font-size: 48px;
    color: #008080;
    margin-bottom: 20px;
}

.mvv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #008080;
}

/* Estrutura */
.estrutura {
    padding: 80px 0;
}

.estrutura-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.estrutura-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
}

.estrutura-item i {
    font-size: 48px;
    color: #008080;
    margin-bottom: 15px;
}

.estrutura-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Serviços Lista */
.servicos-lista {
    padding: 80px 0;
}

.servico-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.servico-item:hover {
    transform: translateX(10px);
    background: #e9ecef;
}

.servico-icon {
    font-size: 48px;
    color: #008080;
}

.servico-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #008080;
}

/* Equipe Médicos */
.equipe-medicos, .equipe-enfermeiros {
    padding: 80px 0;
}

.medicos-grid, .enfermeiros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.medico-card, .enfermeiro-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s;
}

.medico-card:hover, .enfermeiro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.medico-img, .enfermeiro-img {
    font-size: 64px;
    color: #008080;
    margin-bottom: 15px;
}

.medico-card h3, .enfermeiro-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.especialidade, .coren {
    color: #008080;
    font-weight: 600;
    margin-bottom: 10px;
}

.descricao {
    font-size: 14px;
    color: #666;
}

/* Contato */
.contato-info {
    padding: 80px 0;
}

.contato-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contato-dados ul {
    list-style: none;
    margin: 20px 0;
}

.contato-dados li {
    margin-bottom: 15px;
}

.contato-dados li i {
    width: 30px;
    color: #008080;
}

.social-contato {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-contato a {
    text-decoration: none;
    color: #fff;
    background: #008080;
    padding: 8px 15px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s;
}

.social-contato a:hover {
    background: #006666;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #008080;
}

.mapa {
    padding: 0 0 80px;
}

.mapa h2 {
    text-align: center;
    font-size: 32px;
    color: #008080;
    margin-bottom: 30px;
}

.mapa-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-col h3 span {
    color: #008080;
}

.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #008080;
}

.social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social a {
    color: #fff;
    background: #333;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.social a:hover {
    background: #008080;
}

.horario li span {
    font-weight: 600;
    color: #008080;
}

.contato li i {
    width: 25px;
    color: #008080;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Login Page */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #008080 0%, #004c4c 100%);
}

.login-box {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo h1 {
    font-size: 28px;
    color: #008080;
}

.login-logo span {
    color: #004c4c;
}

.login-logo p {
    font-size: 12px;
    color: #666;
}

.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 20px;
    padding: 10px;
}

.input-group i {
    color: #008080;
    margin-right: 10px;
}

.input-group input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 16px;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background: #008080;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-login:hover {
    background: #006666;
}

.login-info {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    text-align: center;
    font-size: 12px;
}

.login-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .historia-content,
    .contato-grid {
        grid-template-columns: 1fr;
    }
    
    .servico-item {
        flex-direction: column;
        text-align: center;
    }
}