/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background: #1a0033;
    color: #f3f3f3;
    line-height: 1.6;
}

.tituloprincipal {
    font-family: 'Playfair Display', serif;
    color: #3c146f;
    font-size: 60px;
    text-align: center;
    text-shadow: 2px 2px 10px #274080;
    letter-spacing: 2px;
    font-weight: bold;
    margin: 30px 0;
}

.menu {
    background-color: #0e0c1f;
    padding: 20px 0;
}

.menu ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1200px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.menu li a {
    color: #d7b9ff;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    transition: color 0.3s;
}

.menu li a:hover {
    color: #ffd700;
}

/* 🔮 HERO - Imagen con texto encima */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4); /* Oscurece la imagen para resaltar el texto */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3); /* Fondo semitransparente */
    border-radius: 15px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.5em;
    color: #e5b0ff;
    text-shadow: 0 0 10px #c77dff;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #f5f5f5;
    margin-bottom: 25px;
}

.btn-consulta {
    display: inline-block;
    background: linear-gradient(90deg, #00ff9d, #00cc66);
    color: #000;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-consulta:hover {
    background: linear-gradient(90deg, #00cc66, #00ffcc);
    transform: scale(1.05);
}

/* 🔮 INTRO - Dos columnas */
.intro-dos-columnas {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px 20px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

.intro-dos-columnas .columna {
    flex: 1 1 45%;
    font-size: 18px;
    line-height: 1.6;
    color: #d7b9ff;
    text-align: justify;
}

/* 🔮 TESTIMONIOS */
.testimonios {
    background: #0e0c1f;
    padding: 50px 20px;
    text-align: center;
}

.testimonios h2 {
    color: #d7b9ff;
    font-size: 36px;
    margin-bottom: 40px;
}

.grid-testimonios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.opinion {
    background-color: #52236b;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.opinion p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.opinion span {
    color: #ccc;
    font-size: 14px;
    display: block;
    margin-top: 10px;
    font-style: italic;
}

/* 🔮 BOTÓN FLOTANTE */
.boton-flotante {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 0 10px #000;
    z-index: 9999;
    transition: background-color 0.3s ease;
}

.boton-flotante:hover {
    background-color: #128c7e;
}

/* 🔮 FORMULARIO */
.consultation-form {
    padding: 40px 20px;
    text-align: center;
    background: #2a004d;
}

form {
    max-width: 400px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select, button {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

button {
    background: #da70d6;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #c71585;
}

/* 🔮 RESPONSIVIDAD */
@media (max-width: 768px) {
    .tituloprincipal {
        font-size: 40px;
    }
    .menu ul {
        flex-direction: column;
        gap: 15px;
    }
    .menu li a {
        font-size: 18px;
    }
    .hero {
        height: 70vh;
    }
    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .intro-dos-columnas .columna {
        flex: 1 1 100%;
    }
    .testimonios h2 {
        font-size: 28px;
    }
    .opinion p {
        font-size: 14px;
    }
    .boton-flotante {
        padding: 10px 15px;
        font-size: 14px;
    }
    .btn-consulta {
        padding: 10px 20px;
        font-size: 1em;
    }
}

.sobre-mi {
  background: #0e0c1f;
  color: #f3f3f3;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: left;
  font-family: 'Georgia', serif;
}

.sobre-mi {
  background-color: #110022; /* fondo oscuro pero armónico */
  color: #ffffff;
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
  border-radius: 12px;
}

.sobre-mi h1 {
  font-size: 28px;
  color: #d29eff;
  margin-bottom: 30px;
}

.sobre-mi p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.sobre-mi em {
  font-style: italic;
  color: #ffcaff;
}

.sobre-mi strong {
  font-weight: 600;
  color: #ffffff;
}

.testimonio {
  background-color: #2d0b44;
  color: #ddddff;
  padding: 20px;
  border-left: 4px solid #d29eff;
  font-style: italic;
  margin: 30px 0;
  border-radius: 8px;
}

.frase-impacto {
  font-weight: bold;
  font-size: 18px;
  color: #ffffcc;
  margin-top: 30px;
}

.frase-final {
  font-style: italic;
  color: #f7ddff;
  margin-bottom: 40px;
}

.boton-desbloqueo {
  display: inline-block;
  background-color: #00d181;
  color: #fff;
  padding: 14px 24px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 0 12px #00d18180;
  transition: background 0.3s, transform 0.2s;
}

.boton-desbloqueo:hover {
  background-color: #00b671;
  transform: scale(1.03);
}


.servicios {
  text-align: center;
  background-color: #150028;
  color: #fff;
  padding: 70px 20px;
}

.servicios h2 {
  font-size: 2rem;
  color: #ffb3ff;
  margin-bottom: 15px;
}

.servicios .intro {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #d8b9f0;
  font-size: 1.1rem;
}

.contenedor-servicios {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.servicio {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 30px 25px;
  max-width: 320px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servicio:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.3);
}

.servicio .icono {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.servicio h3 {
  color: #ff7de5;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.servicio p {
  color: #e0c9ff;
  font-size: 1rem;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff4b9f, #b400ff);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  opacity: 0.85;
}
/* --- Alineación de texto en las tarjetas de servicios --- */
.servicio h3,
.servicio .icono {
  text-align: center;
}

.servicio p {
  text-align: justify;
  text-justify: inter-word;
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: white;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
  background-color: #20ba5a;
}

