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

:root {
  --color-navy: #061A35;
  --color-orange: #F26A1B;
  --color-orange-light: #fb923c;
  --color-green-whatsapp: #22A33A;
  --color-green-lime: #7AC943;
  --color-gold: #D6A23A;
  --color-gray-light: #E8E8E8;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  overflow-x: hidden;
}

h1, h2, h3, h4, .font-anton {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.02em;
}

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

section[id] {
  scroll-margin-top: 5rem;
}

/* GRADIENT TEXT */
.gradient-text {
  background: linear-gradient(90deg, var(--color-orange), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HERO PERSONALIZADOS */
.hero-bg {
  background-color: var(--color-navy);
  position: relative;
}

/* DECORATIVE ELEMENTS */
.curve-top-left {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 15px solid var(--color-orange);
  opacity: 0.8;
  pointer-events: none;
}

.curve-bottom-right {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 20px solid var(--color-orange);
  opacity: 0.8;
  pointer-events: none;
}

.dots-pattern {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(var(--color-gray-light) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.15;
  pointer-events: none;
}

.dots-top-right {
  top: 10%;
  right: 5%;
}

.dots-bottom-left {
  bottom: 10%;
  left: 5%;
}

/* WA BUTTON */
.btn-whatsapp {
  background-color: var(--color-green-whatsapp);
  border: 3px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 28px;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px -5px rgba(34, 163, 58, 0.5);
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 35px -5px rgba(34, 163, 58, 0.6);
  color: #FFFFFF;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp .9s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.bounce-down {
  animation: bounce-down 1.6s ease-in-out infinite;
}

/* FLOATING ANIMATION FOR PRODUCTS */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}
.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* ── GALLERY ── */
.gallery-item {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, .12);
  border-color: var(--color-orange-light);
}

.gallery-item img {
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

/* HIDE SCROLLBAR FOR CAROUSEL */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ── MODAL LIGHTBOX ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 26, 53, 0.9);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  background: white;
  border-radius: 24px;
  max-width: 500px;
  width: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.3s ease-out;
}

.modal.active .modal-content {
  transform: scale(1);
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.05);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(0,0,0,0.1);
}