/* ========================================
   JÉSSICA MOREIRA ADVOCACIA - LANDING PAGE
   CSS Puro - Mobile First
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #4A5D23;
    --color-primary-dark: #3D4D1C;
    --color-primary-light: #5A7029;
    --color-gold: #B8860B;
    --color-gold-light: #D4A84B;
    --color-white: #FFFFFF;
    --color-black: #1A1A1A;
    --color-gray-100: #F8F9F7;
    --color-gray-200: #E8EBE5;
    --color-gray-300: #D1D6CC;
    --color-gray-500: #6B7280;
    --color-gray-700: #374151;
    --color-gray-900: #111827;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-gray-700);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-gray-900);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
}

p {
    margin-bottom: 1rem;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-gray-200);
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-gray-700);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-header:hover {
    background: var(--color-primary-dark);
}

.icon-whatsapp {
    width: 18px;
    height: 18px;
}

/* Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-gray-900);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav.active {
    display: block;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-gray-200);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 1rem;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: transparent;
    color: var(--color-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: transparent;
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-white) 100%);
    overflow: hidden;
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 93, 35, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.hero-text {
    order: 2;
}

.hero-image {
    order: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.hero-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(74, 93, 35, 0.1);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--color-gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-bullets {
    margin-bottom: 2rem;
}

.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
}

.bullet-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.125rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.badge-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.badge-text span {
    font-size: 0.6875rem;
    color: var(--color-gray-500);
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(74, 93, 35, 0.1);
    color: var(--color-primary);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    margin-bottom: 0.875rem;
}

.section-title {
    color: var(--color-gray-900);
    margin-bottom: 1rem;
}

.section-title.light {
    color: var(--color-white);
}

.section-description {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.7;
}

/* ========================================
   EMPATIA SECTION
   ======================================== */
.empatia {
    padding: 60px 0;
    background: var(--color-white);
}

.empatia-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.empatia-text {
    font-size: 1.0625rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.empatia-highlight {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.7;
    padding: 1.25rem;
    background: rgba(74, 93, 35, 0.05);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

/* ========================================
   SERVIÇOS SECTION
   ======================================== */
.servicos {
    padding: 60px 0;
    background: var(--color-gray-100);
}

.servicos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.servico-card {
    background: var(--color-white);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.servico-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.servico-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 93, 35, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
}

.servico-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.servico-card h3 {
    color: var(--color-gray-900);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.servico-card p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

.servico-cta-card {
    background: var(--color-primary);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.servico-cta-card h3 {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.servico-cta-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

/* ========================================
   COMO FUNCIONA SECTION
   ======================================== */
.como-funciona {
    padding: 60px 0;
    background: var(--color-primary);
}

.passos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.passo-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.passo-numero {
    position: absolute;
    top: -12px;
    left: 1.25rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
}

.passo-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.passo-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-white);
}

.passo-card h3 {
    color: var(--color-white);
    margin-bottom: 0.625rem;
    font-size: 1.0625rem;
}

.passo-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   AUTORIDADE SECTION
   ======================================== */
.autoridade {
    padding: 60px 0;
    background: var(--color-white);
}

.autoridade-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.autoridade-text {
    order: 2;
}

.autoridade-image {
    order: 1;
    position: relative;
}

.autoridade-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.autoridade-text p {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.autoridade-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem;
    background: var(--color-gray-100);
    border-radius: var(--radius-md);
}

.badge-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.badge-item div {
    display: flex;
    flex-direction: column;
}

.badge-item strong {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-gray-900);
}

.badge-item span {
    font-size: 0.6875rem;
    color: var(--color-gray-500);
}

.autoridade-stars {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.stars {
    color: var(--color-gold);
    font-size: 1rem;
    letter-spacing: 2px;
}

.stars-text {
    font-size: 0.75rem;
    color: var(--color-gray-500);
}

.autoridade-quote {
    position: absolute;
    bottom: -20px;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem;
    background: var(--color-primary);
    border-radius: var(--radius-md);
}

.autoridade-quote p {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
}

.autoridade-quote span {
    display: block;
    font-size: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   SOBRE SECTION
   ======================================== */
.sobre {
    padding: 80px 0 60px;
    background: var(--color-gray-100);
}

.sobre-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.sobre-image {
    display: flex;
    justify-content: center;
}

.sobre-image img {
    max-height: 400px;
    width: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.sobre-text p {
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    line-height: 1.8;
}

.sobre-text blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--color-white);
    border-left: 3px solid var(--color-gold);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.sobre-text blockquote p {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-gray-700);
    margin-bottom: 0;
}

.sobre-info {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item strong {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-primary);
}

.info-item span {
    font-size: 0.625rem;
    color: var(--color-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    padding: 60px 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-gray-200);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-gray-900);
    text-align: left;
    transition: var(--transition);
}

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

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--color-gray-500);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--color-primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ========================================
   CTA FINAL SECTION
   ======================================== */
.cta-final {
    padding: 60px 0;
    background: var(--color-primary);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.cta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 60px 0 0;
    background: var(--color-gray-900);
    color: var(--color-white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.875rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-links h4,
.footer-contact h4,
.footer-location h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-location p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-hours {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.footer-hours strong {
    display: block;
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.footer-hours span {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

.footer-bottom a {
    color: var(--color-gold);
}

.footer-bottom a:hover {
    color: var(--color-gold-light);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .hero-text {
        order: 1;
        flex: 1;
    }
    
    .hero-image {
        order: 2;
        flex: 1;
    }
    
    .hero-image img {
        max-height: 500px;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .servico-cta-card {
        grid-column: span 2;
    }
    
    .passos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .autoridade-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .autoridade-text {
        order: 1;
        flex: 1;
    }
    
    .autoridade-image {
        order: 2;
        flex: 1;
    }
    
    .autoridade-badges {
        flex-direction: row;
    }
    
    .sobre-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .sobre-image {
        flex: 1;
    }
    
    .sobre-text {
        flex: 1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */
@media (min-width: 1024px) {
    .nav {
        display: block;
    }
    
    .btn-header {
        display: inline-flex;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero-image img {
        max-height: 550px;
    }
    
    .hero-badge {
        right: -20px;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .servico-cta-card {
        grid-column: span 1;
    }
    
    .passos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .whatsapp-float,
    .hero-buttons,
    .btn-cta {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
