/* ===== RESET ===== */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    color: #fff;
    animation: fadeIn 1.2s ease-in-out;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(12px);
    font-size: 18px;
    z-index: 1000;
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    text-align: center;
    padding-top: 60px;
    animation: zoomIn 1s ease;
}

/* ===== TEXT ===== */
h1 {
    font-size: 54px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    animation: slideUp 1s ease-out;
}

.hero p {
    font-size: 18px;
    color: #ccc;
    animation: slideUp 1.3s ease-out;
}

/* ===== BUTTON ULTRA PREMIUM ===== */
.btn {
    width: 240px;
    text-align: center;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    background-size: 200% 200%;
    color: #000;
    padding: 16px;
    border-radius: 14px;
    text-decoration: none !important;
    font-weight: 600;
    display: inline-block;
    transition: all 0.35s ease;
    box-shadow: 0 0 25px rgba(212,175,55,0.25);
    animation: slideUp 1.6s ease-out, shine 3s infinite linear;
}

/* BUTTON HOVER */
.btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 45px rgba(212,175,55,0.9);
}

/* REMOVE UNDERLINE EVERYWHERE */
a, a:link, a:visited, a:hover, a:active {
    text-decoration: none !important;
    color: inherit !important;
}

/* ===== SECTION ===== */
section {
    padding: 50px 20px;
    text-align: center;
}

/* ===== MAP ===== */
iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 12px;
    margin-top: 15px;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(37,211,102,0.6);
    animation: pulse 2s infinite;
}

/* ===== ANIMATIONS ===== */

/* FADE */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* SLIDE UP */
@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ZOOM */
@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
/* ===== CONFIGURATOR ===== */

.configurator {
  padding: 30px;
  text-align: center;
}

.configurator h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

/* OPTIONS */
.options {
  margin-top: 20px;
}

select {
  width: 100%;
  margin: 10px 0;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
}

/* PRICE */
#price {
  font-size: 28px;
  margin: 20px 0;
  color: #fff;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, #d4af37, #f5d76e);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(212,175,55,0.4);
  transition: 0.3s;
}

.btn:hover {
  transform: scale(1.05);
}

/* GOLD SHINE */
@keyframes shine {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* WHATSAPP PULSE */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.main-img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 10px;
}

.gallery {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 15px;
}

.gallery img {
  width: 80px;
  border-radius: 10px;
  cursor: pointer;
}

.video {
  width: 100%;
  border-radius: 20px;
  margin: 15px 0;
}