/* ============================================================
   Amigo Pet Shop — CSS
   ============================================================ */

:root {
    --primary: #f97316;
    --primary-hover: #ea580c;
    --primary-soft: rgba(249, 115, 22, 0.1);
    --secondary: #0ea5e9;
    --secondary-hover: #0284c7;
    --secondary-soft: rgba(14, 165, 233, 0.1);
    --success: #10b981;
    --danger: #ef4444;
    --whatsapp: #25D366;

    --bg: #ffffff;
    --bg-alt: #fff8f1;
    --bg-blue: #f0f9ff;
    --bg-dark: #1a1a2e;

    --text: #1a1a2e;
    --text-dim: #64748b;
    --text-bright: #ffffff;

    --border: #f1ece6;
    --border-strong: #e0d5c8;

    --font-head: 'Baloo 2', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow: 0 8px 30px rgba(249, 115, 22, 0.1);
    --shadow-lg: 0 20px 60px rgba(249, 115, 22, 0.15);
    --shadow-primary: 0 8px 30px rgba(249, 115, 22, 0.35);

    --t: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 1rem; font-weight: 700; }
h3 { font-size: 1.3rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Top bar ---------- */
.top-bar {
    background: linear-gradient(90deg, var(--primary), #fb923c);
    color: #fff;
    padding: 10px 0;
    font-size: 13.5px;
    text-align: center;
    font-weight: 500;
}
.top-bar strong { color: #fff; font-weight: 700; }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 16px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary), #fb923c);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: rotate(-8deg);
}
.logo-text strong {
    display: block;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.5px;
}
.logo-text strong em {
    font-style: normal;
    color: var(--primary);
    font-weight: 800;
}
.logo-text em {
    display: block;
    font-style: normal;
    font-size: 10.5px;
    color: var(--text-dim);
    letter-spacing: 2.5px;
    font-weight: 600;
}

.header-search {
    flex-grow: 1;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 100px;
    padding: 6px 6px 6px 20px;
    transition: all var(--t);
}
.header-search:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px var(--primary-soft);
}
.header-search svg { color: var(--text-dim); flex-shrink: 0; }
.header-search input {
    flex-grow: 1;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--text);
    outline: none;
    padding: 8px 0;
}
.header-search input::placeholder { color: var(--text-dim); }
.header-search button {
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 13px;
    transition: all var(--t);
}
.header-search button:hover { background: var(--primary-hover); }

.header-actions {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}
.header-icon {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 12px;
    border-radius: var(--radius);
    color: var(--text);
    transition: all var(--t);
    font-size: 11px;
    font-weight: 600;
}
.header-icon:hover { background: var(--bg-alt); color: var(--primary); }
.header-icon .badge {
    position: absolute;
    top: 2px;
    right: 6px;
    background: var(--danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.menu-toggle { display: none; }

/* ---------- Header cats ---------- */
.header-cats {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 10px 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.header-cats::-webkit-scrollbar { display: none; }
.header-cats-inner {
    display: flex;
    gap: 24px;
    align-items: center;
    white-space: nowrap;
}
.cat-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dim);
    transition: color var(--t);
    padding: 4px 0;
}
.cat-link:hover { color: var(--primary); }
.cat-link-destaque {
    color: var(--primary);
    font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--secondary-soft) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
}
.pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(2); opacity: 0; }
}

.hero-title {
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.1;
}
.hero-title em {
    font-style: normal;
    color: var(--primary);
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 100%;
    height: 14px;
    background: rgba(249, 115, 22, 0.2);
    z-index: -1;
    border-radius: 4px;
}
.hero-desc {
    font-size: 1.08rem;
    color: var(--text-dim);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-info {
    display: flex;
    gap: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-info-item strong {
    display: block;
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.hero-info-item span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ---------- Hero image ---------- */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-blob {
    position: absolute;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-soft), var(--secondary-soft));
    border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%;
    animation: blob 8s ease-in-out infinite;
    transform-origin: center;
}
@keyframes blob {
    0%, 100% { border-radius: 45% 55% 55% 45% / 55% 45% 55% 45%; transform: rotate(0); }
    33% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(5deg); }
    66% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; transform: rotate(-5deg); }
}
.hero-image img {
    position: relative;
    width: 82%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 30px 60px rgba(249, 115, 22, 0.25);
}

.hero-float {
    position: absolute;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}
.hero-float span { font-size: 26px; line-height: 1; }
.hero-float strong {
    display: block;
    font-family: var(--font-head);
    font-size: 17px;
    color: var(--text);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}
.hero-float div > span {
    font-size: 11.5px;
    color: var(--text-dim);
    font-weight: 500;
}
.hero-float-1 { top: 8%; left: -20px; }
.hero-float-2 { bottom: 12%; right: -20px; animation-delay: 1.5s; }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}
.trust-item {
    display: flex;
    gap: 14px;
    align-items: center;
}
.trust-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.trust-item strong {
    display: block;
    font-size: 14px;
    color: var(--text);
    font-weight: 700;
    margin-bottom: 2px;
}
.trust-item span {
    font-size: 12.5px;
    color: var(--text-dim);
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}
.section-header .eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 12px;
}
.section-header h2 em {
    font-style: normal;
    color: var(--primary);
}
.section-header p {
    color: var(--text-dim);
    font-size: 1rem;
    margin-top: 10px;
}

/* ---------- Categorias ---------- */
.categorias-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.categoria-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 24px 32px;
    text-align: center;
    transition: all var(--t);
    cursor: pointer;
    display: block;
}
.categoria-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.categoria-icon {
    font-size: 60px;
    line-height: 1;
    margin-bottom: 16px;
    transition: transform var(--t);
}
.categoria-card:hover .categoria-icon {
    transform: scale(1.15) rotate(-5deg);
}
.categoria-card h3 {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 6px;
}
.categoria-card p {
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.5;
}

/* ---------- Filtros ---------- */
.filtros {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.filtro {
    padding: 10px 22px;
    background: #fff;
    border: 2px solid var(--border);
    border-radius: 100px;
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-dim);
    transition: all var(--t);
}
.filtro:hover { border-color: var(--primary); color: var(--primary); }
.filtro.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* ---------- Produtos ---------- */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.produto {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
    position: relative;
}
.produto:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.produto.is-hidden { display: none; }

.produto-image {
    position: relative;
    aspect-ratio: 1;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
}
.produto-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.3px;
}
.produto-tag.tag-novo { background: var(--success); }
.produto-tag.tag-destaque { background: var(--secondary); }

.produto-fav {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--t);
    z-index: 2;
}
.produto-fav:hover { background: var(--danger); color: #fff; }
.produto-fav.is-active { background: var(--danger); color: #fff; }

.produto-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex-grow: 1;
}
.produto-cat {
    font-size: 11px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.produto-nome {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
    flex-grow: 1;
}
.produto-rating {
    font-size: 12px;
    color: var(--text-dim);
}
.produto-preco {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 6px;
}
.produto-preco strong {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}
.produto-preco del {
    font-size: 13px;
    color: var(--text-dim);
}
.produto-parcela {
    font-size: 11.5px;
    color: var(--text-dim);
}
.produto-add {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    padding: 11px;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    font-family: var(--font-head);
    font-size: 13.5px;
    font-weight: 700;
    transition: all var(--t);
}
.produto-add:hover { background: var(--primary-hover); }

.load-more { text-align: center; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    border: 2px solid transparent;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn-primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-block { width: 100%; }
.btn-lg { padding: 16px 34px; font-size: 15px; }

/* ---------- Assinatura ---------- */
.assinatura {
    background: linear-gradient(135deg, var(--secondary) 0%, #0284c7 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.assinatura::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.assinatura-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.assinatura-content .eyebrow {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #a5f3fc;
    font-weight: 700;
    margin-bottom: 14px;
}
.assinatura-content h2 {
    color: #fff;
    margin-bottom: 20px;
}
.assinatura-content h2 em {
    font-style: normal;
    color: #fef3c7;
}
.assinatura-content > p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 500px;
}
.assinatura-beneficios {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-bottom: 32px;
}
.assinatura-beneficios li {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    color: #fff;
}
.assinatura-beneficios svg {
    color: #fef3c7;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 50%;
}
.assinatura-beneficios strong {
    color: #fef3c7;
    font-weight: 700;
}
.assinatura-content .btn-primary {
    background: #fff;
    color: var(--secondary);
    border-color: #fff;
}
.assinatura-content .btn-primary:hover {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.assinatura-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.assinatura-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--t);
}
.assinatura-box:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(6px);
}
.assinatura-box-2 {
    margin-left: 40px;
    animation: float 4s ease-in-out infinite;
}
.box-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.box-icon {
    font-size: 32px;
    line-height: 1;
    margin-bottom: 8px;
}
.box-content strong {
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}
.box-content span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* ---------- Serviços ---------- */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.servico-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px 30px;
    text-align: center;
    border: 2px solid var(--border);
    transition: all var(--t);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.servico-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.servico-destaque {
    border-color: var(--primary);
    background: linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
    transform: scale(1.03);
}
.servico-destaque:hover { transform: scale(1.03) translateY(-6px); }

.servico-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: var(--shadow-primary);
}
.servico-icon {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 8px;
}
.servico-card h3 {
    font-size: 1.35rem;
    color: var(--text);
}
.servico-card p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
    flex-grow: 1;
}
.servico-preco {
    padding: 14px 0;
    border-top: 1px dashed var(--border);
    border-bottom: 1px dashed var(--border);
    margin: 8px 0;
}
.servico-preco strong {
    display: block;
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}
.servico-preco span {
    font-size: 12px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Depoimentos ---------- */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.depoimento {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: all var(--t);
    text-align: center;
}
.depoimento:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.depoimento-pet {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 16px;
    border: 4px solid var(--primary-soft);
}
.depoimento .stars {
    color: #fbbf24;
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 16px;
}
.depoimento p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text);
}
.depoimento strong {
    display: block;
    font-family: var(--font-head);
    font-size: 14.5px;
    color: var(--primary);
    font-weight: 700;
}

/* ---------- Newsletter ---------- */
.newsletter {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: #fff;
    padding: 50px 0;
}
.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.newsletter h3 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 800;
}
.newsletter p {
    opacity: 0.9;
    font-size: 15px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    background: #fff;
    border-radius: var(--radius);
    padding: 6px;
}
.newsletter-form input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-family: inherit;
    font-size: 14.5px;
    border-radius: var(--radius);
    background: transparent;
}
.newsletter-form .btn-primary {
    background: var(--text);
    border-color: var(--text);
    padding: 12px 26px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 70px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-desc {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
    color: #94a3b8;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all var(--t);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer h4 {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li {
    padding: 5px 0;
    font-size: 14px;
    color: #94a3b8;
}
.footer a:hover { color: #fff; }
.logo-footer .logo-text strong { color: #fff; }
.logo-footer .logo-text em { color: #94a3b8; }

.footer-payment {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-payment-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-payment-inner > span {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
}
.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.payment-badge {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.footer-bottom {
    padding: 24px 0;
    font-size: 13px;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom a { color: var(--primary); }

/* ---------- Cart Drawer ---------- */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}
.cart-drawer.is-open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 24px;
    border-bottom: 1px solid var(--border);
}
.cart-header h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 700;
}
.cart-header button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--t);
}
.cart-header button:hover { background: var(--bg-alt); }

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
}
.cart-empty {
    text-align: center;
    color: var(--text-dim);
    padding: 60px 0;
    font-size: 14px;
}
.cart-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: var(--radius);
    flex-shrink: 0;
}
.cart-item-info { flex-grow: 1; min-width: 0; }
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}
.cart-item-price {
    font-family: var(--font-head);
    font-size: 15px;
    color: var(--primary);
    font-weight: 800;
}
.cart-item-remove {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    transition: all var(--t);
    flex-shrink: 0;
}
.cart-item-remove:hover { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

.cart-footer {
    padding: 22px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.cart-total span {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 600;
}
.cart-total strong {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text);
    font-weight: 800;
}
.cart-frete-info {
    background: rgba(249, 115, 22, 0.1);
    border-left: 3px solid var(--primary);
    padding: 10px 14px;
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t);
}
.overlay.is-open { opacity: 1; pointer-events: auto; }

/* ---------- Toast ---------- */
.toast {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--success);
    color: #fff;
    padding: 14px 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: 0 12px 40px rgba(16, 185, 129, 0.4);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 90;
    transition: all var(--t);
    animation: pulseWhats 2s ease-in-out infinite;
}
@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ---------- Demo banner ---------- */
.demo-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: var(--bg-dark);
    color: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
    z-index: 90;
}
.demo-banner a {
    color: var(--primary);
    font-weight: 700;
}
.demo-banner a:hover { color: #fff; }

/* ---------- Responsivo ---------- */
@media (max-width: 991px) {
    .header-search { display: none; }
    .menu-toggle { display: flex; }
    .header-icon span:not(.badge) { display: none; }

    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-image { max-width: 400px; margin: 0 auto; }
    .hero-blob { display: none; }

    .assinatura-grid { grid-template-columns: 1fr; gap: 40px; }
    .assinatura-box-2 { margin-left: 0; }

    .servicos-grid { grid-template-columns: 1fr 1fr; }
    .servico-destaque { transform: none; }

    .depoimentos-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
    .newsletter-form { flex-direction: column; padding: 8px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 575px) {
    .container { padding: 0 18px; }
    .section { padding: 60px 0; }
    .hero { padding: 40px 0 60px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-info { gap: 24px; }
    .hero-info-item strong { font-size: 1.4rem; }

    .categorias-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .categoria-card { padding: 28px 14px 22px; }
    .categoria-icon { font-size: 42px; }

    .produtos-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .produto-info { padding: 12px 14px 16px; }
    .produto-nome { font-size: 13px; }
    .produto-preco strong { font-size: 1.05rem; }

    .servicos-grid { grid-template-columns: 1fr; }
    .assinatura-content .btn { width: 100%; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .demo-banner { bottom: 12px; left: 12px; right: 90px; font-size: 11px; }
    .whatsapp-float { bottom: 12px; right: 12px; width: 52px; height: 52px; }
    .cart-drawer { max-width: none; }
}