* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #f18db7, #e90677);
    color: #b87070;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.main-title {
    font-size: 2.5rem;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-family: "Sofia", cursive;
}

.content {
    max-width: 800px;
    margin: auto;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: "Funnel Sans", sans-serif;
}

.content p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 1.1rem;
}

.footer {
    text-align: center;
    margin-top: auto;
    font-size: 0.9rem;
    color: #4400ff;
    padding: 10px;
}

.boton-container {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin-top: 20px;
}

.boton-rectangular {
    background: linear-gradient(135deg, #ff4eaf, #fa00bc);
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.boton-rectangular:hover {
    background: linear-gradient(135deg, #f323ae, #f540a9);
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.boton-texto {
    color: white;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
}

.boton-texto:hover {
    text-decoration: underline;
}

.video-section {
    margin: 30px 0;
    text-align: center;
    background-color: #da8ba9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #e90677;
    font-family: "Sofia", cursive;
}

.video-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.video-link-container {
    margin-top: 10px;
}

.video-link {
    font-size: 1rem;
    color: #000000;
    text-decoration: none;
    background: linear-gradient(135deg, #fa00bc, #ff4eaf);
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.video-link:hover {
    background: linear-gradient(135deg, #f540a9, #f323ae);
    transform: scale(1.05);
    text-decoration: underline;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #c108f0; 
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-to-top.visible {
    opacity: 1;
}

.scroll-to-top:hover {
    background-color: #047ff1; 
}
