:root {
    --primary-purple: #854487;
    --secondary-purple: #6d366e;
    --primary-orange: #ffbc6e;
    --secondary-orange: rgb(241, 167, 210);
}

body {
    font-family: "Poppins", sans-serif;
    background: linear-gradient(300deg, #e8e8e8, #b79ac4, #ecc95b, #d3c7d4, #eb5bec);
    background-size: 1200% 1200%;
    -webkit-animation: AnimationName 18s ease infinite;
    -moz-animation: AnimationName 18s ease infinite;
    animation: AnimationName 18s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
a{
    color:var(--secondary-purple);
}
a:hover{
    color:#975c99;
}
.roxo{
    color:var(--primary-purple);
}
.navbar {
    background-color: var(--primary-purple);
}
.navbar-brand, .nav-link {
    color: #debcd3;
}
.nav-link:hover {
    color: white;
}
.icon-top {
    margin-left: 10px;
}
.icon-top .fab {
    background-color: #fff;
    font-size:1.2rem;
}
.icon-top .fab {
    background-color: #cdbcd3;
    font-size: 1.2rem;
    padding: 5px 6px;
    border-radius: 50%;
}
h2{
font-size: 32px;
color: var(--primary-purple);  
}
.border-title{
    width: 100px;
    height:6px;
    border-radius:3px;
    background-color: var(--primary-orange);
    margin:0 auto 10px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 100px 0;
    margin-top:60px;
    color: white;
}

.service-card, .video-card, .quem-card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 0 2px rgba(32, 16, 32, 0.2);
    border-bottom:4px solid var(--secondary-purple);
    border-radius: 4px;
}

.service-card:hover, .video-card, .quem-card {
    transform: translateY(-5px);
}

.service-icon {
    color: var(--primary-purple);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.service-card h3, .video-card h3, .quem-cardh3{
    font-size:1.5rem !important;
    border-bottom: 4px solid;
    padding-bottom: 10px;
    color: #d96eaa;
}
.video-card{
    text-align:center;
    background-color: #442144;
    background-image: repeating-linear-gradient(-45deg, #5a354e, transparent 150px);
    color:#b79ac4;
}
.quem-card{
    text-align:justify;
    background-color: #ffffff94;
    color:#594e66;
}
i.fa.fa-heart {
    color: #d96eaa;
}
.quem-card p{
    font-size:1rem;
}
.video-card img, .quem-card img{
    max-width: 100%;
    margin-bottom:20px;
    border-radius:4px;
}
.video-card img{
   border: 1px inset #966293;
}
.btn-primary {
    background-color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.btn-primary:hover {
    background-color: var(--secondary-purple) !important;
    border-color: var(--secondary-purple) !important;
}

.footer {
    background-color: var(--secondary-purple);
    color: white;
    padding: 2rem 0;
}
.footer p, .footer a{
    font-size: 14px;  
    line-height: 1.6rem; 
}
.footer a{
    color: #debcd3;
    text-decoration:none;
}
.footer a:hover{
    color:#fff;
}
.footer i.fab.fa-whatsapp, .footer .fab.fa-tiktok {
    font-size: 1.5rem;
    margin-right:5px;
}

.copyright{
    padding: 20px 10px;
    border-top: 1px solid var(--primary-purple);
    font-size:12px;
    text-align:center;
    color: #debcd3;
}
.copyright a{
    color:#debcd3;
    text-decoration:underline;
    font-size:12px !important;
}
.testimonial-card {
    border-left: 4px solid var(--primary-orange);
    background-color: #fff;
    border-radius:0 8px 8px 0;
    font-size:1rem !important;
    padding: 40px 120px !important;
}
.carousel-inner {
border-radius: 0 8px 8px 0;
}
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background-color: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollToTop:hover {
    background-color: var(--secondary-orange);
    transform: translateY(-3px);
}
.mago, .colibri{
    position: fixed;
    right: 10px;
    z-index: 999;
    border-radius:50%;
    box-shadow: 0 0 4px rgba(32, 16, 32, 0.8);   
}
.colibri{
    width:70px;
    bottom: 200px;   
}
.mago{
    width:140px;    
    bottom: 250px;    
}
/*BACKGROUND VIDEO MÓDULO*/
.video-background, .video-background2 {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.video-background {
    height: 80vh; /* Ajuste a altura conforme necessário */
}
.video-background2 {
    height: 40vh; /* Ajuste a altura conforme necessário */
}
.video-background video, .video-background2 video {
 position: absolute;
 top: 50%;
 left: 50%;
width: 100%;
height: 100%;
object-fit: cover;
transform: translate(-50%, -50%);
z-index: 1;
}
.video-background .content, .video-background2 .content, .video-background2 .content a {
position: relative;
 z-index: 2;
color: #ffffff;
text-shadow: 0 0 4px rgba(32, 16, 32, 0.8);
text-align: center;
padding: 20px;
top:45%;
}
.destaque{
letter-spacing: 7px;
}
.btn{
    text-shadow:none;
}
.overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #3f1740b4;
z-index: 2;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary-purple);
    border-radius: 50%;
    padding: 1rem;
}
.carousel-indicators button {
    background-color: var(--primary-purple) !important;
}
/*MEDIA QUEUE*/
@media (min-width:992px) {
    .contato-mb{
        display:none;
}    
}
@media (max-width: 991px){
.navbar-nav{
margin-top:10px;
padding-top:20px;
border-top: 2px solid #975c99;
margin-bottom:20px;
text-align: center;
font-size: 1.2rem;
}
.navbar .icon-top{
display:none;
}
.testimonial-card {
padding: 40px 50px !important;
}
body{
    background: linear-gradient(30deg, #e8e8e8, #b79ac4, #ecc95b, #d3c7d4, #e8e8e8);
}
h2{
    font-size:26px;
}
.video-background2 {
    top: 20px;
    height: 30vh;
}
.mb-5 {
    margin-bottom: 2rem !important;
}
.destaque {
    letter-spacing: 1px;
}
.colibri{
    width:50px;
    right:10px;
    top:160px;      
}
.mago{
    width:90px;
    top:95px;
    right:20px;
}
.mago, .colibri{
    box-shadow: 0 0 2px rgba(32, 16, 32, 0.4);  
    border:0;
}
}