/* =========================
   RESET BÁSICO
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: #050608;
  color: #f5f5f5;
}

/* =========================
   VARIABLES
   ========================= */
:root {
  --se-bg: #050608;
  --se-bg-soft: #0b0f17;
  --se-bg-strong: #050406;
  --se-primary: #ff7a1a;
  --se-primary-soft: #ffb347;
  --se-primary-strong: #ff4b00;
  --se-accent: #ffd762;
  --se-text-main: #f5f5f5;
  --se-text-muted: #a4a7b3;
  --se-border-soft: rgba(255, 255, 255, 0.07);
  --se-card-bg: rgba(12, 16, 26, 0.96);
  --se-card-border: rgba(255, 255, 255, 0.06);
  --se-radius-lg: 22px;
  --se-radius-md: 16px;
  --se-radius-pill: 999px;
  --se-shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.65);
  --se-shadow-glow: 0 0 35px rgba(255, 122, 26, 0.55);
  --se-max-width: 1180px;
}

/* =========================
   UTILIDADES GENERALES
   ========================= */
.se-container {
  width: 100%;
  max-width: var(--se-max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.se-section {
  padding: 5.5rem 0;
  background: radial-gradient(
      circle at top left,
      rgba(255, 122, 26, 0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(255, 215, 98, 0.04),
      transparent 60%
    ),
    var(--se-bg);
}

.se-section-dark {
  background: radial-gradient(
      circle at top right,
      rgba(255, 122, 26, 0.08),
      transparent 55%
    ),
    #030307;
}

.se-section-header {
  text-align: center;
  margin-bottom: 3.25rem;
}

.se-section-header h2 {
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.se-section-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--se-text-muted);
  line-height: 1.6;
}

/* =========================
   BOTONES
   ========================= */
.se-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: var(--se-radius-pill);
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-out;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.se-btn-primary {
  background: linear-gradient(135deg, var(--se-primary), var(--se-primary-strong));
  border-color: rgba(255, 170, 95, 0.7);
  color: #111;
  box-shadow: var(--se-shadow-glow);
}

.se-btn-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.se-btn-outline {
  background: transparent;
  color: var(--se-primary-soft);
  border-color: rgba(255, 184, 120, 0.7);
}

.se-btn-outline:hover {
  background: rgba(255, 122, 26, 0.08);
  transform: translateY(-1px);
}

.se-btn-lg {
  font-size: 0.95rem;
  padding: 1rem 1.9rem;
}

.se-btn-full {
  width: 100%;
}

/* =========================
   HEADER / NAVBAR
   ========================= */
.se-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
      to bottom,
      rgba(5, 6, 8, 0.9),
      rgba(5, 6, 8, 0.8),
      transparent
    );
  backdrop-filter: blur(14px);
}

.se-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.se-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.se-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(255, 122, 26, 0.6));
}

.se-brand-text {
  display: flex;
  flex-direction: column;
}

.se-brand-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f8f8f8;
}

.se-brand-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--se-text-muted);
}

/* NAV LINKS */
.se-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.se-nav a {
  color: var(--se-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.2s ease-out;
}

.se-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(
    90deg,
    var(--se-primary),
    var(--se-accent)
  );
  border-radius: 999px;
  transition: width 0.2s ease-out;
}

.se-nav a:hover {
  color: #ffffff;
}

.se-nav a:hover::after {
  width: 100%;
}

.se-header-cta {
  font-size: 0.78rem;
}

/* NAV TOGGLE (MOBILE) */
.se-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.22rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.se-nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: #f5f5f5;
  transition: all 0.2s ease-out;
}

/* =========================
   HERO
   ========================= */
.se-hero {
  position: relative;
  padding: 5.75rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% -10%, rgba(255, 122, 26, 0.35), transparent 60%),
    radial-gradient(circle at 90% 110%, rgba(255, 215, 98, 0.18), transparent 60%),
    linear-gradient(140deg, #030306 0%, #05080f 65%, #020307 100%);
}

.se-hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
      circle at 0% 100%,
      rgba(255, 122, 26, 0.16),
      transparent 55%
    ),
    radial-gradient(circle at 100% 0%, rgba(255, 215, 98, 0.08), transparent 55%);
}

.se-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  z-index: 1;
}

.se-hero-text h1 {
  font-family: "Rajdhani", system-ui, sans-serif;
  font-size: clamp(2.65rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.se-gradient-text {
  background: linear-gradient(120deg, #ffcf3b, #ff7a1a, #ff4b00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(255, 122, 26, 0.4);
}

.se-hero-sub {
  color: var(--se-text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 1.9rem;
}

.se-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: var(--se-radius-pill);
  border: 1px solid rgba(255, 153, 79, 0.7);
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--se-primary-soft);
  margin-bottom: 1.2rem;
  background: radial-gradient(
      circle at top left,
      rgba(255, 215, 98, 0.35),
      transparent 65%
    ),
    rgba(8, 10, 16, 0.9);
}

.se-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.6rem;
}

.se-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.se-badge {
  background: rgba(12, 16, 26, 0.95);
  border-radius: var(--se-radius-pill);
  padding: 0.55rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.se-badge-title {
  font-size: 0.8rem;
  font-weight: 600;
}

.se-badge-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--se-text-muted);
}

/* HERO MEDIA */
.se-hero-media {
  position: relative;
}

.se-hero-card {
  background: radial-gradient(circle at top left, #ff7a1a, #8e3a00);
  border-radius: 26px;
  padding: 0.25rem;
  box-shadow: var(--se-shadow-soft), var(--se-shadow-glow);
}

.se-hero-img {
  display: block;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.se-hero-card-tag {
  position: absolute;
  left: 1.4rem;
  bottom: -0.8rem;
  background: rgba(5, 6, 10, 0.96);
  border-radius: var(--se-radius-pill);
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 140, 65, 0.7);
}

.se-hero-floating {
  position: absolute;
  right: -1.5rem;
  top: 56%;
  transform: translateY(-50%);
  width: 210px;
  background: rgba(5, 7, 11, 0.98);
  border-radius: 20px;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--se-shadow-soft);
}

.se-hero-floating-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
}

.se-hero-floating-text {
  padding: 0.5rem 0.55rem 0.55rem;
  font-size: 0.75rem;
  color: var(--se-text-main);
}

.se-hero-floating-text span {
  display: block;
  color: var(--se-text-muted);
  font-size: 0.7rem;
}

/* =========================
   SECCIÓN SERVICIOS
   ========================= */
.se-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.7rem;
}

.se-card {
  background: var(--se-card-bg);
  border-radius: var(--se-radius-lg);
  padding: 1.6rem 1.65rem;
  border: 1px solid var(--se-card-border);
  box-shadow: var(--se-shadow-soft);
}

.se-card h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.se-card p {
  color: var(--se-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.9rem;
}

.se-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.se-list li::before {
  content: "▹";
  color: var(--se-primary-soft);
  margin-right: 0.35rem;
}

.se-highlight {
  margin-top: 2.5rem;
  padding: 1.7rem 1.6rem;
  border-radius: var(--se-radius-lg);
  background: linear-gradient(
      120deg,
      rgba(255, 122, 26, 0.12),
      rgba(255, 215, 98, 0.12)
    ),
    rgba(8, 10, 16, 0.9);
  border: 1px solid rgba(255, 169, 90, 0.7);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.se-highlight h3 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.4rem;
}

.se-highlight p {
  color: var(--se-text-main);
  font-size: 0.9rem;
  line-height: 1.6;
}

.se-highlight-tag {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #111;
  background: linear-gradient(130deg, var(--se-accent), var(--se-primary));
  padding: 0.6rem 1.2rem;
  border-radius: var(--se-radius-pill);
}

/* =========================
   ESPECIALIZADOS
   ========================= */
.se-especial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.5rem;
  /* para que el texto se alinee arriba y no quede tan abajo */
  align-items: start;
}


.se-especial-grid h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.1rem;
}

.se-especial-grid p {
  color: var(--se-text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
  font-size: 0.94rem;
}

.se-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
}

.se-tags span {
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(12, 16, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.se-payments h3,
.se-garantia h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.25rem;
}

.se-payments p,
.se-garantia p {
  font-size: 0.9rem;
  color: var(--se-text-main);
}

.se-especial-media {
  display: grid;
  grid-template-rows: auto auto;
  gap: 1.2rem;
}

.se-especial-card {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top left, #ff7a1a, #843300);
  padding: 0.2rem;
  border-radius: 20px;
  box-shadow: var(--se-shadow-soft);
}

.se-especial-caption {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(3, 4, 7, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f5f5f5;
  text-align: center;
  border: 1px solid rgba(255, 153, 79, 0.8);
}


.se-especial-card.small {
  width: 80%;
  margin-left: auto;
  background: radial-gradient(circle at top left, #ffd762, #ff7a1a);
}

.se-especial-card img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
}

/* =========================
   GALERÍA
   ========================= */
.se-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 1rem;
}

.se-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--se-radius-md);
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--se-shadow-soft);
}

.se-gallery-item-large {
  grid-row: span 2;
}

.se-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.se-gallery-item:hover img {
  transform: scale(1.07);
  opacity: 0.92;
}

.se-gallery-item figcaption {
  position: absolute;
  left: 0.7rem;
  bottom: 0.6rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--se-radius-pill);
  background: rgba(3, 4, 7, 0.85);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* =========================
   CTA STRIP
   ========================= */
.se-cta-strip {
  background: linear-gradient(
    135deg,
    #ff7a1a,
    #ffb347,
    #ffd762
  );
  color: #111;
  padding: 2.5rem 0;
}

.se-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.se-cta-strip h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
}

.se-cta-strip p {
  font-size: 0.96rem;
}

/* =========================
   CONTACTO
   ========================= */
.se-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.se-contact-grid h2 {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.se-contact-grid p {
  color: var(--se-text-muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.se-contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.se-contact-item {
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
}

.se-contact-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--se-text-muted);
  margin-bottom: 0.15rem;
}

.se-contact-value {
  font-size: 0.98rem;
  color: var(--se-text-main);
  text-decoration: none;
}

.se-contact-value:hover {
  color: var(--se-primary-soft);
}

.se-contact-note {
  display: block;
  font-size: 0.78rem;
  color: var(--se-text-muted);
  margin-top: 0.1rem;
}

.se-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.se-socials a {
  font-size: 0.82rem;
  text-decoration: none;
  color: var(--se-text-main);
  padding: 0.3rem 0.75rem;
  border-radius: var(--se-radius-pill);
  background: rgba(12, 16, 26, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.se-socials a:hover {
  background: rgba(255, 122, 26, 0.14);
}

.se-contact-card {
  background: var(--se-card-bg);
  border-radius: var(--se-radius-lg);
  padding: 1.7rem 1.6rem;
  border: 1px solid var(--se-card-border);
  box-shadow: var(--se-shadow-soft);
}

.se-contact-card h3 {
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
}

.se-contact-card p {
  color: var(--se-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.se-contact-small {
  font-size: 0.78rem;
  color: var(--se-text-muted);
  margin-top: 0.85rem;
}

/* =========================
   FOOTER
   ========================= */
.se-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #020305;
  padding: 1.2rem 0 1.4rem;
}

.se-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--se-text-muted);
}

.se-footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 0.5rem;
}

.se-footer-left {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* =========================
   WHATSAPP FLOTANTE
   ========================= */
.se-whatsapp-floating {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: radial-gradient(
      circle at top left,
      rgba(255, 215, 98, 0.15),
      transparent 55%
    ),
    #25d366;
  color: #04210d;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
}

.se-whatsapp-floating::before {
  content: "✆";
  font-size: 1.05rem;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 960px) {
  .se-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-hero-media {
    order: -1;
  }

  .se-hero-floating {
    right: 0.4rem;
    top: auto;
    bottom: -0.4rem;
    transform: translateY(0);
  }

  .se-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .se-especial-grid,
  .se-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-especial-media {
    max-width: 420px;
    margin: 0 auto;
  }

  .se-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .se-header-inner {
    padding: 0.75rem 1.2rem;
  }

  .se-nav {
    position: absolute;
    top: 60px;
    right: 1.5rem;
    flex-direction: column;
    background: rgba(5, 7, 12, 0.98);
    border-radius: 16px;
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--se-shadow-soft);
    width: 220px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
  }

  .se-nav a {
    padding: 0.3rem 0;
  }

  .se-nav.open {
    opacity: 1;
    pointer-events: auto;
  }

  .se-header-cta {
    display: none;
  }

  .se-nav-toggle {
    display: flex;
  }

  .se-grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .se-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }

  .se-cta-strip h2 {
    font-size: 1.4rem;
  }

  .se-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .se-container {
    padding: 0 1.1rem;
  }

  .se-hero {
    padding-top: 5rem;
  }

  .se-hero-text h1 {
    font-size: 2.2rem;
  }

  /* --- Ajuste hero para que no se vea apiñado en CELULAR --- */
  .se-hero-media {
    max-width: 360px;
    margin: 0 auto 2.4rem;
  }

  .se-hero-card {
    border-radius: 20px;
  }

  /* En phones pequeños las dos tarjetas se apilan, no se montan */
  .se-hero-floating {
    position: relative;
    width: 88%;
    margin: 0.9rem auto 0;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }
  /* --------------------------------------------------------- */

  .se-gallery {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 210px;
  }

  .se-whatsapp-floating span {
    display: none;
  }

  .se-whatsapp-floating {
    border-radius: 50%;
    padding: 0.7rem;
  }
}
