:root {
    --bg-color: #FAFAFA; /* Soft minimal white */
    --primary: #222222; /* Dark Charcoal */
    --accent: #C5A880; /* Elegant Champagne Gold */
    --text-dark: #333333; 
    --text-light: #777777; 
    --white: #FFFFFF;
    --wa-color: #25D366;
    --card-border: #EEEEEE;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: #E0E0E0;
    display: flex;
    justify-content: center;
    font-family: 'Lora', serif;
}

h1, h2, h3, .logo, .badge-promo, .btn-outline, .btn-whatsapp {
    font-family: 'Playfair Display', serif;
}

.app-container {
    width: 100%;
    max-width: 480px;
    background-color: var(--bg-color);
    color: var(--text-dark);
    min-height: 100vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    position: relative;
    overflow-x: hidden;
}

header {
    background: var(--white);
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary);
}
.logo i { color: var(--accent); margin-right: 5px; }

.subtitle {
    font-family: 'Lora', serif;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 6px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero {
    position: relative;
    height: 380px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    padding: 40px 20px 20px 20px;
    color: var(--white);
    text-align: center;
}

.badge-promo {
    display: inline-block;
    background-color: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    font-size: 10px;
    padding: 6px 14px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.hero-overlay h1 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hero-overlay p {
    font-family: 'Lora', serif;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.benefit-section {
    display: flex;
    justify-content: space-between;
    padding: 25px 20px;
    background-color: var(--primary);
    color: var(--white);
}

.benefit-card {
    text-align: center;
    width: 31%;
}

.benefit-card i {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 10px;
}

.benefit-card p {
    font-family: 'Lora', serif;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.content-section {
    padding: 35px 20px 20px 20px;
}

.section-title {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}
.section-title::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background-color: var(--accent);
    margin: 12px auto 0;
}

/* Profile */
.profile-box {
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    padding: 0 10px;
}

/* Service List */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--card-border);
    padding: 25px 20px;
    transition: 0.3s;
}

.service-icon {
    width: 50px;
    height: 50px;
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 15px;
}

.service-info h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.price {
    font-size: 15px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 8px 25px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

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

/* Gallery Scroll */
.gallery-scroll, .testi-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
}
.gallery-scroll::-webkit-scrollbar, .testi-scroll::-webkit-scrollbar { height: 2px; }
.gallery-scroll::-webkit-scrollbar-thumb, .testi-scroll::-webkit-scrollbar-thumb { background: var(--accent); }

.gallery-scroll img {
    width: 280px;
    height: 380px;
    object-fit: cover;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 5px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Testimonials */
.testi-card {
    background: var(--white);
    width: 280px;
    padding: 25px;
    border: 1px solid var(--card-border);
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: center;
}

.stars {
    color: var(--accent);
    font-size: 11px;
    margin-bottom: 15px;
}

.testi-card p {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testi-card strong {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    color: var(--primary);
}

/* Info Card */
.info-card {
    background: var(--white);
    border: 1px solid var(--card-border);
}
.map-container iframe { display: block; filter: grayscale(100%) contrast(1.2); }
.address-box {
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 13px;
    color: var(--text-light);
}
.address-box i {
    color: var(--accent);
    font-size: 20px;
}
.address-box strong { color: var(--primary); font-family: 'Playfair Display', serif; font-size: 15px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--card-border); }
.faq-item {
    background: var(--white);
    border-bottom: 1px solid var(--card-border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
    padding: 20px;
    font-family: 'Lora', serif;
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 20px;
    color: var(--accent);
    font-size: 18px;
    font-family: 'Lora', serif;
}
.faq-item[open] summary::after { content: "-"; }
.faq-content {
    padding: 0 20px 20px 20px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--white);
    color: var(--text-light);
    text-align: center;
    padding: 40px 20px 50px 20px;
    margin-bottom: 70px;
    border-top: 1px solid var(--card-border);
}
.socials { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.socials a {
    color: var(--primary);
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}
.socials a:hover { color: var(--accent); }
footer p { font-size: 12px; font-family: 'Lora', serif; }
.bottom-spacer { height: 10px; }

/* Sticky Button */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.03);
    z-index: 100;
}

.btn-whatsapp {
    width: 100%;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-whatsapp i { color: var(--accent); font-size: 18px;}
.btn-whatsapp:active { background-color: #000; }
