/* ESTILOS POPUPSTY - LANDING PAGES EFÍMERAS */

html, body{
	width:100%; 
	height:100%; 
	padding:0px; 
	margin:0px;
	overflow: hidden;
	background: #191d1e; /* Navegadores antiguos */
	background: -moz-linear-gradient(0deg,  #191d1e 50%, #283139 100%);
	background: -webkit-gradient(linear, left top, right bottom, color-stop(50%,#191d1e), color-stop(100%,#283139));
	background: -webkit-linear-gradient(0deg,  #191d1e 50%,#283139 100%);
	background: -o-linear-gradient(0deg,  #191d1e 50%,#283139 100%);
	background: -ms-linear-gradient(0deg,  #191d1e 50%,#283139 100%);
	background: linear-gradient(0deg,  #191d1e 50%,#283139 100%);
	background-attachment: fixed
}

#projector {
  position: absolute; 
  top: 0px;
  left: 0px;
  width:100%;
  height:100%;
} 

.content-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.content-container.visible {
    opacity: 1;
}

.logo {
    max-width: 600px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    animation: fadeInScale 1.5s ease-out forwards, logoBreath 4s ease-in-out infinite alternate;
}

.description-text {
    color: #e8cc88;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInUpScale 1s ease-out 1.2s forwards;
    min-height: 120px; /* Evita saltos de layout */
    font-weight: 300;
}

.description-text b {
    font-weight: 700;
    display: block;
    margin-top: 15px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: transparent;
    color: #e8cc88;
    border: 2px solid #e8cc88;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.whatsapp-btn:hover {
    background-color: #e8cc88;
    color: #191d1e;
    box-shadow: 0 15px 30px rgba(232, 204, 136, 0.3);
    transform: translateY(-5px) scale(1.05);
}

.whatsapp-btn svg {
    transition: transform 0.4s ease;
}

.whatsapp-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes logoBreath {
    from { opacity: 0.95; }
    to { opacity: 1; }
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
