
@media screen and (max-width: 360px) {


}



@media screen and (max-width: 480px) {


} 


@media screen and (max-width: 768px) {


}



@media screen and (max-width: 1024px) {
            * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body.via-instagram #services {
            padding: 8em 15px !important;
        }

        section.services {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            width: 100%;
            max-height: 100vh;
            color: white;
            padding: 15px;
        }
        
        canvas#constellationCanvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        
        
        /* Conteúdo sobre o canvas */
        .textsOverServices {
            position: relative;
            z-index: 1;
            text-align: center;
            margin-bottom: 25px;
            width: 90%;
            padding: 0 10px;
        }
        
        .wTitle {
            font-size: 2.2rem;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            background: linear-gradient(to right, #a166ff, #ff6bff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .sectionDescription {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 20px;
            line-height: 1.5;
        }
        
        .carousel-wrapper {
            position: relative;
            width: 100%;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 1;
            margin-top: 10px;
        }
        
        .carousel-container {
            overflow: hidden;
            width: 100%;
            height: 320px;
            position: relative;
        }
        
        .carousel-track {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            transition: transform 0.5s ease;
            padding: 20px 0;
        }
        
        .aService {
            flex: 0 0 85vw;
            background: rgba(255, 255, 255, 0.1);
            width: 85vw;
            height: 280px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            text-align: center;
            justify-content: center;
            transition: all 0.5s ease;
            margin: 0 15px;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .aService::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #a166ff, #ff6bff);
        }
        
        .aService.active {
            width: 90vw;
            height: 300px;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform: scale(1.05);
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 2em;
        }
        
        .carousel-btn,
        .carousel-btn-Cell {
            background: linear-gradient(135deg, #a166ff, #ff6bff);
            color: white;
            border: none;
            font-size: 2rem;
            width: 60px;
            height: 60px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .carousel-btn-Web{
            display: none;
        }
        
        .service-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            z-index: 2;
            height: 100%;
            justify-content: center;
            margin-top: -2em;
        }
        
        .service-icon {
            font-size: 1.9rem;
            color: #a166ff;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            width: 65px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            border: 2px solid rgba(161, 102, 255, 0.3);

            margin-top: 0;
        }
        
        .aService.active .service-icon {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.2s;
        }
        
        .service-title {
            font-size: 1.6rem;
            font-weight: bold;
            background: linear-gradient(to right, #a166ff, #ff6bff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.3s ease;
        }

        /* Por padrão: esconde o bloco de preço */
        .aService .priceArea {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.3s ease;
            padding: 0;
        }

        /* Quando ativo: exibe com suavidade */
        .aService.active .priceArea {
            max-height: 100px; /* Valor alto o suficiente para caber o conteúdo */
            opacity: 1;
            padding: .2em 0; 
        }

        .priceArea {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .textsInsideFromEachService {
            width: 80%;
            border-top: 2px solid #a166ff;
            margin: 0 auto 0.5em auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        p.serviceSubtitle {
            font-size: 1em;
            color: rgba(255, 255, 255, 0.9);
            padding-top: 0.4em;
            margin-top: 0.2em;
            width: 60%;
        }

        .prices {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.8em;
            margin-top: 0em;
        }

        p.ourPrice {
            font-size: 1.3em;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        p.truePrice {
            font-size: 1.3em;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: line-through;
        }
        
        .service-description {
            font-size: 0.95rem;
            opacity: 0.8;
            line-height: 1.5;
            transition: all 0.3s ease;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            padding-bottom: .4em;
        }
        
        .aService.active .service-description {
            max-height: 100px;
            opacity: 0.8;
            transition: max-height 0.5s ease, opacity 0.8s ease;
            transition-delay: 0.3s;
        }
        
        .service-mini-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-top: 15px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .aService:not(.active) .service-mini-title {
            opacity: 1;
            transform: scale(0.9);
        }
        
        .aService.active .service-mini-title {
            opacity: 0;
            height: 0;
            margin: 0;
        }
        
        /* Botões lado a lado */
        .carousel-buttons {
            display: flex;
            gap: 30px;
        }

        button.btnLerMais{
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
    
            padding: 5px;
            border-radius: .4em;
            background: linear-gradient(135deg, #a166ff, #ff6bff);
            cursor: pointer;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;

            position: fixed;
            bottom: 0;
            margin-bottom: 1em;
        }
        button.btnLerMais:hover{
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        .aService.active .btnLerMais {
            opacity: 1;
            pointer-events: auto;
        }
        
        p.btnText{
            font-size: 1.1em;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
    
       /* Modal base - escondido por padrão */
        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.6);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }
    
        .modal.show {
            display: block;
            opacity: 1;
            pointer-events: auto;
        }
    
        .modal-content {
            background-color: #2b035d;
            padding: 20px;
            border-radius: 10px;
            width: 80%;
            max-width: 600px;
            color: white;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            text-align: center;
    
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -60px);  /* Começa mais acima */
            opacity: 0;
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
    
        .modal.show .modal-content {
            transform: translate(-50%, -50%);   /* Vai para o centro certinho */
            opacity: 1;
        }
    
        .close {
            color: #fff;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
        }
    
        .close:hover {
            color: #ccc;
        }
    
        #modal-description{
            margin-top: .8em;
            font-size: .93em;
            text-align: left;
        }
    
        .checklist {
            list-style: none;
            padding: 0;
            margin-top: .8em;
            text-align: left;
        }
    
        .checklist li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
    
        .checklist .checkmark {
            color: #00ff99;
            margin-right: 8px;
            font-weight: bold;
        }    
}







@media screen and (min-width: 1200px) {

}



@media screen and (min-width: 1440px) {


}



@media screen and (min-width: 1920px) {


}