/* ==========================================
   TEMA ATELIÊ DO CORPO – ULTRA MODERNO
   - Fundo bege + preto + dourado/cobre
   - Glassmorphism suave em cards
   - Ícones Flaticon (UIcons)
   ========================================== */

/* Import extra (caso queira via CSS em vez do <link> no HTML)
@import url("https://cdn-uicons.flaticon.com/uicons-regular-rounded/css/uicons-regular-rounded.css");
*/

:root {
    --bg: #f7f0e8;
    --bg-soft: #f3e5d9;
    --bg-dark: #121212;
    --primary: #191414;
    --accent: #c8923b;
    --accent-strong: #e7ae57;
    --accent-soft: rgba(200, 146, 59, 0.15);
    --text: #52453c;
    --border-soft: #e1d3c5;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 24px 55px rgba(0, 0, 0, 0.22);
    --shadow-card: 0 16px 40px rgba(0, 0, 0, 0.14);
    --blur-level: 14px;
}

/* RESET BÁSICO */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, #fdf7f0 0, #f7f0e8 40%, #f1e2d4 100%);
    min-height: 100vh;
}

/* TEXTO GENÉRICO */

a {
    color: inherit;
}

strong {
    font-weight: 600;
}

/* ANIMAÇÕES SUAVES */

[data-animate="fade-up"] {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s ease-out forwards;
}

[data-animate-delay="1"] { animation-delay: 0.1s; }
[data-animate-delay="2"] { animation-delay: 0.2s; }
[data-animate-delay="3"] { animation-delay: 0.3s; }
[data-animate-delay="4"] { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   HERO / TOPO
   ========================================== */

.hero {
    padding: 24px 16px 64px;
    position: relative;
}

/* textura leve no fundo (se usar textura-fundo.jpg) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/textura-fundo.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.06;
    pointer-events: none;
}

.hero-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* TOPBAR / MARCA */

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,0.12);
    background: radial-gradient(circle at 20% 10%, #ffffff 0, #f3e2cf 55%, #e0c3a5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
}

.brand-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* fallback se não tiver logo ainda */
.brand-logo-img[src=""],
.brand-logo-img:not([src]) {
    display: none;
}

.brand-ac {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.09em;
    color: var(--primary);
}

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

.brand-main {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--primary);
}

.brand-sub {
    font-size: 0.78rem;
    opacity: 0.8;
}

.topbar-actions {
    display: flex;
    gap: 12px;
}

/* BOTÕES */

.btn-primary,
.btn-outline,
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.18s ease-out;
    gap: 6px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(200, 146, 59, 0.55);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 44px rgba(200, 146, 59, 0.7);
}

.btn-outline {
    background: rgba(255,255,255,0.88);
    border-color: rgba(0,0,0,0.14);
    color: var(--primary);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: rgba(255,255,255,0.98);
}

.btn-link {
    background: transparent;
    color: var(--primary);
    padding-inline: 6px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

/* GRID DO HERO */

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
    gap: 40px;
    align-items: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(0,0,0,0.03);
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.tag::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    margin-right: 8px;
    background: radial-gradient(circle, var(--accent-strong), var(--accent));
}

.hero h1 {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    color: var(--primary);
    line-height: 1.2;
    margin: 0 0 12px;
}

.hero .highlight {
    display: block;
    color: var(--accent);
}

.hero-text {
    font-size: 0.97rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px;
}

.hero-list li {
    position: relative;
    padding-left: 26px;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

/* bolinha dourada nos bullets */
.hero-list li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: radial-gradient(circle, var(--accent-strong), var(--accent));
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==========================================
   CARDS DE EQUIPAMENTO – TEMA REUTILIZÁVEL
   (usado no hero e na seção Equipamentos)
   ========================================== */

.device-card {
    background: rgba(9, 9, 11, 0.96);
    color: #f9fafb;
    border-radius: var(--radius-lg);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* halo de luz ao fundo */
.device-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.16) 0, transparent 60%);
    opacity: 0.85;
    pointer-events: none;
}

.device-img {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 12px;
}

/* badge com nome do equipamento */
.device-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 13px;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: var(--accent-soft);
    border: 1px solid rgba(255,255,255,0.35);
    color: #fef3c7;
    z-index: 2;
}

/* bloco de texto do card */
.device-info {
    position: relative;
    z-index: 1;
    background: linear-gradient(
        145deg,
        rgba(15, 23, 42, 0.92),
        rgba(15, 23, 42, 0.98)
    );
    border-radius: 18px;
    padding: 14px 14px 10px;
    border: 1px solid rgba(148,163,184,0.55);
}

.device-title {
    font-weight: 600;
    font-size: 0.96rem;
    margin-top: 0;
}

.device-info ul {
    padding-left: 18px;
    margin: 8px 0 6px;
    font-size: 0.78rem;
}

.device-location {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* ==========================================
   SEÇÕES GERAIS
   ========================================== */

.section {
    padding: 56px 16px;
    position: relative;
}

.section-soft {
    background: #fbf5ef;
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section h2 {
    font-size: 1.7rem;
    margin: 0 0 10px;
    color: var(--primary);
    font-family: "Playfair Display", serif;
}

.section-intro {
    max-width: 640px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

/* GRID DE SERVIÇOS */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}

/* Card de serviço – glassmorphism */

.card {
    background: rgba(255, 255, 255, 0.88);
    border-radius: var(--radius-md);
    padding: 18px 18px 20px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    backdrop-filter: blur(var(--blur-level));
    -webkit-backdrop-filter: blur(var(--blur-level));
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Ícones dos cards usando Flaticon */

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    margin-bottom: 10px;
    background: var(--accent-soft);
    color: var(--accent-strong);
}

.card-icon i {
    font-size: 1.2rem;
}

/* Caso ainda esteja usando emoji, mantém legível */
.card-icon:not(:has(i)) {
    font-size: 1.4rem;
}

.card h3 {
    font-size: 1rem;
    margin: 0 0 6px;
    color: var(--primary);
}

.card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* GRID DE EQUIPAMENTOS (tema reaproveitável) */

.device-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 26px;
}

/* ==========================================
   INVESTIMENTO
   ========================================== */

.section-highlight {
    background: radial-gradient(circle at top left, #1f2933 0, #020617 55%, #020617 100%);
    color: #f3f4f6;
}

.section-highlight h2,
.section-highlight .section-intro {
    color: #f9fafb;
}

.investment {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr);
}

.discount-phrase {
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.price-box {
    background: rgba(15,23,42,0.88);
    border-radius: 20px;
    border: 1px solid rgba(148,163,184,0.65);
    padding: 18px;
    margin-bottom: 16px;
}

.price-original span {
    text-decoration: line-through;
    opacity: 0.7;
}

.price-special {
    margin-top: 6px;
    font-size: 1.1rem;
}

.price-special strong {
    font-size: 1.6rem;
    color: #facc15;
}

.price-note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 8px;
}

.friend-text {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ==========================================
   CONTATO
   ========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}

.contact-card {
    display: flex;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid var(--border-soft);
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 28px rgba(0,0,0,0.06);
    transition: transform 0.15s ease-out, box-shadow 0.15s ease-out, border-color 0.15s;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.contact-icon {
    font-size: 1.7rem;
}

/* se você quiser ícones Flaticon em vez de emojis:
   .contact-icon i { font-size: 1.5rem; }
*/

.contact-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--primary);
}

.contact-card p {
    margin: 0 0 4px;
    font-size: 0.85rem;
}

.contact-meta {
    font-size: 0.8rem;
    color: #6b7280;
}

/* ==========================================
   RODAPÉ
   ========================================== */

.footer {
    padding: 20px 16px 26px;
    border-top: 1px solid #e5d8c8;
    background: #f8efe7;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    font-size: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px;
}

.footer-credit {
    opacity: 0.7;
}

/* ==========================================
   RESPONSIVO
   ========================================== */

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 20px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .grid-3,
    .device-grid,
    .contact-grid {
        grid-template-columns: minmax(0,1fr);
    }
}
