@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #047857; /* Emerald-700 */
    --primary-dark: #064E3B; /* Emerald-900 */
    --emerald-50: #ECFDF5;
    --amber-50: #FFFBEB;
    --amber-700: #B45309;
    --gray-50: #F9FAFB;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-900: #111827;
    --whatsapp: #25d366;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: white;
    color: var(--gray-900);
    line-height: 1.5;
}

/* Sticky Header */
header {
    background: var(--primary);
    padding: 0.75rem 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.logo {
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    color: white;
}

.header-btn {
    background: white;
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 640px;
    margin: 0 auto;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 1.5rem;
}

.hero-image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 1rem;
}

.badges-row {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    width: 100%;
    justify-content: center;
}

.badge {
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.badge-emerald {
    background-color: var(--emerald-50);
    color: var(--primary);
}

.badge-amber {
    background-color: var(--amber-50);
    color: var(--amber-700);
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .5; }
}

.hero h1 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-align: center;
    line-height: 1.25;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem 1rem;
}

.stat-item {
    text-align: center;
}

.stat-num {
    display: block;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Status Card */
.status-card {
    margin: 0 1rem 2rem;
    background-color: var(--emerald-50);
    padding: 1.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-avatar {
    width: 4.5rem;
    height: 4.5rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid #D1FAE5;
    flex-shrink: 0;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-info h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.125rem;
}

.status-subtitle {
    font-size: 1.125rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.status-stats {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

@keyframes status-glow {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); color: #059669; }
}



/* Reviews Section */
.reviews-section {
    padding: 2rem 0;
    background-color: var(--gray-50);
}

.reviews-section h2 {
    padding: 0 1rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.reviews-slider {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem 1rem;
    scrollbar-width: none;
}

.reviews-slider::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 280px;
    background: white;
    padding: 1.25rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-sm);
}

.review-name {
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.stars {
    color: #FBBF24;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-text {
    font-size: 0.875rem;
    color: var(--gray-900);
    font-style: italic;
    font-weight: 500;
}

/* Warning Box */
.warning-box {
    margin: 2rem 1rem;
    padding: 1rem 1.25rem;
    background-color: #FFFDF5;
    border-radius: 0.5rem;
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    border-left: 4px solid #D97706;
    box-shadow: var(--shadow-sm);
}

.warning-icon { 
    color: #D97706;
    margin-top: 0.25rem;
}

.warning-text {
    font-size: 0.875rem;
    color: #4B5563;
    line-height: 1.6;
    font-weight: 400;
}

.warning-text strong {
    color: #92400E;
    font-weight: 700;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 0.75rem;
    z-index: 1000;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9375rem;
}

.btn-black {
    background-color: var(--gray-900);
    color: white;
}

.btn-whatsapp {
    background-color: var(--whatsapp);
    color: white;
}

/* Heartbeat Animation for Buttons */
.header-btn, .contact-btn {
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.05); }
    28% { transform: scale(1); }
    42% { transform: scale(1.05); }
    70% { transform: scale(1); }
}

/* Footer Links */
footer {
    padding: 2rem 1rem 6rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.footer-links a:hover { text-decoration: underline; }

/* Desktop */
@media (min-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .bottom-bar {
        max-width: 480px;
        margin: 0 auto;
        border-radius: 1rem 1rem 0 0;
    }
}
