/* Variables globales */
:root {
    /* Tipografía */
    --font-base: 16px;
    --font-heading: 28px;
    --font-subheading: 20px;
    --font-price: 2rem;
    --font-icon: 1.8rem;

    /* Espacios */
    --padding-section: 40px;
    --padding-contacto: 80px;
    --gap-plan: 20px;
    --gap-contacto: 20px;
    --gap-header: 20px;

    /* Tamaños */
    --plan-max-width: 250px;
    --plan-min-width: 200px;
    --foto-max-width: 40%;
}

/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poiret One', sans-serif;
    background-color: #fff5f5;
    color: #333;
    font-weight: 400;
    font-size: var(--font-base);
    line-height: 1.6;
    text-decoration: none;
}

/* Header */
header {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--gap-header);
    background-color: #fff;
    z-index: 999;
    max-height: 10vh;
}

header .logo img {
    height: 100px;
}

header nav ul {
    list-style: none;
    gap: var(--gap-header);
  }

  @media (min-width: 769px) {
    header nav ul {
      display: flex;
    }
  }

header nav ul li a {
    text-decoration: none;
    color: rgb(230, 209, 21);
    font-weight: bold;
    font-size: 0.9375rem; /* 15px equivalente */
    position: relative;
    transition: color 0.3s ease;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: rgb(248, 181, 55);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

header nav ul li a:hover {
    color: rgb(248, 181, 55);
}

header nav ul li a:hover::after {
    width: 100%;
}

.t {
    display: flex;
    justify-content: center;
    font-size: 6vh;
}

.frase {
    padding: 5%;
    font-size: 5vh;
    color: rgb(255, 252, 226);
}
/* Sección intro */

.intro-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/bg.jpg') center/cover no-repeat;
    filter: blur(4px); /* Desenfoque del fondo */
    filter: contrast(50%); /* Baja el contraste */
    z-index: 0;
  }

.intro {
    position: relative;
    text-align: center;
    padding: 10vh;
}

hr {
    border: none;            /* Quita el borde por defecto */
    height: 2px;             /* Grosor de la barra */
    background-color: #FFD700; /* Color de la barra */
}
.jess {
    color: rgb(230, 209, 21);
    display: flex;
    justify-content: space-between; 
    align-items: center;
    gap: var(--gap-header);
    margin-inline: 13%;
    font-size: 3vh;
}

.jess a {
    font-size: 2vh;
}


.custom-btn {
    width: 130px;
    height: 40px;
    color: #4e4e4e;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 400;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    text-decoration: none;
  }

.btn-15 {
    background: #ffe6c1;
    border: 10vh;
    z-index: 1;
  }
  .btn-15:after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: #fff9d9;
    border-radius: 5px;
     box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    transition: all 0.3s ease;
  }
  .btn-15:hover {
    color: #FFD700;
  }
  .btn-15:hover:after {
    left: 0;
    width: 100%;
  }
  .btn-15:active {
    top: 2px;
  }

.jess li {
    list-style: none;
}

.jess li a {
    text-decoration: none;
    color: rgb(248, 181, 55);
    padding: 2%;
}

.jess img {
    max-height: 50vh;
    border-radius: 2%;
}
.quien-soy {
    background: linear-gradient(to bottom, #fff5f5, #FFF0F5);
}
.quiensoy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-inline: 10%;
    padding: 5%;
}

.quiensoyg {
    display: flex;
    justify-content: center;
    font-weight: 400;
    font-size: var(--font-heading);
}

.quien-soy-texto {
    max-width: 50%;
    font-weight: 400;
    font-size: var(--font-subheading);
}

.foto1 {
    max-width: 35%;
    border-radius: 100%;
}

.dsc {
    margin-top: 2%;
    display: flex;
    justify-content: center;
    font-weight: 400;
    text-transform: uppercase;
}

/* Slider Infinito */
.sliderh2 {
    background-color: #FFF0F5;
    font-size: 2rem;
    color: #333;
    text-align: center;
}

.slider-section {
    background: #fde8ef;
    font-size: 3vh;
  }
  
  .slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    border-radius: 10px;
  }
  
  .slider {
    display: flex;
    animation: slide 20s linear infinite;
  }
  
  .slide-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
  
  .slide-item img {
    width: 70px;
    height: 70px;
    margin-right: 15px;
  }
  
  @keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  

.proceso {
    background: linear-gradient(to bottom, #FFF0F5, #FFE4E1);
    padding: 80px 20px;
    text-align: center;
  }
  
  .proceso-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .proceso h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 60px;
  }
  
  /* Cada paso */
  .proceso-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    flex-wrap: wrap;
  }
  
  .proceso-step img.proceso-img {
    max-height: 35vh;
    border-radius: 2%;
    object-fit: cover;
  }
  
  .proceso-texto {
    flex: 1;
    min-width: 250px;
  }
  
  .proceso-texto h3 {
    color: #DAA520;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .proceso-texto p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* Responsive */
  @media (max-width: 700px) {
    .proceso-step {
      flex-direction: column;
      text-align: center;
    }
  
    .proceso-texto {
      min-width: 0;
    }
  }

  .ventajas {
    background: linear-gradient(to bottom, #FFE4E1, rgba(255, 228, 225, 0.9));
    padding: 80px 20px;
    text-align: center;
  }
  
  .ventajas-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .ventajas h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
  }
  
  .ventajas p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
  }
  
  .ventajas-lista {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .ventaja-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
  }
  
  .ventaja-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  
  .ventaja-item h3 {
    font-size: 1.2rem;
    color: #DAA520;
    text-align: center;
  }

.dudas {
    background: linear-gradient(to bottom, rgba(255, 228, 225, 0.9), #FFE4E1 10%, #FFF0F5 90%, #fff5f5);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  .dudas-container {
    max-width: 800px;
    width: 100%;
  }
  
  .dudas h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
  }
  
  .duda-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .duda-card h3 {
    color: #DAA520; /* Amarillo dorado */
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .duda-card p {
    font-size: 1.1rem;
    color: #555;
  }
  
  .duda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
/* Secciones generales */
.zigzag-cuatro {
    background-color: rgba(255, 228, 225, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding: var(--padding-section) 20px;
    flex-wrap: wrap; /* responsive: se apilan en móvil */
}

.zigzag-cuatro .item {
    display: flex;
    flex-direction: column; /* texto arriba por defecto */
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 220px;
}



.zigzag-cuatro .item .texto h2 {
    font-size: var(--font-subheading);
    color: #c47f70; /* dorado rosado */
    margin-bottom: 10px;
}

.zigzag-cuatro .item .texto p {
    font-size: var(--font-base);
    color: #8b6f6f;
    line-height: 1.5;
}

.zigzag-cuatro .item .imagen img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .zigzag-cuatro {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
}

section h2 {
    font-size: var(--font-heading);
    margin-bottom: 10px;
}

section p {
    text-align: center;
}

/* Tabla de precios */
.pricing-table {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-plan);
    justify-content: center;
}

.plan {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    flex: 1 1 var(--plan-min-width);
    max-width: var(--plan-max-width);
    transition: transform 0.3s;
}

.planespecial {
    justify-items: center;
}

.especial {
    max-height: 20vh;
    padding: 1vh;
    margin-top: 2vh;
    max-width: 120vh;
}

.plan:hover {
    transform: scale(1.05);
}

.plan h2 {
    margin-top: 0;
    color: #333;
    font-size: var(--font-subheading);
}

.price {
    font-size: var(--font-price);
    color: #27ae60;
    margin: 10px 0;
}

.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.plan button {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
}

.plan button:hover {
    background-color: #219150;
}

/* Sección de contacto */
.contacto {
    background: linear-gradient(to top, #fff7c7 30%,#ffedf2 90%, #fff5f5);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: var(--padding-contacto) 20px;
}

.contacto-content {
    max-width: 600px;
}

.contacto h2 {
    font-size: var(--font-heading);
    margin-bottom: 20px;
    color: #333;
}

.contacto p {
    font-size: var(--font-subheading);
    margin-bottom: 40px;
    color: #555;
}

.contactos {
    display: flex;
    flex-direction: column;
    gap: var(--gap-contacto);
}

.contacto-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: transform 0.3s, background-color 0.3s;
}

.contacto-icon i {
    font-size: var(--font-icon);
    color: #DAA520;
    transition: color 0.3s;
}

.contacto-icon:hover {
    transform: translateY(-5px);
    background-color: rgba(255,255,255,1);
}

.contacto-icon:hover i {
    color: #FFC107;
}

/* Footer */
footer {
    text-align: center;
    background-color: #fff5f5;
    color: black;
    padding: 10px;
    width: 100%;
    bottom: 0;
}

/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive para móviles */
@media (max-width: 900px) {
    .plan {
        flex: 1 1 45%;
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    header nav ul {
        display: none;

    }
    .jess, .quiensoy {
        flex-direction: column;
        margin-inline: 5%;
        padding: 10px 0;
    }
    .foto1 {
        max-width: 70%;
        margin-bottom: 20px;
    }
    .quien-soy-texto {
        max-width: 90%;
        text-align: center;
    }
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    .plan {
        flex: 1 1 90%;
        max-width: 90%;
    }
    .contacto h2 {
        font-size: calc(var(--font-heading) * 0.9);
    }
    .contacto p {
        font-size: calc(var(--font-subheading) * 0.9);
    }
    .contacto-icon i {
        font-size: calc(var(--font-icon) * 0.9);
    }
}


/* Hamburger icon */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: rgb(230, 209, 21);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Navbar links */
nav ul {
    display: flex;
    gap: var(--gap-header);
}

/* Responsive: <768px */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        display: none; /* Oculto por defecto */
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        width: 200px;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 10px 0;
        z-index: 999;
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }
}

/* Hamburger animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Iconos de contacto animados */
.iconos-contacto {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
  }
  
  .iconos-contacto .icono img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(85%) sepia(10%) saturate(120%) hue-rotate(310deg) brightness(105%) contrast(95%);
    transition: all 0.4s ease;
    cursor: pointer;
  }
  
  /* Efecto al pasar el mouse */
  .iconos-contacto .icono:hover img {
    filter: brightness(0) saturate(100%) invert(70%) sepia(60%) saturate(350%) hue-rotate(10deg) brightness(95%) contrast(105%);
    transform: scale(1.1);
  }


  .float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}