/* ============================================
   PSICANALISE SP — Main Stylesheet
   ============================================ */

/* === VARIABLES === */
:root {
    --color-bg: #F7F5F2;
    --color-fg: #1A1A1A;
    --color-accent: #C4A77D;
    --color-muted: #6B6560;
    --color-surface: #EDEAE6;
    --color-border: #D9D4CE;
    --color-overlay: rgba(26, 26, 26, 0.45);
    --color-footer-bg: #1A1A1A;
    --color-footer-text: #F7F5F2;
    --color-footer-muted: #9B9590;
    --color-whatsapp: #25D366;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --container: 1120px;
    --container-narrow: 720px;
    --section-y: 120px;
    --section-y-sm: 80px;
}

/* === SKIP LINK (accessibility) === */
.skip-link {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
    background: #1A1A1A;
    color: #F7F5F2;
    padding: 12px 24px;
    z-index: 100000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.skip-link:focus {
    position: fixed;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* === RESET & BASE === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-fg);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.25s ease, color 0.25s ease;
}

a:hover {
    opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.25;
    color: var(--color-fg);
}

h1 { font-size: 56px; font-weight: 300; }
h2 { font-size: 40px; }
h3 { font-size: 22px; font-family: var(--font-sans); font-weight: 500; line-height: 1.35; }
h4 { font-size: 18px; font-family: var(--font-sans); font-weight: 500; }

p {
    margin-bottom: 1.2em;
}

p:last-child {
    margin-bottom: 0;
}

ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1.2em;
}

li {
    margin-bottom: 0.5em;
}

/* === LAYOUT === */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.section-padding-sm {
    padding-top: var(--section-y-sm);
    padding-bottom: var(--section-y-sm);
}

/* === HEADER === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    z-index: 1000;
    transition: background-color 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(247, 245, 242, 0.95);
    backdrop-filter: blur(8px);
    border-bottom-color: var(--color-border);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo a {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-fg);
    letter-spacing: 0.02em;
}

/* === NAVIGATION === */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-fg);
    text-decoration: none;
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-fg);
    transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after,
.nav-menu .current_page_item a::after {
    width: 100%;
}

.nav-menu a:hover {
    opacity: 1;
}

/* Menu toggle (mobile) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    display: block;
    width: 20px;
    height: 1.5px;
    background-color: var(--color-fg);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* === HERO === */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: var(--container-narrow);
    padding: 0 24px;
    color: var(--color-footer-text);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: 56px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--color-footer-text);
}

.hero-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, opacity 0.25s ease;
}

.btn-primary {
    background-color: var(--color-fg);
    color: var(--color-bg);
}

.btn-primary:hover {
    background-color: var(--color-muted);
    opacity: 1;
}

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

.btn-secondary:hover {
    background-color: var(--color-fg);
    color: var(--color-bg);
    opacity: 1;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    opacity: 1;
}

.btn-whatsapp svg {
    width: 16px;
    height: 16px;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero .btn-primary {
    background-color: var(--color-footer-text);
    color: var(--color-fg);
}

.hero .btn-primary:hover {
    background-color: var(--color-surface);
}

.hero .btn-secondary {
    border-color: var(--color-footer-text);
    color: var(--color-footer-text);
}

.hero .btn-secondary:hover {
    background-color: var(--color-footer-text);
    color: var(--color-fg);
}

/* === SECTION LABEL === */
.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.section-label-line {
    width: 32px;
    height: 1px;
    background-color: var(--color-border);
    flex-shrink: 0;
}

.section-label-text {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-muted);
}

/* === INTRO SECTION === */
.intro-section {
    background-color: var(--color-bg);
}

.intro-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    margin-bottom: 32px;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.intro-content p:last-of-type {
    margin-bottom: 0;
}

/* === SERVICES GRID === */
.services-section {
    background-color: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    padding: 40px 32px;
    background-color: var(--color-bg);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-muted);
    margin-bottom: 0;
}

/* === ABOUT SECTION (Sobre) === */
.about-section {
    background-color: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-content h2 {
    margin-bottom: 32px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.about-cta {
    margin-top: 32px;
}

/* === PSICANÁLISE SECTION === */
.psicanalise-section {
    background-color: var(--color-surface);
}

.psicanalise-content {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.psicanalise-content h2 {
    text-align: center;
    margin-bottom: 48px;
}

.psicanalise-block {
    margin-bottom: 48px;
}

.psicanalise-block:last-child {
    margin-bottom: 0;
}

.psicanalise-block h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.psicanalise-block p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-muted);
}

.psicanalise-block ul {
    color: var(--color-muted);
    font-size: 16px;
    line-height: 1.75;
}

.psicanalise-block strong {
    color: var(--color-fg);
    font-weight: 500;
}

/* === ATENDIMENTO SECTION === */
.atendimento-section {
    background-color: var(--color-bg);
}

.atendimento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.atendimento-info h2 {
    margin-bottom: 32px;
}

.atendimento-info p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.atendimento-details {
    margin: 32px 0;
    padding: 24px;
    background-color: var(--color-surface);
}

.atendimento-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 15px;
}

.atendimento-detail-item:last-child {
    border-bottom: none;
}

.atendimento-detail-label {
    font-weight: 500;
    color: var(--color-fg);
}

.atendimento-detail-value {
    color: var(--color-muted);
}

.atendimento-cta {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--color-border);
    background-color: var(--color-bg);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    color: var(--color-fg);
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background-color: var(--color-surface);
}

.faq-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--color-fg);
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 100%;
    height: 1.5px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.faq-icon::after {
    width: 1.5px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0;
}

/* === BLOG SECTION === */
.blog-section {
    background-color: var(--color-surface);
}

.blog-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
}

.blog-section-header h2 {
    margin-bottom: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: var(--color-bg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-card-link:hover {
    opacity: 1;
}

.blog-card-image {
    overflow: hidden;
    aspect-ratio: 16/9;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.03);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-date {
    display: block;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.blog-card-title {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.35;
    margin-bottom: 12px;
    color: var(--color-fg);
}

.blog-card-excerpt {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === PAGE HEADER (internas) === */
.page-header {
    padding-top: 140px;
    padding-bottom: 64px;
    background-color: var(--color-surface);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-muted);
    max-width: var(--container-narrow);
    margin: 0 auto;
}

/* === PAGE CONTENT === */
.page-content {
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
    background-color: var(--color-bg);
}

.page-content h2 {
    margin-top: 48px;
    margin-bottom: 24px;
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content h3 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-muted);
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    font-size: 17px;
    line-height: 1.75;
    color: var(--color-muted);
    margin-bottom: 24px;
}

.page-content strong {
    color: var(--color-fg);
    font-weight: 500;
}

.page-content blockquote {
    border-left: 2px solid var(--color-accent);
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: var(--color-fg);
}

/* === CONTACT SECTION === */
.contact-section {
    background-color: var(--color-bg);
    padding-top: var(--section-y);
    padding-bottom: var(--section-y);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 24px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-muted);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    padding: 32px;
    background-color: var(--color-surface);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.contact-method h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.contact-method p {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 16px;
}

.contact-method .btn {
    width: 100%;
}

.contact-disclaimer {
    margin-top: 32px;
    padding: 20px;
    background-color: var(--color-surface);
    font-size: 13px;
    line-height: 1.6;
    color: var(--color-muted);
    text-align: center;
}

.contact-disclaimer strong {
    color: var(--color-fg);
    font-weight: 500;
}

.contact-address {
    padding: 32px;
    background-color: var(--color-surface);
}

.contact-address h3 {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.contact-address p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
    margin-bottom: 8px;
}

.contact-address .address-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    font-size: 13px;
}

/* === PAGINATION === */
.pagination {
    margin-top: 64px;
    text-align: center;
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    font-size: 14px;
    color: var(--color-fg);
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination a:hover {
    background-color: var(--color-fg);
    color: var(--color-bg);
    opacity: 1;
}

.pagination .current {
    background-color: var(--color-fg);
    color: var(--color-bg);
    border-color: var(--color-fg);
}

/* === NO POSTS === */
.no-posts {
    text-align: center;
    padding: 64px 0;
    color: var(--color-muted);
    font-size: 18px;
}

/* === FOOTER === */
.site-footer {
    background-color: var(--color-footer-bg);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-accent-line {
    width: 40px;
    height: 2px;
    background-color: var(--color-accent);
    margin-bottom: 20px;
}

.footer-name {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--color-footer-text);
    margin-bottom: 4px;
}

.footer-role {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-footer-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.footer-crp {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--color-footer-muted);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-footer-text);
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 15px;
    color: var(--color-footer-text);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-nav a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-footer-muted);
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.25s ease;
}

.footer-contact-link:hover {
    color: var(--color-footer-text);
    opacity: 1;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-address {
    margin-top: 20px;
    font-style: normal;
    font-size: 13px;
    line-height: 1.7;
    color: var(--color-footer-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(247, 245, 242, 0.1);
    padding: 24px 0;
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-footer-muted);
    text-align: center;
    margin: 0;
}

/* === SCROLL ANIMATIONS === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.12s; }
.stagger-2 { transition-delay: 0.24s; }
.stagger-3 { transition-delay: 0.36s; }
.stagger-4 { transition-delay: 0.48s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-col-identity {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-y: 80px;
        --section-y-sm: 56px;
    }
    
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    h3 { font-size: 20px; }
    
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    /* Mobile menu */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-bg);
        backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        transform: translateX(100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu a {
        font-size: 24px;
        font-family: var(--font-serif);
        font-weight: 300;
        text-transform: none;
        letter-spacing: 0;
    }
    
    .menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }
    
    .menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Grids */
    .services-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .atendimento-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .page-header {
        padding-top: 100px;
    }
    
    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .atendimento-cta {
        align-items: stretch;
    }
    
    .atendimento-cta .btn {
        width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    /* Scroll animation mobile */
    .animate-on-scroll {
        transform: translateY(24px);
    }
    
    .animate-on-scroll.animated {
        transition-duration: 0.6s;
    }
}

/* === PRINT STYLES === */
@media print {
    .site-header,
    .site-footer,
    .menu-toggle,
    .hero-overlay,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }
    
    a {
        text-decoration: underline;
    }
    
    .page-content,
    .section-padding {
        padding: 0;
    }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* === ACCESSIBILITY FOCUS === */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* === SELECTION === */
::selection {
    background-color: var(--color-accent);
    color: var(--color-fg);
}
