* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior:smooth;
}

body {
    background: #f8f5f0;
    color: #222;
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.top-bar{
    background:linear-gradient(90deg,#0f0f0f,#1a1a1a);
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 30px;
    font-size:12.5px;
    position:sticky;
    top:0;
    z-index:9999;
    border-bottom:1px solid rgba(212,175,123,0.2);
    letter-spacing:0.3px;
}

.top-bar-left{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.badge{
    background:#d4af7b;
    color:#111;
    padding:3px 10px;
    border-radius:20px;
    font-size:11px;
    font-weight:700;
}

.top-bar-right{
    display:flex;
    align-items:center;
    gap:18px;
}

.wa-btn{
    background:linear-gradient(135deg,#25D366,#1ebe57);
    color:white;
    padding:7px 16px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    font-size:12px;
    box-shadow:0 6px 20px rgba(37,211,102,0.25);
    transition:0.3s;
}

.wa-btn:hover{
    transform:translateY(-2px);
}

.social a{
    color:#aaa;
    margin:0 6px;
    text-decoration:none;
    font-size:12px;
}

.social a:hover{
    color:white;
}

.lang a{
    color:#bbb;
    text-decoration:none;
    margin:0 4px;
    font-weight:600;
}

.lang a:hover{
    color:white;
}

header {
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(12px);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 5%;
    position: sticky;
    top: 50px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

nav a {
    color: white;
    margin: 0 18px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    position: relative;
}

nav a:hover {
    color: #d4af7b;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(to right, #d4af7b, #e8c9a0);
    transition: width 0.4s ease;
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #1ebe57);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.4s ease;
    font-size:13px;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
}

.hero {
    text-align: center;
    padding: 180px 20px 140px;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
                url('hero.jpg') center/cover no-repeat;
    color: white;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, #f8f5f0);
}

.hero h1 {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 19px;
    max-width: 680px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

.main-btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af7b, #e8c9a0);
    color: #111;
    padding: 16px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    box-shadow: 0 8px 25px rgba(212, 175, 123, 0.35);
    transition: all 0.4s ease;
}

.main-btn:hover {
    transform: translateY(-5px);
}

.features {
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.box {
    background: white;
    padding: 40px 28px;
    width: 320px;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
}

.box:hover {
    transform: translateY(-12px);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 100px 5%;
    background: linear-gradient(to bottom,#f8f5f0,#ffffff);
}

.img-box {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
}

.img-box:hover {
    transform: translateY(-10px);
}

.img-box img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.img-box h3 {
    font-size: 16px;
    margin: 14px 0 6px;
    padding: 0 18px;
}

.img-box p {
    font-size: 14px;
    color: #555;
    padding: 0 18px 18px;
}

.site-footer {
    background: linear-gradient(180deg,#0f0f0f,#111);
    color: #ddd;
    padding: 80px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-box h3 {
    color: #d4af7b;
    margin-bottom: 18px;
    font-size: 18px;
}

.footer-box a {
    color: #bbb;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-box a:hover {
    color: #d4af7b;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 14px;
}

@media (max-width: 768px) {

    .top-bar{
        flex-direction:column;
        gap:6px;
        text-align:center;
    }

    header {
        flex-direction: column;
        gap: 10px;
        padding: 15px 5%;
        top: 70px;
    }

    .hero h1 {
        font-size: 38px;
    }
}

.ticker {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(90deg,#111,#1a1a1a);
    color: #d4af7b;
    padding: 8px 0;
    font-size: 12px;
}

.ticker-text {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: tickerMove 20s linear infinite;
}

@keyframes tickerMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}