/* === Kathy's Chic Boutique - Estilo Elegante Mejorado === */

:root {
  --color-principal: #ff69b4;
  --color-secundario: #6a1b9a;
  --color-fondo: #fff8f9;
  --color-texto: #ffffff;
  --color-boton: #ff69b4;
  --color-boton-hover: #e055a3;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-image: url('assets/imagenes/fondo.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-texto); /* AHORA BLANCO */
  line-height: 1.6;
  scroll-behavior: smooth;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #ffb6d9, #6a1b9a);
  padding: 15px 50px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 1001;
}

.logo {
  width: 120px;
  margin: 0 auto;
  animation: pulse-glow 3s infinite ease-in-out;
}

@keyframes pulse-glow {
  0% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255,105,180,0.4)); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255,105,180,0.8)); }
  100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(255,105,180,0.4)); }
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffddee;
}

/* === Hero (Encabezado) === */

.hero {
  background-image: url('assets/imagenes/fondo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero .overlay {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3em;
  color: var(--color-principal);
  text-shadow: 0 0 10px rgba(255, 105, 180, 0.7);
  animation: glow-text 3s ease-in-out infinite;
  font-family: 'Playfair Display', serif;
}

@keyframes glow-text {
  0% { text-shadow: 0 0 5px var(--color-principal); }
  50% { text-shadow: 0 0 20px var(--color-principal); }
  100% { text-shadow: 0 0 5px var(--color-principal); }
}

.hero p {
  font-size: 1.2em;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  margin-top: 10px;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* === Secciones generales === */

section {
  padding: 50px;
  text-align: center;
}

section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: var(--color-principal);
  font-family: 'Playfair Display', serif;
}

/* === Fondo secciones especiales === */

.seccion-fondo {
  background-image: url('assets/imagenes/fondo-abajo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 30px;
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.seccion-fondo::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.seccion-fondo .contenido {
  position: relative;
  z-index: 2;
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

/* === Servicios y Productos === */

.service-cards, .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.card, .project-card {
  background-color: #fff;
  color: #121212;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ffc0cb;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover, .project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(255, 105, 180, 0.3);
}

.project-card img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  border: 2px solid #ffb6c1;
  transition: transform 0.3s ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

/* === Formulario de Contacto === */

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1em;
}

form button {
  background-color: var(--color-boton);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: var(--color-boton-hover);
}

/* === WhatsApp y botones flotantes === */

.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.whatsapp-box {
  border-radius: 25px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  max-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.whatsapp-box:hover {
  transform: scale(1.05);
}

.whatsapp-enlace {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.whatsapp-box.ventas { background-color: #25D366; }
.whatsapp-box.consultas { background-color: #6a1b9a; }

.btn-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  font-size: 1.5em;
  background-color: var(--color-principal);
  color: white;
  padding: 10px 12px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s;
}

.btn-top:hover {
  transform: scale(1.1);
}

/* === Footer === */

footer {
  background-color: var(--color-secundario);
  color: #fff;
  padding: 20px;
  text-align: center;
  font-size: 1em;
  margin-top: 40px;
}

/* === Responsive === */

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  .menu-toggle { display: block; }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #6a1b9a;
    position: absolute;
    top: 70px;
    left: 0;
  }

  nav.active { display: flex; }

  nav ul {
    flex-direction: column;
    margin: 0;
    padding: 10px 0;
  }

  nav ul li { margin: 10px 0; }

  .hero h1 { font-size: 2em; }

  section { padding: 30px 15px; }

  .logo { margin-bottom: 10px; }
}

/* === Extras === */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.correo-visible {
  margin-top: 25px;
  font-size: 16px;
  color: #111;
  font-weight: 500;
  background-color: #ffffffcc;
  padding: 10px 15px;
  border-radius: 8px;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.correo-visible a {
  color: var(--color-secundario);
  text-decoration: none;
  font-weight: bold;
}

.correo-visible a:hover {
  text-decoration: underline;
}

/* Mantener las 3 tarjetas alineadas en una sola fila */
.fila-3 {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Hacer que las tarjetas sean translúcidas */
.card.transparente {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid #ffc0cb;
}

/* Ajustar contenido en pantallas pequeñas */
@media screen and (max-width: 768px) {
  .fila-3 {
    flex-direction: column;
    align-items: center;
  }
}

.contacto-section {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

#contacto {
  background-color: #f0f9ff;
  padding: 80px 20px;
}

.contacto-box {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.contacto-titulo {
  color: #ff69b4; /* rosa chic */
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
}

.contacto-subtitulo {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
}

.contacto-formulario button {
  background-color: #ff69b4;
  color: white;
  padding: 15px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contacto-formulario button:hover {
  background-color: #e055a3;
}



  
  
  

  
  
  

  
  
  


>>>>>>> 38220d70d7cc9d474cecbbbbf2b04f4bc2275f52
