/**
 * Theme Name: InDoctors
 * Description: A custom WordPress theme with design tokens from Figma
 * Author: Lucas
 * Version: 1.0.0
 * License: GPL-2.0+
 * Text Domain: indoctors
 */


/**
 * Global Styles
 */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--grey-10);
  background-color: var(--white);
  line-height: 1.5;
}

/**
 * Accessibility
 */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--white);
  clip: auto !important;
  clip-path: none;
  color: var(--grey-10);
  display: block;
  font-size: 14px;
  font-weight: 500;
  height: auto;
  left: 8px;
  top: 8px;
  padding: 12px 20px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
  border: 1px solid var(--grey-100);
}

/**
 * Typography
 */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--grey-10);
  transition: color 0.2s ease;
  text-decoration: underline;
  text-underline-offset: 0.6rem;
}

a:hover {
  color: var(--aqua-60);
  text-decoration: underline;
}

/**
 * Layout
 */

.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding-left: clamp(1rem, 4.17vw, 5rem);
  padding-right: clamp(1rem, 4.17vw, 5rem);
}

/* 1920px viewport → padding 80px cada lado → área útil 1760px */

/**
 * WordPress Utility Classes
 */


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

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