
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');



/* Estilo general (PC / tablet / horizontal) */
body {
   
        font-family: 'Montserrat', sans-serif;

}


.logo-container {
    width: 100%;
    text-align: center;
    padding: 0px 0;       /* espacio arriba y abajo */
    position: relative;
    z-index: 10;           /* queda encima del overlay y fondo */
}

.logo {
    width: 100px;          /* tamaño del logo, ajustalo si querés */
    max-width: 70%;

}







/* Ajuste especial para celulares (máx 600px) */
@media (max-width: 600px) {
    body {
background-position: 90% center;
        /* ↑ movelo a donde quieras */
    }
}



.container {
    max-width: 700px;
    margin: auto;
    padding: 0px 10px;
}

.title {
    text-align: center;
    margin-bottom: 10px;
    font-weight: 900;
    margin-top: 0px;


    
    


    
}





.step {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 12px;
    
}

.step {

    /* Imagen de fondo */

    background-size: cover;

    /* Color transparente encima de la imagen */
    background-color: rgba(0, 0, 0, 0.4); /* cambiá el color/opacidad a gusto */

    /* Mezcla la imagen con la capa */
    background-blend-mode:soft-light; 
}



/* Imagen distinta por paso */
.step-1 {
    background-image: url('descargas/IMG_9644.JPEG');
    background-position: center top 35%;
    margin-top: 30px;

}

.step-2 {
    background-image: url('descargas/IMG_9187.PNG.jpg');
}

.step-3 {
    background-image: url('descargas/G0541272.JPG');
}


.step h2 {
    font-size: 22px;
    margin-top: 0;
    color: #ffc201;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
      font-style: italic;

}


.resaltado {
    font-style: italic;
    color: #ffeb3b;
   

}

.step p {
    font-size: 15px;
    color: #ffffff;
      text-shadow: 0 1px 2px rgba(0,0,0,0.3);
          font-weight: 900;

}

.step-img {
    width: 100%;
    margin-top: 15px;
    border-radius: 10px;
}

.cta {
    display: block;
    text-align: center;
    background: #00c853;
    color: white;
    text-decoration: none;
    padding: 16px;
    margin: 20px auto;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    transition: 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);

}

.cta:hover {
    background: #00b045;
}


.animar {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease-out;}



footer  {
    text-align: center;
}
footer p {
color: #000;}



.insta-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;

    padding: 0px 20px;
margin-bottom: 10px;    border-radius: 50px;
    backdrop-filter: blur(4px); /* efecto glass opcional */

    background: linear-gradient(45deg,
  #feda75,
  #fa7e1e,
  #d62976,
  #962fbf,
  #4f5bd5
);

  box-shadow: 0 4px 12px rgba(0,0,0,0.25);


}


.icon-ig {
    width: 36px;
    height: 36px;
margin: 10px;}

.cta {
   

    /* Animación */
    animation: pulse 1.6s infinite ease-in-out;

}

@keyframes pulse {
    0% {
        transform: scale(1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    }
    50% {
        transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.30);
    }
    100% {
        transform: scale(1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
        }
}
