/* ===========================================
   CONTACTO PROFESIONAL - Ledy | Proveedor
=========================================== */

/* --------- RESET GLOBAL --------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: #fffaf9;
  color: #2a2a2a;
  line-height: 1.6;
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --------- VARIABLES --------- */
:root {
  --coral: rgb(245, 94, 39);
  --coral-light: rgba(245, 94, 39, 0.15);
  --rose: #ffd8cc;
  --gold-soft: #f8d49d;
  --text-dark: #3a3a3a;
  --bg-light: #fff7f5;
}

/* =========================
   HEADER (IGUAL AL INDEX)
========================= */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(245, 94, 39, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
  line-height: 1;
}

.logo .brand {
  font-size: 2.2rem;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.5px;
  color: var(--coral);
}

.logo .tagline {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Navbar */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 1.8rem;
}

.navbar a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--coral);
  transition: width 0.3s ease;
}

.navbar a:hover::after,
.navbar a.active::after {
  width: 100%;
}

.navbar a:hover,
.navbar a.active {
  color: var(--coral);
}

/* =========================
   CONTACTO PROFESIONAL
========================= */
.contacto-profesional {
  padding: 2rem 0;
  background-color: #fff5f0;
  text-align: center;
}

/* Transformaciones iniciales para animaciones */
.contacto-profesional h2,
.contacto-profesional .subtitulo,
.redes-contacto.horizontal,
.split-grid,
.footer {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.contacto-profesional h2 {
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: 0.5rem;
}

.contacto-profesional .subtitulo {
  font-size: 1.2rem;
  color: #6b4a3d;
  margin-bottom: 2rem;
}

/* REDES SOCIALES CENTRADAS */
.redes-contacto.horizontal {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* SPLIT GRID: VIDEO + SOBRE NOSOTROS */
.split-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

/* VIDEO AREA */
.video-area {
  flex: 1 1 600px;
  max-width: 600px;
}

/* SOBRE NOSOTROS */
.sobre-nosotros {
  flex: 1 1 400px;
  max-width: 400px;
  background-color: #fff;
  padding: 2.5rem 2rem;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(245, 94, 39, 0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-nosotros:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(245, 94, 39, 0.25);
}

.sobre-nosotros h3 {
  color: var(--coral);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  text-align: center;
}

/* Cada ítem con fondo suave y hover */
.sobre-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border-left: 4px solid var(--coral);
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(245,94,39,0.05), rgba(255,184,156,0.05));
  transition: transform 0.3s, background 0.3s;
}

.sobre-item:hover {
  transform: translateX(5px);
  background: linear-gradient(90deg, rgba(245,94,39,0.1), rgba(255,184,156,0.1));
}

.sobre-item i {
  font-size: 1.5rem;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 3px;
}

.sobre-item p {
  font-size: 1rem;
  color: #6b4a3d;
  line-height: 1.6rem;
  margin: 0;
}

/* REDES SOCIALES */
.red-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: #fff;
  color: var(--coral);
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(245,94,39,0.2);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.red-social i {
  font-size: 1.2rem;
}

.red-social:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(245,94,39,0.3);
}

/* Colores redes */
.red-social.facebook { background-color: #3b5998; color: #fff; }
.red-social.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); color: #fff; }
.red-social.tiktok { background-color: #000; color: #fff; }
.red-social.whatsapp { background-color: #25D366; color: #fff; }

/* =========================
   FOOTER (IGUAL AL INDEX)
========================= */
.footer-le {
  background-color: var(--coral);
  color: #fff;
  padding: 3rem 1rem 1.5rem;
  text-align: center;
}

.footer-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  position: relative;
}

.footer-contacto {
  text-align: center;
}

.footer-social {
  position: absolute;
  right: 0;
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #ffd8cc;
  transform: scale(1.2);
}

.footer-copy {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.9;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .split-grid {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .sobre-nosotros {
    max-width: 90%;
    text-align: center;
  }

  .sobre-item {
    justify-content: center;
  }

  .sobre-item i {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .redes-contacto.horizontal {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
/* ======== FONDO ANIMADO DE ESTRELLAS ======== */
#fondo-estrellas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, #fffaf9 0%, #fff5f0 100%);
  pointer-events: none;
}

body, html {
  background: transparent !important;
}

.contacto-profesional {
  background: transparent !important;
  position: relative;
  z-index: 1;
}
