:root {
    --bg-color: #0A0A0A; /* Deep Black */
    --primary: #1A1A1A; /* Dark Grey */
    --accent: #FF4500; /* Neon Orange / Energetic */
    --text-dark: #FFFFFF; /* White for dark theme */
    --text-light: #AAAAAA; /* Light grey */
    --white: #FFFFFF;
    --wa-color: #25D366;
    --card-border: #333333;
}

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

body {
    background-color: #E5E5E5;
    display: flex;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, .logo, .badge-promo, .btn-outline, .btn-whatsapp {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

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

header {
    background: var(--bg-color);
    padding: 20px;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--accent);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--white);
}
.logo i { color: var(--accent); }

.subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
    letter-spacing: 1px;
}

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

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, #0A0A0A, transparent);
    padding: 40px 20px 20px 20px;
}

.badge-promo {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.hero-overlay h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
}

.hero-overlay p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--text-light);
}

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

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

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

.benefit-card p {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.section-title {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-left: 5px solid var(--accent);
    padding-left: 10px;
}

/* Profile */
.profile-box {
    background: var(--primary);
    border-radius: 8px;
    padding: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    border: 1px solid var(--card-border);
}

.profile-box strong { color: var(--accent); }

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

.service-card {
    display: flex;
    align-items: center;
    background: var(--primary);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid var(--card-border);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-color);
    color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}

.service-info { flex: 1; }

.service-info h3 {
    font-size: 16px;
    color: var(--white);
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.desc {
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.4;
}

.price {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: var(--accent);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:active {
    background: var(--accent);
    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: 4px; }
.gallery-scroll::-webkit-scrollbar-thumb, .testi-scroll::-webkit-scrollbar-thumb { background: var(--card-border); border-radius: 10px; }

.gallery-scroll img {
    width: 250px;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    scroll-snap-align: start;
    flex-shrink: 0;
    filter: grayscale(20%);
}

/* Testimonials */
.testi-card {
    background: var(--primary);
    width: 280px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    scroll-snap-align: start;
    flex-shrink: 0;
}

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

.testi-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
}

.testi-card strong {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    color: var(--white);
    letter-spacing: 1px;
}

/* Info Card */
.info-card {
    background: var(--primary);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}
.map-container iframe { display: block; filter: invert(90%) hue-rotate(180deg); }
.address-box {
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 13px;
    color: var(--text-light);
}
.address-box i {
    color: var(--accent);
    font-size: 24px;
    margin-top: 2px;
}
.address-box strong { color: var(--white); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--primary);
    border: 1px solid var(--card-border);
    border-radius: 8px;
}
.faq-item summary {
    padding: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    position: relative;
    letter-spacing: 0.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 15px;
    color: var(--accent);
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}
.faq-item[open] summary::after { content: "-"; }
.faq-content {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Footer */
footer {
    background: #000000;
    color: var(--text-light);
    text-align: center;
    padding: 30px 20px 40px 20px;
    margin-bottom: 70px;
}
.socials { display: flex; justify-content: center; gap: 15px; margin-bottom: 20px; }
.socials a {
    color: #000000;
    font-size: 18px;
    background: var(--white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
}
.socials a:hover { background: var(--accent); }
footer p { font-size: 12px; }
.bottom-spacer { height: 10px; }

/* Sticky Button */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 480px;
    background: rgba(10, 10, 10, 0.95);
    padding: 15px 20px;
    backdrop-filter: blur(5px);
    z-index: 100;
    border-top: 1px solid var(--card-border);
}

.btn-whatsapp {
    width: 100%;
    background-color: var(--accent);
    color: var(--bg-color);
    border: none;
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-whatsapp:active { transform: scale(0.98); }
