/*
Theme Name: Tatiana Guerrero
Theme URI: https://tatianaguerrero.com.br
Author: Claude / Anthropic
Author URI: https://tatianaguerrero.com.br
Description: Tema profissional para consultoria financeira. Construído para ser personalizado com Elementor Pro. Design navy + dourado, tipografia elegante, estrutura completa para landing page de alta conversão.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tatiana-guerrero
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, elementor

*/

/* =============================================================
   DESIGN TOKENS — Altere aqui para mudar o tema inteiro
   ============================================================= */
:root {
    /* Cores principais */
    --tg-navy:        #0F1C2E;
    --tg-navy-dark:   #080F18;
    --tg-navy-mid:    #1A2F4A;
    --tg-gold:        #C9A84C;
    --tg-gold-light:  #E8C97A;
    --tg-gold-pale:   rgba(201, 168, 76, 0.12);
    --tg-cream:       #FAF7F2;
    --tg-white:       #ffffff;
    --tg-text:        #1A1A1A;
    --tg-gray:        #6B6560;
    --tg-gray-light:  #f0ece6;
    --tg-border:      rgba(201, 168, 76, 0.2);
    --tg-whatsapp:    #25D366;

    /* Tipografia */
    --tg-font-display: 'Playfair Display', Georgia, serif;
    --tg-font-body:    'DM Sans', system-ui, sans-serif;

    /* Tamanhos */
    --tg-radius:      4px;
    --tg-radius-lg:   8px;
    --tg-max-width:   1200px;
    --tg-section-pad: 90px 60px;

    /* Sombras */
    --tg-shadow-sm:   0 2px 12px rgba(0,0,0,0.06);
    --tg-shadow-md:   0 8px 32px rgba(0,0,0,0.10);
    --tg-shadow-lg:   0 20px 60px rgba(0,0,0,0.15);

    /* Transições */
    --tg-transition:  all 0.3s ease;
}

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

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

body {
    margin: 0;
    font-family: var(--tg-font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--tg-text);
    background-color: var(--tg-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
    color: var(--tg-gold-light);
}

/* =============================================================
   TIPOGRAFIA
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--tg-font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--tg-navy);
    margin: 0 0 1rem;
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 2vw, 24px); }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    margin: 0 0 1.25rem;
    color: var(--tg-gray);
    font-weight: 300;
}

strong, b {
    font-weight: 600;
    color: var(--tg-text);
}

em, i {
    font-style: italic;
    color: var(--tg-gold);
}

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

.tg-section {
    padding: var(--tg-section-pad);
}

.tg-section--navy {
    background: var(--tg-navy);
}

.tg-section--dark {
    background: var(--tg-navy-dark);
}

.tg-section--white {
    background: var(--tg-white);
}

.tg-section--cream {
    background: var(--tg-cream);
}

/* =============================================================
   HEADER & NAVEGAÇÃO
   ============================================================= */
#masthead {
    background: var(--tg-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--tg-border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
    height: 72px;
    max-width: var(--tg-max-width);
    margin: 0 auto;
}

/* Logo */
.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-branding img {
    height: 44px;
    width: auto;
}

.site-title {
    font-family: var(--tg-font-display);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.site-title a {
    color: var(--tg-gold);
    text-decoration: none;
}

.site-title a em {
    color: var(--tg-white);
    font-style: italic;
}

.site-description {
    display: none;
}

/* ── Posição do menu no header ──────────────────────────────── */

/* Direita: logo à esquerda, nav + social juntos à direita */
.nav-pos-right .site-header-inner {
    justify-content: flex-start;
}
.nav-pos-right #site-navigation {
    margin-left: auto;
}

/* Esquerda: logo + nav + social agrupados à esquerda */
.nav-pos-left .site-header-inner {
    justify-content: flex-start;
    gap: 48px;
}

/* Centro: nav centralizado (absoluto), social à direita */
.nav-pos-center .site-header-inner {
    position: relative;
    justify-content: space-between;
}
.nav-pos-center #site-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* ── Redes sociais no header ─────────────────────────────────── */
.header-social {
    display: flex;
    align-items: center;
    gap: 4px;
}

.header-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    transition: color 0.2s ease, background 0.2s ease;
    text-decoration: none;
}

.header-social__link:hover {
    color: var(--tg-gold);
    background: rgba(201, 168, 76, 0.1);
}

.header-social__link svg {
    display: block;
    flex-shrink: 0;
}

/* Navegação principal */
#site-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation ul li {
    position: relative;
}

.main-navigation ul li a {
    display: block;
    padding: 8px 16px;
    color: rgba(255,255,255,0.72);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--tg-radius);
    transition: var(--tg-transition);
}

.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
    color: var(--tg-gold);
    background: rgba(201,168,76,0.08);
}

/* Dropdown */
.main-navigation ul ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: var(--tg-navy-dark);
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--tg-transition);
    box-shadow: var(--tg-shadow-lg);
    flex-direction: column;
    gap: 0;
}

.main-navigation ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul li a {
    padding: 10px 20px;
    font-size: 13px;
    border-radius: 0;
    letter-spacing: 0.5px;
}

/* CTA no nav */
.nav-cta-button > a {
    background: var(--tg-gold) !important;
    color: var(--tg-navy) !important;
    padding: 10px 22px !important;
    border-radius: var(--tg-radius) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
}

.nav-cta-button > a:hover {
    background: var(--tg-gold-light) !important;
    color: var(--tg-navy) !important;
}

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--tg-white);
    border-radius: 2px;
    transition: var(--tg-transition);
}

.menu-toggle span:last-child {
    width: 16px;
    background: var(--tg-gold);
}

.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);
    width: 24px;
    background: var(--tg-white);
}

/* =============================================================
   BOTÕES GLOBAIS
   ============================================================= */
.tg-btn,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--tg-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    border-radius: var(--tg-radius);
    border: none;
    cursor: pointer;
    transition: var(--tg-transition);
    line-height: 1;
}

.tg-btn--primary,
.wp-block-button__link {
    background: var(--tg-gold);
    color: var(--tg-navy);
}

.tg-btn--primary:hover {
    background: var(--tg-gold-light);
    color: var(--tg-navy);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.tg-btn--outline {
    background: transparent;
    color: var(--tg-white);
    border: 1px solid rgba(255,255,255,0.3);
}

.tg-btn--outline:hover {
    border-color: var(--tg-gold);
    color: var(--tg-gold);
}

.tg-btn--navy {
    background: var(--tg-navy);
    color: var(--tg-white);
}

.tg-btn--navy:hover {
    background: var(--tg-navy-mid);
    transform: translateY(-1px);
}

.tg-btn--whatsapp {
    background: var(--tg-whatsapp);
    color: var(--tg-white);
}

.tg-btn--whatsapp:hover {
    background: #1da855;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

.tg-btn--full {
    width: 100%;
    text-align: center;
}

/* =============================================================
   EYEBROW / LABELS DE SEÇÃO
   ============================================================= */
.tg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--tg-gold);
    margin-bottom: 16px;
}

.tg-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--tg-gold);
    flex-shrink: 0;
}

.tg-eyebrow--center {
    justify-content: center;
}

.tg-eyebrow--center::before,
.tg-eyebrow--center::after {
    content: '';
    display: block;
    width: 28px;
    height: 1px;
    background: var(--tg-gold);
    opacity: 0.6;
    flex-shrink: 0;
}

/* =============================================================
   CARDS — SERVIÇOS
   ============================================================= */
.tg-service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius);
    padding: 40px 32px;
    position: relative;
    transition: var(--tg-transition);
    height: 100%;
}

.tg-service-card:hover {
    background: var(--tg-gold-pale);
    border-color: var(--tg-gold);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.tg-service-card__number {
    font-family: var(--tg-font-display);
    font-size: 56px;
    font-weight: 700;
    color: rgba(201,168,76,0.1);
    position: absolute;
    top: 16px;
    right: 24px;
    line-height: 1;
    user-select: none;
}

.tg-service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.25);
    border-radius: var(--tg-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
}

.tg-service-card__subtitle {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tg-gold);
    margin-bottom: 8px;
}

.tg-service-card__title {
    font-family: var(--tg-font-display);
    font-size: 22px;
    color: var(--tg-white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tg-service-card__desc {
    color: rgba(255,255,255,0.52);
    font-size: 14px;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 28px;
}

.tg-service-card__link {
    color: var(--tg-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--tg-transition);
}

.tg-service-card__link::after {
    content: '→';
    transition: var(--tg-transition);
}

.tg-service-card__link:hover {
    gap: 10px;
    color: var(--tg-gold-light);
}

/* =============================================================
   CHECKLIST / PARA QUEM É
   ============================================================= */
.tg-check-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--tg-white);
    border-left: 3px solid var(--tg-gold);
    border-radius: 0 var(--tg-radius) var(--tg-radius) 0;
    margin-bottom: 12px;
    transition: var(--tg-transition);
}

.tg-check-item:hover {
    box-shadow: var(--tg-shadow-sm);
    transform: translateX(4px);
}

.tg-check-item__icon {
    width: 24px;
    height: 24px;
    background: var(--tg-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    color: var(--tg-navy);
    font-weight: 700;
    margin-top: 1px;
}

.tg-check-item__text {
    font-size: 15px;
    color: var(--tg-text);
    line-height: 1.55;
}

/* =============================================================
   CREDENCIAIS / STATS BAR
   ============================================================= */
.tg-stats-bar {
    background: var(--tg-gold);
    padding: 24px 60px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tg-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.tg-stat-item__number {
    font-family: var(--tg-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--tg-navy);
    line-height: 1;
}

.tg-stat-item__label {
    font-size: 12px;
    color: rgba(15,28,46,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    max-width: 110px;
    line-height: 1.3;
}

.tg-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(15,28,46,0.15);
}

/* =============================================================
   QUOTE BLOCK
   ============================================================= */
.tg-quote {
    border-left: 3px solid var(--tg-gold);
    padding: 20px 24px;
    background: var(--tg-cream);
    border-radius: 0 var(--tg-radius) var(--tg-radius) 0;
    margin: 28px 0;
}

.tg-quote__text {
    font-family: var(--tg-font-display);
    font-size: 18px;
    color: var(--tg-navy);
    line-height: 1.65;
    font-style: italic;
    margin: 0;
}

/* =============================================================
   TESTIMONIAL CARDS
   ============================================================= */
.tg-testimonial {
    background: var(--tg-white);
    padding: 36px 28px;
    border-radius: var(--tg-radius);
    border-top: 3px solid var(--tg-gold);
    box-shadow: var(--tg-shadow-sm);
    transition: var(--tg-transition);
    height: 100%;
}

.tg-testimonial:hover {
    transform: translateY(-4px);
    box-shadow: var(--tg-shadow-md);
}

.tg-testimonial__stars {
    color: var(--tg-gold);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.tg-testimonial__text {
    font-size: 15px;
    color: var(--tg-gray);
    line-height: 1.8;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

.tg-testimonial__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tg-testimonial__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--tg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-gold);
    font-family: var(--tg-font-display);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    overflow: hidden;
}

.tg-testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tg-testimonial__name {
    font-weight: 600;
    font-size: 14px;
    color: var(--tg-navy);
    line-height: 1.2;
    margin-bottom: 3px;
}

.tg-testimonial__role {
    font-size: 12px;
    color: var(--tg-gray);
}

/* =============================================================
   BADGE / CRC
   ============================================================= */
.tg-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tg-cream);
    border: 1px solid var(--tg-border);
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 13px;
    color: var(--tg-gray);
    font-weight: 500;
}

/* =============================================================
   WHATSAPP FLUTUANTE
   ============================================================= */
.tg-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
}

.tg-whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--tg-whatsapp);
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--tg-transition);
    animation: tg-pulse 2.5s infinite;
}

.tg-whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}

.tg-whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: white;
}

@keyframes tg-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

/* =============================================================
   FOOTER
   ============================================================= */
#colophon {
    background: var(--tg-navy-dark);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 60px 60px 48px;
    max-width: var(--tg-max-width);
    margin: 0 auto;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand .site-title {
    font-size: 20px;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    color: rgba(255,255,255,0.38);
    font-size: 13px;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 24px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--tg-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: var(--tg-transition);
    text-decoration: none;
}

.footer-social-btn:hover {
    border-color: var(--tg-gold);
    color: var(--tg-gold);
    background: var(--tg-gold-pale);
}

.footer-col h4 {
    color: var(--tg-gold);
    font-family: var(--tg-font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 300;
    text-decoration: none;
    transition: var(--tg-transition);
}

.footer-col ul li a:hover {
    color: var(--tg-gold);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: var(--tg-max-width);
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p,
.footer-bottom span {
    color: rgba(255,255,255,0.22);
    font-size: 12px;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.22);
    font-size: 12px;
}

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

/* =============================================================
   HERO SECTION
   ============================================================= */
.tg-hero {
    background: var(--tg-navy);
    min-height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 60px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.tg-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.tg-hero__content {
    padding-right: 60px;
    position: relative;
    z-index: 1;
}

.tg-hero h1 {
    color: var(--tg-hero-title-color, #ffffff);
}

.tg-hero h1 em {
    color: var(--tg-hero-em-color, var(--tg-gold));
    font-style: italic;
}

.tg-hero .tg-eyebrow {
    color: var(--tg-hero-eyebrow-color, var(--tg-gold));
}

.tg-hero .tg-eyebrow::before {
    background: var(--tg-hero-eyebrow-color, var(--tg-gold));
}

.tg-hero__desc {
    color: var(--tg-hero-desc-color, rgba(255, 255, 255, 0.6));
}

.tg-hero__image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 88vh;
    position: relative;
}

.tg-hero__img-frame {
    width: 420px;
    height: 560px;
    position: relative;
    border-radius: var(--tg-radius) var(--tg-radius) 0 0;
    overflow: hidden;
    border: 1px solid var(--tg-border);
}

.tg-hero__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.tg-hero__gold-line {
    position: absolute;
    bottom: 0;
    left: -24px;
    width: 3px;
    height: 100px;
    background: var(--tg-gold);
    opacity: 0.5;
}

/* =============================================================
   CTA SECTION
   ============================================================= */
.tg-cta-section {
    background: var(--tg-navy);
    padding: var(--tg-section-pad);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tg-cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.tg-cta-section h2 {
    color: var(--tg-white);
    position: relative;
}

.tg-cta-section p {
    color: rgba(255,255,255,0.52);
    max-width: 560px;
    margin: 0 auto 40px;
    font-size: 17px;
    position: relative;
}

/* =============================================================
   ABOUT SECTION
   ============================================================= */
.tg-about-img-wrap {
    position: relative;
}

.tg-about-img {
    border-radius: var(--tg-radius);
    overflow: hidden;
}

.tg-about-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: top center;
}

.tg-about-tag {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--tg-gold);
    padding: 20px 26px;
    border-radius: var(--tg-radius);
    box-shadow: var(--tg-shadow-md);
}

.tg-about-tag__number {
    font-family: var(--tg-font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--tg-navy);
    line-height: 1;
    display: block;
}

.tg-about-tag__label {
    font-size: 12px;
    color: rgba(15,28,46,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* =============================================================
   PÁGINA DE BLOG (home.php)
   ============================================================= */

/* Hero ─────────────────────────────────────────────────────── */
.tg-blog-hero {
    background: var(--tg-navy);
    padding: 80px 60px 60px;
    text-align: center;
}

.tg-blog-hero__inner {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tg-blog-hero__title {
    font-family: var(--tg-font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--tg-white);
    margin: 0;
    line-height: 1.1;
}

.tg-blog-hero__desc {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.7;
    max-width: 580px;
    margin: 0;
}

/* Filtro por categoria ──────────────────────────────────────── */
.tg-blog-filter {
    background: var(--tg-navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0 60px 28px;
}

.tg-blog-filter__inner {
    max-width: var(--tg-max-width);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.tg-blog-filter__btn {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    border: 1px solid rgba(255,255,255,0.12);
    text-decoration: none;
    transition: all 0.2s;
}

.tg-blog-filter__btn:hover,
.tg-blog-filter__btn.is-active {
    background: var(--tg-gold);
    border-color: var(--tg-gold);
    color: var(--tg-navy);
}

/* Post destacado ───────────────────────────────────────────── */
.tg-blog-featured {
    background: var(--tg-cream);
    padding: 60px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.tg-blog-featured__inner {
    max-width: var(--tg-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}

.tg-blog-featured__img-wrap {
    display: block;
    border-radius: var(--tg-radius-lg);
    overflow: hidden;
    box-shadow: var(--tg-shadow-lg);
}

.tg-blog-featured__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tg-blog-featured__img-wrap:hover .tg-blog-featured__img {
    transform: scale(1.03);
}

.tg-blog-featured__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tg-blog-featured__top {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.tg-blog-featured__badge {
    display: inline-block;
    background: var(--tg-navy);
    color: var(--tg-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.tg-blog-featured__title {
    font-family: var(--tg-font-display);
    font-size: clamp(24px, 3vw, 36px);
    color: var(--tg-navy);
    line-height: 1.2;
    margin: 0;
}

.tg-blog-featured__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.tg-blog-featured__title a:hover {
    color: var(--tg-gold);
}

.tg-blog-featured__excerpt {
    color: var(--tg-gray);
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
}

.tg-blog-featured__meta {
    font-size: 12px;
    color: var(--tg-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tg-blog-featured__btn {
    align-self: flex-start;
    margin-top: 4px;
}

/* Grid de posts ─────────────────────────────────────────────── */
.tg-blog-grid-section {
    background: var(--tg-white);
    padding: 72px 0 80px;
}

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

/* Paginação ─────────────────────────────────────────────────── */
.tg-blog-pagination {
    display: flex;
    justify-content: center;
}

.tg-blog-pagination .nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.tg-blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--tg-border);
    color: var(--tg-navy);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.tg-blog-pagination .page-numbers.current,
.tg-blog-pagination .page-numbers:hover {
    background: var(--tg-gold);
    border-color: var(--tg-gold);
    color: var(--tg-navy);
}

.tg-blog-pagination .page-numbers.prev,
.tg-blog-pagination .page-numbers.next {
    width: auto;
    padding: 0 18px;
    border-radius: 20px;
}

/* Estado vazio ──────────────────────────────────────────────── */
.tg-blog-empty {
    background: var(--tg-cream);
    padding: 100px 60px;
    text-align: center;
}

.tg-blog-empty h2 {
    color: var(--tg-navy);
    margin: 16px 0 12px;
}

.tg-blog-empty p {
    color: var(--tg-gray);
    margin-bottom: 32px;
}

/* =============================================================
   BLOG / POSTS
   ============================================================= */
.tg-post-card {
    background: var(--tg-white);
    border-radius: var(--tg-radius);
    overflow: hidden;
    box-shadow: var(--tg-shadow-sm);
    transition: var(--tg-transition);
    height: 100%;
}

.tg-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tg-shadow-md);
}

.tg-post-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.tg-post-card__body {
    padding: 28px 24px;
}

.tg-post-card__category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tg-gold);
    margin-bottom: 10px;
    display: block;
}

.tg-post-card__title {
    font-family: var(--tg-font-display);
    font-size: 20px;
    color: var(--tg-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.tg-post-card__title a {
    color: inherit;
    text-decoration: none;
}

.tg-post-card__title a:hover {
    color: var(--tg-gold);
}

.tg-post-card__excerpt {
    font-size: 14px;
    color: var(--tg-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.tg-post-card__img-wrap {
    display: block;
    overflow: hidden;
}

.tg-post-card__img-wrap:hover .tg-post-card__img {
    transform: scale(1.04);
}

.tg-post-card__img {
    transition: transform 0.35s ease;
}

.tg-post-card__img-placeholder {
    width: 100%;
    height: 200px;
    background: var(--tg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    opacity: 0.5;
}

.tg-post-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.tg-post-card__meta {
    font-size: 12px;
    color: var(--tg-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.tg-post-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--tg-gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s, color 0.2s;
    white-space: nowrap;
}

.tg-post-card__link::after {
    content: '→';
}

.tg-post-card__link:hover {
    gap: 8px;
    color: var(--tg-navy);
}

/* =============================================================
   SINGLE POST
   ============================================================= */
.tg-entry-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 60px 40px;
}

.tg-entry-content h2,
.tg-entry-content h3,
.tg-entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.tg-entry-content p {
    margin-bottom: 1.5rem;
    color: var(--tg-text);
}

.tg-entry-content ul,
.tg-entry-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--tg-gray);
}

.tg-entry-content blockquote {
    border-left: 3px solid var(--tg-gold);
    padding: 16px 24px;
    background: var(--tg-cream);
    margin: 2rem 0;
    border-radius: 0 var(--tg-radius) var(--tg-radius) 0;
    font-family: var(--tg-font-display);
    font-style: italic;
    font-size: 18px;
    color: var(--tg-navy);
}

/* =============================================================
   FORMULÁRIOS
   ============================================================= */
.tg-form-field {
    margin-bottom: 20px;
}

.tg-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--tg-navy);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.tg-form-field input,
.tg-form-field textarea,
.tg-form-field select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--tg-font-body);
    font-size: 14px;
    color: var(--tg-text);
    background: var(--tg-white);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--tg-radius);
    outline: none;
    transition: var(--tg-transition);
}

.tg-form-field input:focus,
.tg-form-field textarea:focus {
    border-color: var(--tg-gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* CF7 & Elementor Form compatibility */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.elementor-field-type-text input,
.elementor-field-type-email input,
.elementor-field-type-tel input,
.elementor-field-type-textarea textarea {
    width: 100%;
    padding: 14px 16px !important;
    font-family: var(--tg-font-body) !important;
    font-size: 14px !important;
    color: var(--tg-text) !important;
    background: var(--tg-white) !important;
    border: 1px solid rgba(0,0,0,0.12) !important;
    border-radius: var(--tg-radius) !important;
    outline: none !important;
    transition: var(--tg-transition) !important;
}

.wpcf7-form input[type="submit"],
.wpcf7-submit {
    background: var(--tg-gold) !important;
    color: var(--tg-navy) !important;
    font-weight: 700 !important;
    padding: 14px 32px !important;
    border: none !important;
    border-radius: var(--tg-radius) !important;
    cursor: pointer !important;
    transition: var(--tg-transition) !important;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
    background: var(--tg-gold-light) !important;
    transform: translateY(-1px) !important;
}

/* =============================================================
   ELEMENTOR OVERRIDES
   ============================================================= */

/* Garantir full-width em Elementor */
.elementor-section.elementor-section-stretched {
    max-width: none !important;
}

.e-con.e-con-full,
.elementor-section-full_width .elementor-container {
    max-width: none !important;
}

/* Remover padding padrão do Elementor */
.elementor-section .elementor-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Botões Elementor */
.elementor-button {
    font-family: var(--tg-font-body) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    border-radius: var(--tg-radius) !important;
    transition: var(--tg-transition) !important;
}

/* Headings Elementor */
.elementor-heading-title {
    font-family: var(--tg-font-display) !important;
}

/* Widget de ícone */
.elementor-icon-box-title {
    font-family: var(--tg-font-display) !important;
}

/* Testimonials */
.elementor-testimonial-name {
    font-weight: 600 !important;
    color: var(--tg-navy) !important;
}

/* =============================================================
   UTILITIES
   ============================================================= */
.tg-text-gold   { color: var(--tg-gold) !important; }
.tg-text-navy   { color: var(--tg-navy) !important; }
.tg-text-white  { color: var(--tg-white) !important; }
.tg-text-gray   { color: var(--tg-gray) !important; }
.tg-bg-navy     { background: var(--tg-navy) !important; }
.tg-bg-gold     { background: var(--tg-gold) !important; }
.tg-bg-cream    { background: var(--tg-cream) !important; }
.tg-bg-white    { background: var(--tg-white) !important; }
.tg-text-center { text-align: center !important; }
.tg-mt-0        { margin-top: 0 !important; }
.tg-mb-0        { margin-bottom: 0 !important; }

.tg-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tg-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tg-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes tg-fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tg-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.tg-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================= */
@media (max-width: 1024px) {
    :root {
        --tg-section-pad: 70px 40px;
    }

    .site-header-inner { padding: 0 40px; }

    .tg-hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 60px 40px 0;
        text-align: center;
    }

    .tg-hero__content {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .tg-hero__image {
        height: auto;
        justify-content: center;
    }

    .tg-hero__img-frame {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 48px 40px;
    }

    .tg-grid-3 { grid-template-columns: 1fr 1fr; }
    .tg-grid-4 { grid-template-columns: 1fr 1fr; }
    .tg-grid-2 { grid-template-columns: 1fr; }

    .tg-stats-bar { padding: 20px 40px; }
}

/* =============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================= */
@media (max-width: 768px) {
    :root {
        --tg-section-pad: 50px 20px;
    }

    /* Header mobile */
    .site-header-inner { padding: 0 20px; height: 64px; }

    .menu-toggle { display: flex; margin-left: auto; }

    .header-social { display: none; }

    #site-navigation {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--tg-navy-dark);
        padding: 16px 0 24px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-bottom: 1px solid var(--tg-border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--tg-transition);
        z-index: 999;
    }

    #site-navigation.nav-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }

    .main-navigation ul li a {
        padding: 16px 24px;
        font-size: 18px;
        font-family: var(--tg-font-display);
        text-transform: none;
        letter-spacing: 0;
        border-radius: 0;
        border-left: 3px solid transparent;
    }

    .main-navigation ul li.current-menu-item > a,
    .main-navigation ul li a:hover {
        border-left-color: var(--tg-gold);
        background: rgba(201,168,76,0.05);
    }

    .main-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.03);
        padding: 0;
    }

    .main-navigation ul ul li a {
        font-size: 14px;
        padding-left: 40px;
        font-family: var(--tg-font-body);
        letter-spacing: 0.5px;
        text-transform: none;
    }

    .nav-cta-button {
        padding: 16px 24px 0;
    }

    .nav-cta-button > a {
        display: block !important;
        text-align: center !important;
        padding: 14px 20px !important;
    }

    /* Hero mobile */
    .tg-hero {
        padding: 40px 20px 0;
    }

    .tg-hero__content {
        order: 2;
        padding-bottom: 32px;
    }

    .tg-hero__image {
        order: 1;
    }

    .tg-hero__img-frame {
        width: 260px;
        height: 280px;
    }

    h1 { font-size: 30px; }
    h2 { font-size: 24px; }

    /* Stats mobile */
    .tg-stats-bar {
        padding: 16px 20px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .tg-stat-divider { display: none; }

    .tg-stat-item {
        background: rgba(15,28,46,0.1);
        border-radius: var(--tg-radius);
        padding: 14px 12px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 4px;
    }

    .tg-stat-item__label { max-width: none; text-align: center; }

    /* Grids mobile */
    .tg-grid-2,
    .tg-grid-3,
    .tg-grid-4 {
        grid-template-columns: 1fr;
    }

    /* Blog mobile */
    .tg-blog-hero { padding: 60px 20px 40px; }
    .tg-blog-filter { padding: 0 20px 20px; }

    .tg-blog-featured { padding: 40px 20px; }
    .tg-blog-featured__inner { grid-template-columns: 1fr; gap: 32px; }
    .tg-blog-featured__img { height: 240px; }
    .tg-blog-featured__btn { align-self: stretch; text-align: center; justify-content: center; }

    .tg-blog-grid-section { padding: 48px 0 60px; }
    .tg-blog-grid { grid-template-columns: 1fr; gap: 24px; }

    .tg-blog-empty { padding: 60px 20px; }

    /* About mobile */
    .tg-about-img img { height: 320px; }
    .tg-about-tag { right: 12px; bottom: 12px; }

    /* Footer mobile */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px;
        gap: 28px;
    }

    .footer-brand { grid-column: 1 / -1; }

    .footer-bottom {
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
    }

    /* WA Float position */
    .tg-whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .tg-whatsapp-float a {
        width: 54px;
        height: 54px;
    }
}

/* =============================================================
   PÁGINA SOBRE MIM
   ============================================================= */

/* Hero ─────────────────────────────────────────────────────── */
.tg-sobre-hero {
    background: var(--tg-navy);
    padding: var(--tg-section-pad);
}

.tg-sobre-hero__inner {
    max-width: var(--tg-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.tg-sobre-hero__photo {
    /* inherits .tg-about-img-wrap styles */
}

.tg-sobre-hero__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tg-sobre-hero__title {
    font-family: var(--tg-font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--tg-white);
    line-height: 1.1;
    margin: 0;
}

.tg-sobre-hero__title em {
    font-style: italic;
    color: var(--tg-gold);
}

.tg-sobre-hero__bio {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin: 0;
    font-size: 16px;
}

/* Badge variant for Sobre Mim page */
.tg-badge--sobre {
    align-self: flex-start;
}

/* Valores ─────────────────────────────────────────────────── */
.tg-valores-section {
    background: var(--tg-cream);
    padding: var(--tg-section-pad);
}

.tg-valores-grid {
    margin-top: 48px;
}

.tg-valor-card {
    background: var(--tg-white);
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius-lg);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tg-valor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tg-shadow-md);
}

.tg-valor-card__icon {
    font-size: 32px;
    line-height: 1;
}

.tg-valor-card__title {
    font-family: var(--tg-font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--tg-navy);
    margin: 0;
}

.tg-valor-card__desc {
    font-size: 15px;
    color: var(--tg-gray);
    line-height: 1.6;
    margin: 0;
}

/* Sobre Mim — mobile ────────────────────────────────────────── */
@media (max-width: 768px) {
    .tg-sobre-hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .tg-sobre-hero {
        padding: 60px 20px;
    }

    .tg-valores-section {
        padding: 60px 20px;
    }

    .tg-valores-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   PÁGINA INDIVIDUAL DE SERVIÇO  (single-tg_service.php)
   ============================================================= */

/* Hero ─────────────────────────────────────────────────────── */
.tg-svc-hero {
    background: var(--tg-navy);
    padding: 90px 60px 80px;
    text-align: center;
}

.tg-svc-hero__inner {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.tg-svc-hero__badge {
    min-height: 24px;
}

.tg-svc-hero__label {
    display: inline-block;
    background: var(--tg-gold-pale);
    border: 1px solid var(--tg-gold);
    color: var(--tg-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 20px;
}

.tg-svc-hero__icon {
    font-size: 64px;
    line-height: 1;
    filter: drop-shadow(0 4px 16px rgba(201,168,76,0.3));
}

.tg-svc-hero__title {
    font-family: var(--tg-font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 700;
    color: var(--tg-white);
    line-height: 1.1;
    margin: 0;
}

.tg-svc-hero__title em {
    font-style: italic;
    color: var(--tg-gold);
}

.tg-svc-hero__intro {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
    margin: 0;
}

.tg-svc-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 8px;
}

/* Conteúdo do editor ────────────────────────────────────────── */
.tg-svc-content {
    background: var(--tg-cream);
    padding: var(--tg-section-pad);
}

.tg-svc-content__inner {
    max-width: 820px;
    margin: 0 auto;
}

.tg-svc-content__body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--tg-text);
}

.tg-svc-content__body h2,
.tg-svc-content__body h3 {
    font-family: var(--tg-font-display);
    color: var(--tg-navy);
    margin-top: 2em;
    margin-bottom: 0.5em;
}

.tg-svc-content__body h2 { font-size: 28px; }
.tg-svc-content__body h3 { font-size: 22px; }

.tg-svc-content__body ul,
.tg-svc-content__body ol {
    padding-left: 1.5em;
    margin: 1em 0;
}

.tg-svc-content__body li {
    margin-bottom: 6px;
}

.tg-svc-content__body strong {
    color: var(--tg-navy);
}

/* Features list ─────────────────────────────────────────────── */
.tg-svc-features {
    background: var(--tg-white);
    padding: var(--tg-section-pad);
}

.tg-svc-features__inner {
    max-width: var(--tg-max-width);
    margin: 0 auto;
}

.tg-svc-features__list {
    list-style: none;
    padding: 0;
    margin: 48px auto 0;
    max-width: 900px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px;
}

.tg-svc-features__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--tg-cream);
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius-lg);
    padding: 18px 22px;
    font-size: 15px;
    color: var(--tg-text);
    line-height: 1.5;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.tg-svc-features__item:hover {
    border-color: var(--tg-gold);
    box-shadow: var(--tg-shadow-sm);
}

.tg-svc-features__check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    background: var(--tg-gold);
    color: var(--tg-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-top: 1px;
}

/* =============================================================
   PÁGINA DE SERVIÇOS  (page-servicos.php)
   ============================================================= */

/* Hero ─────────────────────────────────────────────────────── */
.tg-svp-hero {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tg-svp-hero__inner {
    max-width: var(--tg-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.tg-svp-hero__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tg-svp-hero__title {
    font-family: var(--tg-font-display);
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 700;
    color: var(--tg-white);
    line-height: 1.1;
    margin: 0;
}

.tg-svp-hero__title em {
    font-style: italic;
    color: var(--tg-gold);
}

.tg-svp-hero__intro {
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    line-height: 1.75;
    max-width: 580px;
    margin: 0;
}

.tg-svp-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 4px;
}

/* Stats do hero ────────────────────────────────────────────── */
.tg-svp-hero__stats {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--tg-border);
    border-radius: var(--tg-radius-lg);
    overflow: hidden;
    min-width: 200px;
}

.tg-svp-stat {
    padding: 24px 28px;
    text-align: center;
    background: rgba(255,255,255,0.03);
}

.tg-svp-stat--border {
    border-top: 1px solid var(--tg-border);
}

.tg-svp-stat__num {
    display: block;
    font-family: var(--tg-font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--tg-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.tg-svp-stat__label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

/* Seção do grid ────────────────────────────────────────────── */
.tg-svp-grid-section {
    border-top: 1px solid rgba(255,255,255,0.06);
}

.tg-svp-grid-head {
    text-align: center;
    margin-bottom: 56px;
}

.tg-svp-grid-title {
    font-family: var(--tg-font-display);
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--tg-white);
    margin: 12px 0 0;
    line-height: 1.2;
}

.tg-svp-grid-title em {
    font-style: italic;
    color: var(--tg-gold);
}

/* Página de serviços — mobile ───────────────────────────────── */
@media (max-width: 900px) {
    .tg-svp-hero__inner {
        grid-template-columns: 1fr;
    }

    .tg-svp-hero__stats {
        flex-direction: row;
        min-width: unset;
        width: 100%;
    }

    .tg-svp-stat {
        flex: 1;
    }

    .tg-svp-stat--border {
        border-top: none;
        border-left: 1px solid var(--tg-border);
    }
}

@media (max-width: 600px) {
    .tg-svp-hero__stats {
        flex-direction: column;
    }

    .tg-svp-stat--border {
        border-left: none;
        border-top: 1px solid var(--tg-border);
    }

    .tg-svp-hero__actions {
        flex-direction: column;
    }

    .tg-svp-hero__actions .tg-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Página de serviço individual — mobile ─────────────────────── */
@media (max-width: 768px) {
    .tg-svc-hero {
        padding: 60px 20px;
    }

    .tg-svc-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .tg-svc-hero__actions .tg-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .tg-svc-content,
    .tg-svc-features {
        padding: 60px 20px;
    }

    .tg-svc-features__list {
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   ABOUT GRID — gap responsivo (sem inline style)
   ============================================================= */
.tg-about-grid {
    gap: 80px;
    align-items: center;
}

@media (max-width: 1024px) {
    .tg-about-grid { gap: 48px; }
}

@media (max-width: 768px) {
    .tg-about-grid {
        gap: 32px;
        grid-template-columns: 1fr;
    }
}

/* =============================================================
   BOTÕES — altura mínima para touch (44px)
   ============================================================= */
.tg-btn {
    min-height: 44px;
}

/* =============================================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================================= */
@media (max-width: 480px) {
    :root {
        --tg-section-pad: 40px 16px;
    }

    /* Header */
    .site-header-inner { padding: 0 16px; }
    .site-title { font-size: 18px; }
    .site-branding img { height: 36px; }

    /* Hero */
    .tg-hero {
        padding: 32px 16px 0;
        text-align: center;
    }

    .tg-hero__img-frame {
        width: 220px;
        height: 240px;
    }

    .tg-hero__content .tg-btn,
    .tg-hero [style*="display:flex"] {
        flex-direction: column;
    }

    /* Botões em coluna no hero */
    .tg-hero [style*="gap:16px"] {
        flex-direction: column;
        align-items: stretch;
    }

    .tg-hero .tg-btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }

    h1 { font-size: 26px; line-height: 1.2; }
    h2 { font-size: 22px; line-height: 1.3; }
    h3 { font-size: 18px; }

    /* Stats */
    .tg-stats-bar {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .tg-stat-item {
        padding: 12px;
    }

    /* Grids */
    .tg-grid-2,
    .tg-grid-3,
    .tg-grid-4 {
        grid-template-columns: 1fr;
    }

    /* Container */
    .tg-container { padding: 0 16px; }

    /* Sobre */
    .tg-about-grid { gap: 24px; }
    .tg-about-img img { height: 260px; }
    .tg-about-tag { right: 8px; bottom: 8px; }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        padding: 32px 16px;
    }

    .footer-brand { grid-column: auto; }

    .footer-bottom {
        padding: 12px 16px;
        font-size: 11px;
    }

    /* CTA buttons em coluna */
    .tg-cta-section [style*="display:flex"] {
        flex-direction: column;
        align-items: stretch;
    }

    .tg-cta-section .tg-btn {
        text-align: center;
        justify-content: center;
    }

    /* Blog */
    .tg-blog-hero { padding: 48px 16px 32px; }
    .tg-blog-filter { padding: 0 16px 16px; }
    .tg-blog-featured { padding: 32px 16px; }

    /* WhatsApp float menor */
    .tg-whatsapp-float a {
        width: 48px;
        height: 48px;
    }

    /* Seção "Para Quem É" — botão full width */
    #para-quem-e .tg-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Navegação mobile — fonte menor */
    .main-navigation ul li a {
        font-size: 16px;
        padding: 14px 20px;
    }
}

/* =============================================================
   TABLET — melhorias adicionais (max 1024px)
   ============================================================= */
@media (max-width: 1024px) {
    /* Seção "Para Quem É" — botão full width no tablet */
    #para-quem-e .tg-grid-2 > div:first-child {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Navegação: esconder redes sociais do header em tablet */
    .site-header-inner { gap: 12px; }

    /* Hero: melhor proporção da imagem */
    .tg-hero__img-frame {
        max-width: 360px;
        height: 460px;
    }
}

/* =============================================================
   MOBILE — melhorias adicionais (max 768px)
   ============================================================= */
@media (max-width: 768px) {
    /* Hero: ordem — imagem primeiro, texto depois */
    .tg-hero {
        display: flex;
        flex-direction: column;
    }

    /* CTA final: botões em coluna em telas pequenas */
    .tg-cta-section [style*="gap:16px"] {
        gap: 12px;
    }

    /* Check items: sem hover transform no mobile (touch) */
    .tg-check-item:hover {
        transform: none;
    }

    /* Service cards: padding menor */
    .tg-service-card {
        padding: 28px 24px;
    }

    /* Sobre: imagem menor */
    .tg-about-img img { height: 380px; }

    /* Seção sobre: grid em coluna */
    .tg-about-grid {
        grid-template-columns: 1fr;
    }

    /* Eyebrow: centralizar em mobile */
    .tg-section--navy .tg-eyebrow,
    .tg-cta-section .tg-eyebrow {
        justify-content: center;
    }

    /* Padding do container em mobile */
    .tg-container { padding: 0 20px; }

    /* Blog featured: botão full width */
    .tg-blog-featured__btn {
        width: 100%;
    }
}
