/* ==========================================================================
   Fontes customizadas
   ========================================================================== */
@font-face {
    font-family: 'Cherla';
    src: url('fonts/cherla-2.woff') format('woff'),
         url('fonts/cherla-2.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Bk BT';
    src: url('fonts/futubk.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Design System & Variáveis (Paleta Premium Delly Caroline - Tema Claro)
   ========================================================================== */
:root {
    --bg-primary: #F8F2E9;      /* Nude claro / Off-white da logo */
    --bg-secondary: #F3EAE0;    /* Bege suave de apoio */
    --bg-card: rgba(255, 255, 255, 0.85); /* Vidro branco sutil */
    --border-glow: rgba(145, 98, 42, 0.12); /* Brilho bronze suave */
    --accent-gold: #91622A;     /* Ouro velho / Ocre para destaques */
    --accent-gold-light: #A3733A; /* Dourado levemente mais claro */
    --accent-terracotta: #7C492A; /* Marrom terracota principal */
    --text-primary: #3D2414;    /* Marrom escuro café para alta legibilidade */
    --text-secondary: #7A665A;  /* Texto de apoio bronze acinzentado */
    --text-light: #F8F2E9;       /* Texto claro para botões escuros */
    --shadow-soft: 0 10px 30px rgba(124, 73, 42, 0.04);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;
    --font-serif: 'Cherla', 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-sans: 'Futura Bk BT', 'Inter', system-ui, -apple-system, sans-serif;
    --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Geral */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(145, 98, 42, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 10% 40%, rgba(124, 73, 42, 0.03) 0%, transparent 40%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 20px 15px 40px 15px;
}

/* Container Principal (Mobile-First / Max-Width) */
.container {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ==========================================================================
   Cabeçalho (Perfil e Bio)
   ========================================================================== */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    padding: 35px 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

/* Logotipo da Marca */
.brand-logo-container {
    width: 100%;
    max-width: 220px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(124, 73, 42, 0.06);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.02);
}

/* Títulos e Handles */
h1 {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent-gold);
    text-transform: lowercase;
    margin-bottom: 4px;
}

.subdelly {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--accent-terracotta);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

/* Biografia */
.biografia {
    width: 100%;
}

.biografia > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    font-style: italic;
}

.biografia ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 25px;
}

.biografia li {
    font-size: 13px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.biografia li::before {
    content: "✦";
    color: var(--accent-gold);
    font-size: 10px;
}

/* Grupo de Botões CTA */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, var(--accent-terracotta), #63361a);
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px 28px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 15px rgba(124, 73, 42, 0.12);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 73, 42, 0.2);
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-terracotta));
}

.cta-btn.secondary-btn {
    background: transparent;
    border: 1px solid var(--accent-terracotta);
    color: var(--accent-terracotta);
    box-shadow: none;
}

.cta-btn.secondary-btn:hover {
    background: rgba(124, 73, 42, 0.05);
    color: var(--accent-terracotta);
    box-shadow: none;
}

.cta-btn svg {
    fill: currentColor;
    width: 18px;
    height: 18px;
}

/* Separadores */
hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
    margin: 5px 0;
}

/* ==========================================================================
   Seção Principal (Menu de Serviços & Depoimentos)
   ========================================================================== */
main {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

h2 {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--accent-terracotta);
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2::after {
    content: "";
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--border-glow), transparent);
}

/* Grid de Serviços */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    padding: 22px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(145, 98, 42, 0.25);
    transform: translateY(-2px);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    gap: 10px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.service-price {
    font-family: var(--font-serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--accent-terracotta);
    white-space: nowrap;
}

.service-description {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Seção de Manutenção */
.service-maintenance {
    margin-top: 15px;
    padding-top: 12px;
    border-top: 1px dashed rgba(124, 73, 42, 0.15);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.maintenance-header {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-terracotta);
    font-weight: 600;
}

.maintenance-options {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.maintenance-opt {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(145, 98, 42, 0.04);
    padding: 6px 12px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(145, 98, 42, 0.06);
}

.m-days {
    font-size: 11px;
    color: var(--text-secondary);
}

.m-price {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* Seção de Políticas */
.policy-section {
    margin-top: 5px;
}

.policy-section h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 500;
    color: var(--accent-terracotta);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.policy-card {
    background: rgba(124, 73, 42, 0.03);
    border: 1px solid rgba(124, 73, 42, 0.08);
    padding: 20px;
    border-radius: var(--border-radius-md);
}

.policy-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.policy-card li {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
}

.policy-card li::before {
    content: "•";
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 4px;
    top: -2px;
}

/* Seção de Depoimentos */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.5);
    border: 1px dashed rgba(145, 98, 42, 0.15);
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
}

.rating {
    color: var(--accent-gold);
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-size: 13px;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 12px;
    position: relative;
}

.testimonial-text::before {
    content: "“";
    font-family: var(--font-serif);
    font-size: 30px;
    color: rgba(145, 98, 42, 0.15);
    position: absolute;
    left: -12px;
    top: -12px;
}

.testimonial-author {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-terracotta);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Rodapé */
footer {
    text-align: center;
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-top: 10px;
    letter-spacing: 0.5px;
}
