/*
Theme Name: AthosMed
Theme URI: https://athosmed.com.br
Author: Grupo AthosMed
Author URI: https://athosmed.com.br
Description: Tema profissional para Grupo AthosMed - Medicina e Segurança do Trabalho. Design moderno, responsivo e totalmente personalizável com Custom Post Types para Serviços e Hero Slides, painel de configurações completo e SEO otimizado.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: athosmed
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, full-width-template, custom-colors, editor-style, theme-options

AthosMed WordPress Theme, Copyright 2025 Grupo AthosMed
AthosMed is distributed under the terms of the GNU GPL
*/

/* 
 * Estilos principais são carregados via functions.php
 * Este arquivo é obrigatório para WordPress reconhecer o tema
 */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #0C1E33;
}

/* Cores da Marca */
:root {
  --athos-blue: #0C1E33;
  --athos-red: #E2272B;
  --athos-white: #FFFFFF;
  --athos-gray: #F3F4F6;
}

/* Smooth animations */
* {
  transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--athos-red);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c21f22;
}

/* Logo hover effect */
img {
  max-width: 100%;
  height: auto;
}

/* Button hover effects */
button, a {
  cursor: pointer;
}

/* Form inputs focus */
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--athos-red);
  box-shadow: 0 0 0 3px rgba(226, 39, 43, 0.1);
}

/* WordPress Alignment Classes */
.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* WordPress Gallery */
.gallery {
  margin: 0 auto 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
}
