/* ==================================================
   STYLE-BOARDING.CSS - Estilos completos
   Fondo lila #ddc6fe, elementos flotantes
   ================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

body.boarding-page {
  font-family: 'Nunito', sans-serif;
  background: #ddc6fe !important;
  color: #333;
  line-height: 1.6;
  padding-top: 80px;
}

/* ===== HEADER (compartido, igual que en puppy) ===== */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 12px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.main-nav ul { display: flex; list-style: none; }
.main-nav a {
  padding: 8px 20px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}
.main-nav a:hover { color: #f8dea2; }

.arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.85rem;
  transition: transform 0.3s;
}
.dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown { position: relative; }
.dropdown-content {
  display: none;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  background: white;
  min-width: 210px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  top: 100%;
  left: 0;
  border-radius: 6px;
  overflow: hidden;
  z-index: 10;
  transition: opacity 0.25s, visibility 0.25s;
}
.dropdown:hover .dropdown-content {
  display: block;
  visibility: visible;
  opacity: 1;
}
.dropdown-content li { border-bottom: 1px solid #eee; }
.dropdown-content li:last-child { border-bottom: none; }
.dropdown-content a {
  display: block;
  padding: 14px 20px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  font-size: 0.98rem;
}
.dropdown-content a:hover { background: #f0f8ff; }

.header-logo img { max-height: 50px; width: auto; display: block; }
.header-right { display: flex; align-items: center; gap: 20px; }
.phone {
  font-weight: 700;
  font-size: 0.98rem;
  color: #444;
  white-space: nowrap;
}
.login-group { display: flex; align-items: center; gap: 8px; }
.login-icon { vertical-align: middle; }
.login, .login-btn {
  background: #4a90e2;
  color: white;
  padding: 6px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s;
}
.login:hover, .login-btn:hover { background: #3a7bc8; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
}

/* ===== CONTENIDO PRINCIPAL ===== */

/* SOLUCIÓN: Textos por encima del círculo amarillo */
.boarding-text {
  position: relative;
  z-index: 10;
}

.boarding-grid {
  position: relative;
  z-index: 5;
}

.circle-yellow {
  z-index: 1 !important;
}

.boarding-image {
  z-index: 2;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.boarding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 40px;
}

.boarding-text h2 {
  font-size: 2.8rem;
  color: #383838;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.boarding-text p {
  font-size: 1.18rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 0.8rem;
}

/* ===== CONTENEDOR DE IMÁGENES ===== */
.boarding-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== CÍRCULO AMARILLO ===== */
.circle-yellow {
  position: absolute;
  top: -30%;
  left: -95%;
  transform: translate(-50%, -50%);
  width: 1400px;
  height: 1400px;
  background-color: #FCDC99;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

/* ===== IMAGEN PRINCIPAL ===== */
.main-image {
  width: 110%;
  height: auto;
  display: block;
  border-radius: 7px;
  position: relative;
  z-index: 2;
}

/* ===== ELEMENTOS FLOTANTES ===== */
.perrito-float {
  position: absolute;
  width: 200px;
  height: auto;
  z-index: 4;
}
.perrito-float.right {
  bottom: 7px;
  right: -127px;
}
.perrito-float.left {
  bottom: -25px;
  left: -750px;
  transform: scaleX(-1);
}

.cola-float {
  position: absolute;
  top: -80px;
  right: -200px;
  width: 180px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  opacity: 0.95;
  transform: rotate(15deg);
}

.pata-float {
  position: absolute;
  top: -30px;
  left: -690px;
  width: 270px;
  height: auto;
  z-index: 5;
  pointer-events: none;
  opacity: 0.95;
  transform: rotate(-12deg);
}

.sombra-float {
  position: absolute;
  z-index: 3;
  top: 93%;
  left: 8%;
  width: 105%;
  height: auto;
  opacity: 0.8;
  pointer-events: none;
  filter: blur(2px) brightness(0.7);
}

/* ===== FOOTER ===== */
footer {
  background: #fcdc99;
  color: #333;
  padding: 50px 20px 30px;
  margin-top: 60px;
  text-align: center;
}

footer .container { max-width: 1200px; margin: 0 auto; }
.footer-content { margin-bottom: 40px; }
.footer-info {
  display: inline-block;
  text-align: center;
  max-width: 400px;
}
.footer-info p { margin: 8px 0; font-size: 0.98rem; font-weight: 500; }
.footer-info a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-info a:hover { color: #4a90e2; }

.social-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 25px;
}
.social-links a { transition: transform 0.3s; }
.social-links img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.3s;
}
.social-links a:hover img {
  transform: translateY(-6px) scale(1.15);
}
.copyright {
  font-size: 0.9rem;
  color: #555;
  padding-top: 20px;
  border-top: 1px solid rgba(51,51,51,0.1);
  margin-top: 20px;
}

/* ===== RESPONSIVE BOARDING ===== */
@media (max-width: 1200px) {
  .circle-yellow {
    width: 1000px;
    height: 1000px;
    left: -70%;
  }
  .perrito-float.left { left: -500px; }
  .pata-float { left: -450px; }
  .cola-float { right: -150px; }
}

@media (max-width: 1024px) {
  .header-container { padding: 10px 20px; }
  .main-nav a { padding: 8px 15px; }
}

@media (max-width: 950px) {
  .boarding-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px;
    text-align: center;
  }
  
  .boarding-text h2 { font-size: 2.4rem; }
  .main-image { width: 100%; }
  
  .circle-yellow {
    width: 800px;
    height: 800px;
    top: -20%;
    left: -40%;
  }
  
  .perrito-float {
    width: 150px;
  }
  .perrito-float.right {
    bottom: 180px;
    right: -80px;
  }
  .perrito-float.left {
    bottom: 180px;
    left: -80px;
  }
  
  .sombra-float {
    width: 108%;
    top: 12%;
    left: 5%;
    filter: blur(1.5px) brightness(0.75);
  }
  
  .cola-float {
    width: 120px;
    top: -60px;
    right: -40px;
    transform: rotate(10deg);
  }
  
  .pata-float {
    width: 180px;
    top: -55px;
    left: -60px;
    transform: rotate(-8deg);
  }
}

@media (max-width: 768px) {
  body.boarding-page { padding-top: 68px; }
  
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .main-nav.active { display: block; }
  .main-nav.active ul {
    flex-direction: column;
    align-items: center;
  }
  
  .header-right { gap: 10px; }
  .phone { font-size: 0.85rem; }
  
  .social-links { gap: 20px; }
  .social-links img { width: 38px; height: 38px; }
}

@media (max-width: 480px) {
  .boarding-text h2 { font-size: 2rem; }
  .boarding-text p { font-size: 1rem; }
  .circle-yellow {
    width: 600px;
    height: 600px;
    left: -20%;
  }
}