@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Montserrat:wght@700;800&family=Playfair+Display:ital,wght@1,600&display=swap');

.guate-pos-wrapper {
    font-family: 'Inter', sans-serif;
    background-color: #F7F9FC;
    color: #111111;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Montserrat', sans-serif; }
.playfair-text { font-family: 'Playfair Display', serif; }

/* Dark Gradient Hero & Dot Pattern */
.hero-section {
    background: linear-gradient(135deg, #0A1A2F 0%, #111111 100%);
    background-image: radial-gradient(rgba(232, 197, 71, 0.1) 1px, transparent 1px), linear-gradient(135deg, #0A1A2F 0%, #111111 100%);
    background-size: 20px 20px, 100% 100%;
    padding: 120px 0 80px 0;
    color: #F7F9FC;
}

/* Colors & Brand Identity */
.bg-navy { background-color: #0A1A2F; }
.text-gold { color: #E8C547; }
.btn-emerald {
    background-color: #2BBBAD !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(43, 187, 173, 0.4);
    transition: all 0.3s ease;
}
.btn-emerald:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 187, 173, 0.6);
}

/* Rounded Cards with Soft Shadows & Gold Accent */
.premium-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-top: 4px solid #E8C547;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Elegant Dividers */
.gold-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #E8C547, transparent);
    margin: 40px 0;
    opacity: 0.5;
}

/* Horizontal Carousel Scrollbar Hiding */
.client-carousel::-webkit-scrollbar { display: none; }
.client-carousel { -ms-overflow-style: none; scrollbar-width: none; }
