/* ===== VÍDEO NO CELULAR COM TEXTOS ===== */
.video-celular-section {
    padding: 120px 20px;
    position: relative;
    background: transparent;
    max-width: 1400px;
    margin: 0 auto;
}

.video-celular-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

@media (max-width: 768px) {
    .video-celular-wrapper {
        display: flex;
        flex-direction: column;
    }
    
    .textos-salao {
        order: 1;
    }
    
    .textos-topo {
        order: 1;
    }
    
    .video-celular-content {
        order: 2;
    }
    
    .destaques-salao {
        order: 3;
    }
    
    .btn-agendar-video {
        order: 4;
    }
}

.video-celular-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.celular-container {
    position: relative;
    display: inline-block;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

.video-celular {
    width: 100%;
    height: auto;
    max-height: 600px;
    display: block;
    border-radius: 25px;
    object-fit: cover;
    background: #000000;
}

/* ===== DESKTOP ===== */
@media (min-width: 769px) {
    .video-celular-section {
        padding: 120px 80px;
    }

    .celular-container {
        max-width: 300px;
    }
    
    .video-celular {
        max-height: 500px;
        border-radius: 25px;
    }
}

/* ===== TABLET ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-celular-section {
        padding: 100px 50px;
    }

    .celular-container {
        max-width: 320px;
    }
    
    .video-celular {
        max-height: 500px;
        border-radius: 25px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .video-celular-section {
        padding: 80px 20px;
    }

    .celular-container {
        max-width: 500px;
    }

    .video-celular {
        max-height: 600px;
        min-height: 400px;
        border-radius: 25px;
        background: #000000;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
}

/* ===== MOBILE PEQUENO ===== */
@media (max-width: 480px) {
    .video-celular-section {
        padding: 60px 15px;
    }

    .celular-container {
        max-width: 450px;
    }

    .video-celular {
        max-height: 550px;
        min-height: 350px;
        border-radius: 25px;
        background: #000000;
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
}

/* ===== TEXTOS DO SALÃO ===== */
.textos-salao {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.textos-topo {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.textos-topo-mobile {
    display: none;
    text-align: center;
}

.titulo-video-section {
    font-size: 3.5rem;
    color: #433727;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    font-family: "Instrument Serif", serif;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(67, 55, 39, 0.05);
}

.subtitulo-video-section {
    font-size: 1.1rem;
    color: #5B5B5B;
    font-weight: 400;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

.destaques-salao {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 20px;
}

.destaque-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px;
    border-radius: 8px;
}

.destaque-item:hover {
    background: rgba(218, 190, 153, 0.05);
    transform: translateX(4px);
}

.destaque-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #DABE99 0%, #957141 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(149, 113, 65, 0.25),
                0 2px 8px rgba(149, 113, 65, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.destaque-item:hover .destaque-icon {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(149, 113, 65, 0.35),
                0 4px 12px rgba(149, 113, 65, 0.2);
}

.destaque-texto h3 {
    font-size: 1.4rem;
    color: #433727;
    font-weight: 500;
    margin: 0 0 8px 0;
    font-family: "Instrument Serif", serif;
}

.destaque-texto p {
    font-size: 1rem;
    color: #5B5B5B;
    line-height: 1.6;
    margin: 0;
}

.btn-agendar-video {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #433727;
    color: #FFFFFF;
    border: 2px solid #433727;
    padding: 20px 52px;
    font-size: 1.15rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Instrument Serif", serif;
    letter-spacing: 0.025em;
    margin-top: 20px;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(67, 55, 39, 0.15),
                0 2px 8px rgba(67, 55, 39, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-agendar-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-agendar-video:hover {
    background: #957141;
    border-color: #957141;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(67, 55, 39, 0.3),
                0 6px 16px rgba(67, 55, 39, 0.2);
}

.btn-agendar-video:hover::before {
    left: 100%;
}

/* ===== DESKTOP - AJUSTES TEXTOS ===== */
@media (min-width: 769px) {
    .video-celular-section {
        padding: 150px 80px;
        display: block;
    }
    
    .textos-topo-mobile {
        display: none;
    }
    
    .textos-topo {
        display: flex;
    }
}

/* ===== TABLET - AJUSTES TEXTOS ===== */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-celular-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .titulo-video-section {
        font-size: 3rem;
        text-align: center;
    }
    
    .subtitulo-video-section {
        text-align: center;
    }
    
    .btn-agendar-video {
        align-self: center;
    }
}

/* ===== MOBILE - AJUSTES TEXTOS ===== */
@media (max-width: 768px) {
    .video-celular-section {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .textos-topo-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        order: 1;
        margin-bottom: 20px;
    }
    
    .textos-topo-mobile .titulo-video-section {
        font-size: 4.5rem;
        margin: 0;
    }
    
    .textos-topo-mobile .subtitulo-video-section {
        font-size: 0.95rem;
        margin: 0;
    }
    
    .video-celular-wrapper {
        gap: 50px;
        order: 2;
        display: flex;
        flex-direction: column;
    }
    
    .video-celular-content {
        order: 1;
    }
    
    .textos-salao {
        order: 2;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .textos-topo {
        display: none;
    }
    
    .titulo-video-section {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .textos-topo-mobile .titulo-video-section {
        font-size: 2.5rem;
    }
    
    .subtitulo-video-section {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .destaques-salao {
        gap: 24px;
    }
    
    .destaque-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .destaque-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .destaque-texto h3 {
        font-size: 1.2rem;
    }
    
    .btn-agendar-video {
        width: 100%;
        align-self: center;
    }
}

/* ===== MOBILE PEQUENO - AJUSTES TEXTOS ===== */
@media (max-width: 480px) {
    .titulo-video-section {
        font-size: 2rem;
    }
    
    .textos-topo-mobile .titulo-video-section {
        font-size: 2rem;
    }
    
    .subtitulo-video-section {
        font-size: 0.9rem;
    }
}

