* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

/* Menu de Navegação */
.menu {
    background-color: #1a73e8;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu ul {
    display: flex;
    justify-content: center;
    list-style-type: none;
    flex-wrap: wrap;
}

.menu li {
    margin: 0 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}

.menu a:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: relative;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.header-text {
    position: absolute;
    text-align: center;
    color: white;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
}

/* Content */
.content {
    flex: 1;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content h2 {
    color: #1a73e8;
    margin-bottom: 20px;
    border-bottom: 2px solid #1a73e8;
    padding-bottom: 10px;
    font-size: 2rem;
}

.content h3 {
    color: #0d47a1;
    margin: 25px 0 15px;
    font-size: 1.5rem;
}

.content h4 {
    color: #1a73e8;
    margin: 15px 0 10px;
}

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

.content ul, .content ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Tabelas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

table, th, td {
    border: 1px solid #ddd;
}

th, td {
    padding: 15px;
    text-align: left;
}

th {
    background-color: #1a73e8;
    color: white;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #e9f0fd;
}

/* Formulários */
form {
    max-width: 800px;
    margin: 30px 0;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border 0.3s;
}

input:focus, textarea:focus, select:focus {
    border-color: #1a73e8;
    outline: none;
    box-shadow: 0 0 5px rgba(26, 115, 232, 0.3);
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    cursor: pointer;
}

.radio-group input {
    width: auto;
    margin-right: 8px;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
}

button[type="reset"] {
    background-color: #6c757d;
}

button[type="reset"]:hover {
    background-color: #5a6268;
}

/* Footer */
.footer {
    background-color: #0d47a1;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

.footer p {
    margin: 8px 0;
}

/* Serviços */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.service-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.service-item h4 {
    color: #1a73e8;
    margin-bottom: 10px;
}

/* Informações de Contato */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.contact-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.contact-item h4 {
    color: #1a73e8;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

/* Mapa */
.map-container {
    margin: 30px 0;
}

iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-link {
    background-color: #1a73e8;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #0d47a1;
}

/* Informações importantes */
.important-info, .emergency-info, .certifications {
    background: #e9f0fd;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
    border-left: 4px solid #1a73e8;
}

.emergency-info {
    background: #ffe6e6;
    border-left: 4px solid #e74c3c;
}

/* Responsividade */
@media (max-width: 768px) {
    .menu ul {
        flex-direction: column;
        align-items: center;
    }
    
    .menu li {
        margin: 5px 0;
    }
    
    .header {
        height: 200px;
    }
    
    .header h1 {
        font-size: 2rem;
    }
    
    .content {
        padding: 20px;
    }
    
    .content h2 {
        font-size: 1.5rem;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 10px;
    }
}