/* Estilos para o botão de play */
.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-thumbnail img {
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
    display: block;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(228, 154, 156, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.play-button:before {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-left: 30px solid white;
    border-bottom: 20px solid transparent;
    margin-left: 8px; /* Ajuste para centralizar visualmente */
}

.video-thumbnail:hover .play-button {
    background-color: rgba(142, 77, 61, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-container {
    display: none;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Ajustes de responsividade para mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content, .hero-image {
        width: 100% !important;
        text-align: center !important;
    }
    
    .hero-content {
        margin-bottom: 30px !important;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button:before {
        border-top: 15px solid transparent;
        border-left: 22px solid white;
        border-bottom: 15px solid transparent;
        margin-left: 6px;
    }
}
