/*
Theme Name: Minilabo Theme
Theme URI: http://example.com/minilabo-theme
Author: Antigravity
Description: Tema atualizado para a Minilabo MultiFestas com design lado a lado, esquema de cores bege/taupe e interações de carrinho.
Version: 1.2
*/

@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&display=swap');

:root {
    --primary-color: #8C3A6D;
    /* Roxo vibrante/Uva */
    --accent-color: #A34882;
    /* Tom secundário rosado */
    --bg-color: #D6C6B6;
    /* Bege escuro quente */
    --card-bg: #EADECA;
    /* Bege certinho para os fundos suaves */
    --text-color: #5c4e43;
    /* Marrom escuro muito mais suave que preto */
    --text-light: #8b7d70;
    /* Textos secundários */

    --success-color: #5da271;
    /* Verde pastel para botões positivos */
    --success-hover: #4e895f;

    --border-radius: 20px;
    --spacing-sm: 10px;
    --spacing-md: 20px;
    --spacing-lg: 35px;
    --shadow-color: rgba(92, 78, 67, 0.08);
    --shadow-diffuse: rgba(140, 58, 109, 0.35);
    /* Roxo difuso brilhante */

    --font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max-width: 500px;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(135deg, #FAFAFA 0%, #E8DFD6 50%, var(--bg-color) 100%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: var(--spacing-sm) var(--spacing-md) var(--spacing-lg);
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

/* Background Particles (Bolhas Mágicas) */
.bg-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    animation: floatUp 15s infinite ease-in-out;
    opacity: 0.6;
}

@keyframes floatUp {
    0% {
        transform: translateY(110vh) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    80% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) scale(1.2);
        opacity: 0;
    }
}

.app-container {
    width: 100%;
    max-width: var(--max-width);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-top: 10px;
}

/* Header / Logo */
.site-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: -10px;
}

.site-logo {
    font-size: 3.2rem;
    font-weight: 800;
    color: #b0aab5;
    /* Cinza prateado quente */
    text-shadow:
        -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff,
        -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff,
        0px 6px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -5px;
    letter-spacing: -2px;
    line-height: 1;
    z-index: 1;
}

.site-logo span {
    color: var(--primary-color);
    text-shadow:
        -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff,
        -3px 0px 0 #fff, 3px 0px 0 #fff, 0px -3px 0 #fff, 0px 3px 0 #fff,
        0px 6px 15px rgba(0, 0, 0, 0.1);
}

.site-subtitle {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -1px;
    text-transform: none;
    display: flex;
    align-items: center;
    gap: 4px;
    text-shadow:
        -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff,
        -2px 0px 0 #fff, 2px 0px 0 #fff, 0px -2px 0 #fff, 0px 2px 0 #fff,
        0px 4px 10px rgba(0, 0, 0, 0.08);
}

/* Products Section */
section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
    /* Para ficar acima das partículas */
}

/* --- Ticker Animado --- */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background-color: #A34882;
    padding: 8px 0;
    margin-bottom: var(--spacing-md);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(163, 72, 130, 0.2);
    display: flex;
    white-space: nowrap;
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    /* Começa fora da tela */
    animation: ticker 15s linear infinite;
    color: #FFF;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

@keyframes ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

.ticker-item {
    display: inline-block;
    padding: 0 20px;
}

/* --- Team Section --- */
.team-section {
    width: 100%;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.team-section h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
    font-size: 1.4rem;
}

.team-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.team-grid::-webkit-scrollbar {
    display: none;
}

.team-member {
    flex: 0 0 auto;
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 8px;
    border: 3px solid #FFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: var(--primary-color);
}

.team-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-color);
}

.team-role {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* --- New Landing Page Styles --- */

/* Photo Gallery */
.gallery-section {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    width: 100%;
}

.gallery-item {
    border-radius: calc(var(--border-radius) - 6px);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item.large {
    grid-column: span 2;
    height: 190px;
    border-radius: 30px 10px 30px 10px;
    /* Formato "Folha/Brincalhão" */
}

.gallery-item:not(.large) {
    height: 140px;
}

.gallery-item:nth-child(2) {
    border-radius: 10px 25px 5px 20px;
}

.gallery-item:nth-child(3) {
    border-radius: 20px 5px 25px 10px;
}

/* Hero Action Block - Com Glassmorphism */
.hero-action {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    margin-bottom: var(--spacing-md);
}

.hero-action h2 {
    color: #A34882;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.hero-action p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.btn-hero {
    background-color: var(--primary-color);
    font-size: 1.15rem;
    padding: 14px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px var(--shadow-diffuse);
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-hero:hover {
    background-color: #722e58;
    box-shadow: 0 12px 25px rgba(114, 46, 88, 0.4);
    transform: translateY(-2px);
}

/* Testimonial Block */
.testimonial-block {
    margin-bottom: var(--spacing-md);
}

.testimonial-card {
    background: #FFF;
    border-radius: var(--border-radius);
    padding: var(--spacing-md);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-left: 4px solid #A34882;
}

.stars {
    color: #F2C94C;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.quote {
    font-style: italic;
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.author {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.products-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Cartões com Glassmorphism Premium */
.product-card {
    background: rgba(234, 222, 202, 0.65);
    /* var(--card-bg) com opacidade */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius);
    padding: 7px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: rgba(234, 222, 202, 0.85);
}

.product-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    min-height: 180px;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px 5px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.2;
    color: var(--text-color);
}

/* Typography e Botão Padrão */
.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 1.1rem;
    font-weight: 700;
}

.product-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
}

/* Base button styles */
.btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background-color: var(--primary-color);
    color: #FFF;
    text-align: center;
    text-decoration: none;
    border-radius: calc(var(--border-radius) / 1.5);
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 4px 15px var(--shadow-diffuse);
}

.btn:hover,
.btn:active {
    background-color: #722e58;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(114, 46, 88, 0.4);
}

.product-info p {
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-color);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 24px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--button-radius);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    width: 100%;
}

.btn:hover {
    background-color: var(--primary-hover);
    transform: scale(1.03);
}

.product-image {
    width: 40%;
    max-width: 180px;
    min-width: 140px;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: calc(var(--border-radius) - 6px);
}

/* --- Interactive Options Section --- */
.product-options {
    display: none;
    padding: 15px 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 10px;
    animation: fadeIn 0.3s ease;
    text-align: left;
}

.product-options.active {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-options h4 {
    font-size: 0.95rem;
    color: var(--text-color);
    margin: 5px 0 0 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.radio-label,
.check-label {
    display: flex;
    align-items: center;
    background: #F4EBE0;
    padding: 12px;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.2s, background 0.2s;
}

.radio-label:hover,
.check-label:hover {
    background: #EFE4D6;
}

/* Selected state styling (opcional com JS, mas visivel pelos inputs) */
.radio-label:has(input:checked) {
    border-color: #A34882;
    background: #FFF;
}

.radio-label input,
.check-label input {
    margin-right: 12px;
    transform: scale(1.3);
    accent-color: #A34882;
    cursor: pointer;
}

.radio-content,
.check-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.radio-content .title,
.check-content .title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-color);
}

.radio-content .price,
.check-content .price {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.calendar-mockup {
    background: #FFF;
    border: 2px dashed #B2AEB6;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.calendar-mockup p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: #A34882;
    border: 2px solid #A34882;
    padding: 10px 16px;
    border-radius: var(--button-radius);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn-outline:hover {
    background: #A34882;
    color: #FFF;
}

.btn-checkout {
    background: #27ae60;
    margin-top: 10px;
    font-size: 1.1rem;
}

.btn-checkout:hover {
    background: #219653;
}

/* Contact Block */
.contact-block {
    margin-top: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
}

/* ==========================================================================
   4. LOGOTIPO & HEADER
   ========================================================================== */
.site-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    animation: fadeInDown 0.8s ease-out forwards;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.official-logo-img {
    width: 100%;
    max-width: 360px;
    height: auto;
    display: block;
    margin: 0 auto;
    mix-blend-mode: normal;
    /* A mágica do Taplink é simplesmente o fundo estar igual à foto */
}

@media (max-width: 480px) {
    .official-logo-img {
        max-width: 250px;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background-color: var(--card-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--button-radius);
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.social-link:hover {
    background-color: #E0CDB9;
    transform: scale(1.02);
}

/* Terms Checkbox */
.terms-container {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.terms-label input {
    margin-top: 3px;
    flex-shrink: 0;
    transform: scale(1.3);
    accent-color: #A34882;
    cursor: pointer;
}

.terms-text {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.4;
}

.terms-text a {
    color: #A34882;
    font-weight: 700;
    text-decoration: none;
}

.terms-text a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    padding: 10px 0 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
}

/* --- Dynamic Sliders (Carousels) --- */

/* 1. Testimonial Slider */
.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 15px;
    padding: 10px 5px;
    -ms-overflow-style: none;
    /* Hide scrollbar IE/Edge */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.testimonial-card.slide {
    flex: 0 0 85%;
    /* Viewport proportion */
    scroll-snap-align: center;
    position: relative;
    /* Adicionando pequena animação para parecer um card do app */
    transition: transform 0.3s;
}

/* 2. Product Mini-Gallery (Services) */
.product-image {
    width: 40%;
    max-width: 180px;
    min-width: 140px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    /* Mascara as bordas para as fotos de dentro */
    border-radius: calc(var(--border-radius) - 6px);
}

.product-gallery {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.product-gallery::-webkit-scrollbar {
    display: none;
}

.product-gallery img {
    flex: 0 0 100%;
    /* Cada imagem gasta 100% do espaco reservado p/ imagem */
    scroll-snap-align: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    /* Bordas sao controladas pelo container pai */
}

/* Gallery Indicators (Bolinhas) */
.gallery-indicators {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 5px;
    z-index: 2;
    pointer-events: none;
}

.gallery-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: background 0.3s, transform 0.3s;
}

.gallery-dot.active {
    background: #FFF;
    transform: scale(1.3);
}

/* 3. Slider Manual Controls (Setas) */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.slider-btn {
    background: #FFF;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #FFF;
    transform: scale(1.1);
}

/* --- Newsletter (Email Marketing) Captcha --- */
.newsletter-block {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius);
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
    margin-top: 15px;
    margin-bottom: var(--spacing-md);
}

.newsletter-block h2 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.newsletter-block p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(163, 72, 130, 0.2);
    border-radius: 15px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-color);
    background: #FFF;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input::placeholder {
    color: #B2AEB6;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(163, 72, 130, 0.1);
}

.btn-newsletter {
    background: var(--primary-color);
    padding: 14px;
    border-radius: 15px;
    font-size: 1.05rem;
    box-shadow: 0 6px 15px var(--shadow-diffuse);
    border: none;
    color: #FFF;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-newsletter:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(163, 72, 130, 0.4);
}

/* ==========================================================================
   5. RECREADORES MODAL
   ========================================================================== */
.recreador-modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999;
    align-items: center; justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.recreador-modal-content {
    background: #fff;
    width: 100%; max-width: 500px;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalSlideUp 0.3s ease-out;
}
@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.modal-close-btn {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 2.5rem; color: #b2aeb6;
    cursor: pointer; line-height: 1;
    transition: color 0.3s;
}
.modal-close-btn:hover {
    color: var(--primary-color);
}
.modal-header {
    text-align: center;
    margin-bottom: 20px;
}
.modal-photo {
    width: 130px; height: 130px;
    object-fit: cover; border-radius: 50%;
    border: 5px solid var(--primary-color);
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(163, 72, 130, 0.2);
}
.modal-name {
    font-size: 1.7rem; color: var(--primary-color);
    font-weight: 800;
}
.modal-bio {
    text-align: left;
}
/* Adaptação pro plugin de agendamento */
.modal-agenda-wrapper iframe, .modal-agenda-wrapper .ssa-booking {
    width: 100% !important; border: none;
}

/* Fix iOS Input Zoom and Global Responsiveness Bugs */
@media screen and (max-width: 768px) {
    input, select, textarea, .app-input, .form-control {
        font-size: 16px !important;
        box-sizing: border-box !important;
        max-width: 100% !important;
    }
    
    html, body {
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* =========================================================
   NATIVE APP PREMIUM UI/UX
========================================================= */

/* 1. Splash Screen */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* 2. Skeleton Loader */
@keyframes mnl-skeleton-loading {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}
.mnl-skeleton-list { display: flex; flex-direction: column; gap: 12px; margin-top: 15px; }
.mnl-skeleton-item {
    height: 60px; border-radius: 12px;
    background: #f0f0f0;
    background-image: linear-gradient(90deg, #f0f0f0 0px, #e0e0e0 40px, #f0f0f0 80px);
    background-size: 200px 100%; background-repeat: no-repeat;
    animation: mnl-skeleton-loading 1.2s infinite ease-in-out;
}

/* 3. Bottom Sheet Modal Transition */
.modal-agenda-content {
    animation: bottomSheetSlideIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
@keyframes bottomSheetSlideIn {
    0% { transform: translateY(100%); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* 4. Glass Bottom Bar */
.mnl-glass-bottom-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    box-sizing: border-box !important;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px 24px 0 0;
    display: flex; flex-direction: column; gap: 12px;
    animation: bottomSheetSlideIn 0.4s ease forwards;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mnl-glass-bottom-bar.mnl-hidden {
    opacity: 0 !important;
    transform: translateY(100%) !important;
    pointer-events: none !important;
}

.mnl-recreadores-panel {
    padding-bottom: 130px !important;
}

/* Form Padding Bottom to avoid overlap with Glass Bottom Bar */
.mnl-form {
    padding-bottom: 120px !important;
}

/* 5. Ripple Effect */
.mnl-ripple-container { position: relative; overflow: hidden; }
.mnl-ripple {
    position: absolute; border-radius: 50%;
    transform: scale(0); animation: mnl-ripple-anim 0.6s linear;
    background: rgba(255, 255, 255, 0.3); pointer-events: none;
}
@keyframes mnl-ripple-anim {
    to { transform: scale(4); opacity: 0; }
}

/* Premium Form Custom Inputs and Focus Effects */
.mnl-form input[type="text"],
.mnl-form input[type="email"],
.mnl-form input[type="tel"],
.mnl-form select,
.mnl-form textarea {
    transition: all 0.3s ease !important;
    background: #FFF !important;
    border: 1.5px solid rgba(140,58,109,0.2) !important;
    color: #3d2f28 !important;
    font-family: inherit !important;
    box-sizing: border-box !important;
}

.mnl-form input[type="text"]:focus,
.mnl-form input[type="email"]:focus,
.mnl-form input[type="tel"]:focus,
.mnl-form select:focus,
.mnl-form textarea:focus {
    border-color: rgba(140,58,109,0.7) !important;
    box-shadow: 0 0 0 4px rgba(140,58,109,0.12) !important;
    background-color: #FFF !important;
    transform: translateY(-1px);
}

.mnl-form label {
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    color: #6a4f40 !important;
    margin-bottom: 6px !important;
    display: block !important;
}
