/* =====================================================
   SEAFOOD HERO — Estilos
   Archivo: seafood-hero.css
   ===================================================== */

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

.sf-hero {
  --azul-claro: #ddeef6;
  border-top: #012a6b 2px solid;
  --azul-acento: #3e9eae;
  --azul-oscuro: #002154;
  --blanco: #ffffff;
  position: relative;
  width: 100%;
  min-height: 519px;
  background: url('Main_Background.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 48px 17% 49px 17%;
  box-sizing: border-box;
  /* font-family: 'Barlow', sans-serif; */
  font-family: 'Bodoni Moda', serif;
}

.sf-hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: 30%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 188, 212, 0.10) 0%, transparent 70%);
  pointer-events: none;
}

.sf-deco-octopus {
  position: absolute;
  bottom: 24px;
  left: 48%;
  width: 100px;
  opacity: 0.18;
  pointer-events: none;
  transform: translateX(-50%);
}

/* ---- Columna Texto ---- */
.sf-content {
  flex: 1 1 50%;
  max-width: 800px;
  padding-right: 32px;
  z-index: 2;
}

.sf-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--azul-acento);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.sf-eyebrow svg {
  width: 16px;
  height: 16px;
  fill: var(--azul-acento);
  flex-shrink: 0;
}

.sf-title {
  /* font-family: 'Playfair Display', Georgia, serif; */
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(32px, 4.5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  color: var(--azul-oscuro);
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.sf-title span {
  color: var(--azul-acento);
}

.sf-subtitle {
  font-size: clamp(13px, 1.4vw, 16px);
  color: #4a6a80;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 32px 0;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.sf-btn {
  display: inline-block;
  background: var(--azul-acento);
  color: var(--blanco);
  font-family: 'Bodoni Moda', serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 6px 24px rgba(43, 188, 212, 0.28);
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.58s forwards;
}

.sf-btn:hover {
  background: #1fa3ba;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(43, 188, 212, 0.38);
}

/* ---- Columna Plato ---- */
.sf-plate-wrap {
  flex: 1 1 40%;
  display: flex;
  justify-content: right;
  align-items: center;
  z-index: 2;
  opacity: 0;
  animation: fadeInScale 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

.sf-plate-ring {
  position: relative;
  width: clamp(260px, 36vw, 460px);
  height: clamp(260px, 36vw, 460px);
}

.sf-plate-ring::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 8%;
  width: 84%;
  height: 32px;
  background: radial-gradient(ellipse, rgba(10, 37, 64, 0.15) 0%, transparent 75%);
  border-radius: 50%;
  animation: shadowPulse 6s ease-in-out infinite;
}

.sf-plate {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #f4f8fb;
  background-image: url('TU-IMAGEN-DEL-PLATO.jpg');
  /* ← Cambia por tu URL */
  background-size: cover;
  background-position: center;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.7),
    0 0 0 14px rgba(43, 188, 212, 0.12),
    0 24px 60px rgba(10, 37, 64, 0.14);
  animation: rotatePlate 18s linear infinite;
  will-change: transform;
}

.sf-plate:hover {
  animation-play-state: paused;
  cursor: zoom-in;
}

.sf-ring-deco {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(43, 188, 212, 0.25);
  animation: rotatePlate 26s linear infinite reverse;
}

.sf-ring-deco::before,
.sf-ring-deco::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--azul-acento);
  border-radius: 50%;
  opacity: 0.5;
}

.sf-ring-deco::before {
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.sf-ring-deco::after {
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

/* ---- Keyframes ---- */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.88);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotatePlate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes shadowPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.4;
    transform: scaleX(0.88);
  }
}

/* ---- Responsive ---- */
@media (max-width: 1886px) {
  .sf-hero {
    padding: 48px 14% 49px 14%;
  }
}

@media (max-width: 1730px) {
  .sf-hero {
    padding: 48px 6% 49px 6%;
  }
}

@media (max-width: 768px) {
  .sf-hero {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px 6% 56px;
    min-height: auto;
    gap: 32px;
  }

  .sf-plate-wrap {
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
  }

  .sf-content {
    max-width: 100%;
    padding-right: 0;
  }

  .sf-eyebrow {
    justify-content: center;
  }

  .sf-plate-wrap {
    width: 100%;
  }

  .sf-plate-ring {
    width: clamp(200px, 65vw, 300px);
    height: clamp(200px, 65vw, 300px);
  }

  .sf-ring-deco {
    place-self: anchor-center;
  }

  .sf-deco-octopus {
    display: none;
  }
}

@media (max-width: 480px) {
  .sf-title {
    font-size: 28px;
  }

  .sf-btn {
    padding: 14px 28px;
  }
}