@font-face {
    font-family: 'Lamore';
    src: url('../fonts/lamore.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Helvetica';
    src: url('../fonts/helvetica-light.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: Helvetica, sans-serif;
}

body {
    color: #EAE6D9;
    background-color: #1D1E1C;
    margin: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

.page-title {
    margin: 50px 0;
}

.page-footer a {
    text-decoration: none;
}

.page-footer a:visited {
    text-decoration: none;
    color: #EAE6D9;
}

.page-footer {
    margin-top: 50px;
    margin-bottom: 50px;
    min-width: min(540px, 90vw);
    padding: 10px;
    text-align: center;
}

.page-footer-logo img {
    width: 165px;
}

h1 {
    font-size: 120px;
    font-weight: 400;
    font-family: 'Lamore', Arial, sans-serif;

}

h3 {
    font-size: 20px;
    font-weight: 200;
    color: #EAE6D9;
}

.page-title-text {
    margin: 0 0 0 0;
}


h1, h3, .video-container {
    width: 100%;
    max-width: min(540px, 90vw);
    text-align: center;
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: min(540px, 90vw);
    height: auto;
}

.video-embed {
    background-color: transparent;
    width: 100%;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

iframe {
    width: 100%;
    height: min(80vh, 600px);
    max-height: calc(100vh - 40px);
    border: none;
    border-radius: 8px;
    display: block;
}

.fallback-message {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    padding: 0 10px;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.whatsapp-float:hover {
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.6);
    background-color: #20BA5A;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: white;
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .video-container {
        max-width: 95vw;
    }

    iframe {
        height: min(70vh, 500px);
    }

    .fallback-message {
        font-size: 12px;
        margin-top: 10px;
    }

    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .video-container {
        max-width: 85vw;
    }

    iframe {
        height: min(75vh, 550px);
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}

@media (min-width: 769px) {
    body {
        padding: 20px;
    }

    .video-container {
        max-width: 540px;
    }

    .whatsapp-float {
        right: 25px;
        bottom: 25px;
        width: 65px;
        height: 65px;
    }

    .whatsapp-icon {
        width: 35px;
        height: 35px;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.whatsapp-float {
    animation: slideInRight 0.6s ease-out 1s both;
}

@keyframes spinner-rotate {
    100% {
        transform: rotate(360deg);
    }
}

.spinner-rotate {
    animation: spinner-rotate 1s linear infinite;
    display: inline-block;
}