:root {
    --primary-color:#6B705C; 
    --primary-lilac: #B58C6D;
    --secondary-color: hsl(23, 25%, 37%);
    --terra: hsl(23, 85%, 30%);
    --verde:rgba(255, 255, 255, 0.3);
    --bege-color: #DDBEA9;
    --light-color: #F1E3D3;
    --secondary-lilac: #FFF6EB;
    --background-gradient: linear-gradient(135deg, #F6F0FF, #6B705C);
    
       
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--light-color);
    background: var(--secondary-lilac);
    
}

h2, h4, h5{
    margin-top: 20px;
    margin-left:10px;
    font-family: "Poppins", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: bold;
    color: #6f6745;
}
h3{
    margin-top: -60px;
    margin-left:65px;
    font-family: "Poppins", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.2rem;
    font-style: normal;
     color: #6f6745;
}


/* Hero Section */
.custom-navbar {
    background: var(--background-gradient);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.custom-navbar.scrolled {
    padding: 0.5rem 0;
    background: var(--primary-color);
}

.navbar-brand {
    color: var(--terra) !important;
    font-weight: 600;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--bege-color) !important;
}

.nav-link {
    color: var(--light-color) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    margin: 0 0.2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--bege-color) !important;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background-color: var(--primary-lilac);
    color: var(--light-color) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary-lilac);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.appointment-btn {
    background-color: var(--primary-lilac);
    color: var(--light-color) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background-color: var(--terra);
    transform: translateY(-2px);
}


.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('../img/consulta-online.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 70vh; /* Changed from min-height: 100vh to height: 70vh */
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-top: 76px; /* Add margin-top to account for fixed navbar */

}

.hero-content {
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}



/* Buttons */
.btn-schedule {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}


/* Efeito de pulso infinito */
@keyframes pulse {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(4, 214, 233, 0.92); /* Cor primária do Bootstrap com transparência */
    }
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); /* Aumenta o tamanho e desaparece */
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); /* Retorna ao estado inicial */
    }
  }
  
  /* Aplicando a animação ao botão */
.btn-schedule {
    animation: pulse 2s infinite; /* Repete a animação infinitamente a cada 2 segundos */
  }
  
  /* Efeito hover para interatividade */
  
.btn-schedule:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
} 
/* Modal Styling */
.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    
}

.modal-title{
    color: var(--bege-color)

}
.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 1.5rem;
   
}

.modal-body {
    padding: 2rem;
    background-color: #F5F5F5;
    border-radius: 0 0 20px 20px;
    
    
}
.form-label{
   color: var(--primary-lilac);
   font-weight: bold;
   
   
}

.form-control, .form-select {
    border-radius: 10px;
    padding: 0.8rem 1rem;
    border: 1px solid var(--accent-color);
    
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(203, 172, 13, 0.25);
    
}

.input-group-text {
    background-color: var(--primary-lilac);
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    height: 45px;
    
    
   
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-saiba-mais {
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-saiba-mais:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 68, 173, 0.2);
    color: white;
}
.about-section {
    background: var(--secondary-lilac);
    margin-top: 10px;
     
}

.list-unstyled li{
    color: #6c757d;
    background: var(--secondary-lilac);
    font-size: 1.2vw;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.lead{
    color: #4f4e4d;
    font-size: 1.3vw;
    text-align: justify;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.profile-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.profile-image {
    margin-top: -120px;
    margin-left: -230px;
    width: 550px;
    height: 510px;
    object-fit: cover;
    mix-blend-mode: multiply;
  }

.title-highlight {
     
    background: var(--primary-color);
    -webkit-background-clip: text;
    font-size: 1.7rem;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.animate-text {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
.visible {
    opacity: 1;
    transform: translateY(0);
}
/*beneficios*/

.benefits-section {
    background: var(--background-gradient);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    
}

.benefits-card {
    background: var(--secondary-lilac);
    border-radius: 15px;
    height: 90%;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefits-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.treatment-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--primary-lilac);
    transition: all 0.3s ease;
}

.treatment-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 3px;
    background: var(--primary-lilac);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--bege-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}


.treatment-title {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-bar {
    background-color: var(--primary-lilac);
}


.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-container h2{
    font-size: 3rem;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.carousel-inner h2{
    font-size: 2rem;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;

}
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.video-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.video-info {
    padding: 15px;
    background-color: #6B705C;
    color: var(--secondary-lilac);
}

.video-title {
    font-size: 1.1em;
    margin-bottom: 5px;
    font-weight: bold;
}

.video-date {
    font-size: 0.9em;
    color: var(--bege-color);
    font-weight: bold;
}

/*testemunho*/
.testimonials-section {
    background: var(--bege-color);
    padding: 5rem 0;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--secondary-lilac);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 1rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-lilac);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.testimonial-text {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
    border: 3px solid var(--primary-lilac);
}

.author-info {
    flex-grow: 1;
}

.author-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-title {
    color: var(--primary-lilac);
    font-size: 0.9rem;
}

.rating {
    color: var(--primary-lilac);
    margin-bottom: 1rem;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: -25px;
}

.carousel-control-next {
    right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-lilac);
    opacity: 0.5;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.2rem 0;
        
    }
    .testimonial-card {
        margin: 0.5rem;
        padding: 2rem;
        min-height: 350px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .testimonial-text {
        font-size: 1rem;
    }
    .title-highlight {
        margin-top: -20px;
        background: var(--primary-color);
        -webkit-background-clip: text;
        font-size: 1.3rem;
        -webkit-text-fill-color: transparent;
        font-weight: bold;
    }
    
    .profile-image {
        margin-top: 20px;
        margin: 0px;
        width: 90%;
        height: 510px;
        object-fit: cover;
        mix-blend-mode: multiply;
      }
    .benefits-section {
        padding: 3rem 0;
    }

    .benefits-card {
        padding: 1.5rem;
    }

    .icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .lead{
        color: #4f4e4d;
        font-size: 1rem;
        text-align: justify;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    .list-unstyled li{
        color: #6c757d;
        background: var(--secondary-lilac);
        font-size: 1.2rem;
        font-weight: bold;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }
    .gallery-container h2{
        font-size: 1.7rem;
        font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
        font-weight: bold;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 30px;
    }
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
   
}


.benefit-description {
    margin-top: 20px;
    color: var(--secondary-color);
    line-height: 1.6;
}

.success-rate {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-top: 1rem;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-in-out;
  }

  @keyframes slideIn {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
   

.btn-success {
    margin-top: 30px;
    background-color: var(--primary-color);
    border-radius: 50px;
    border: none;
    font-weight: 600;
    width: 50%;
    padding: 10px;
    border-color: var(--primary-lilac);
    text-transform: uppercase;
  }

.btn-success:hover {
    background-color:var(--primary-lilac);
    border-color:var(--primary-color);
  }

.e-book h2{
    margin-top: 20px;
    margin-bottom: 30px;
    font-size: 1.5rem;
    color: #617e7c;
}

.text-left{
    color: #7c4e2a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 40px;
    margin-left: -10px;
    font-weight: bold;
    font-size: 2.5rem;
}

.testimonial-text {
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.form-control {
    border: 1px solid #ced4da;
    height: 45px;
   
  }

.input-group-text {
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
  }

.img-fluid {
    margin-top: 30px;
    max-width: 100%;
    height: auto;
  }

.bi-envelope-fill{
    color:var(--color-medium-green);
    font-size: 20px;
    
}



/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color:var(--primary-lilac);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
    z-index: 1050;
}

.whatsapp-float:hover {
    background-color: var(--primary-color);
    color: white;
}

.whatsapp-float i {
    font-size: 1.5rem;
}

.text-purple {
    color:var(--primary-lilac);
}


/* Copyright Section */
.footer {
    margin-top: 50px;
    background-color: var(--primary-color);
    color: var(--color-light-green);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    padding: 1rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h5 {
    color: var(--primary-lilac);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--verde);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--bege-color);
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .footer-section {
        flex: 100%;
        text-align: center;
    }
}
.list-unstyleda li{
    text-transform: none;
}

.text-muted {
    color: #617e7c !important;
}

.text-mutedp {
    color: #f0fffe !important;
}

.text-footer{
    color: var(--bege-color);
    font-weight: 400;
    margin-left: 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

.input-group-text {
    margin-bottom: 15px;
    background-color: #f8f9fa;
    border: 1px solid #ced4da;
  }



/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    .section-title {
        color: var(--secondary-color);
        text-shadow: 2px 2px 4px rgba(138, 79, 255, 0.2);
    }
    
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }
    .advantages-section {
        padding: 60px 0;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    .about-content h2 {
        font-size: 2rem;
    }

    .about-content h3 {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 40px 0;
    }
    .text-p{
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        font-size: 1.2rem;
        color: #5dda04fa;
        font-weight: bold;
        
    }
    .profile-container {
        width: 300px;
        height: 250px;
        margin-bottom: 2rem;
    }

    .profile-image {
        width: 100%;
        height: auto;
    }
    .text-left{
        color: #7c4e2a;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: 40px;
        margin:15px;
        font-weight: bold;
        font-size: 2rem;
    }
   
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.2rem 0;
    }

    .appointment-btn {
        margin-top: 0.5rem;
    }
    .navbar-collapse {
        background: var(--primary-color);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 1rem;
    }

    .nav-link {
        margin: 0.2rem 0;
        
    }
    .about-content {
        text-align: center;
        padding: 1rem;
    }

    .credentials-list li {
        justify-content: center;
    }

    .about-image-wrapper {
        margin-bottom: 2rem;
    }
    .social-proof-container {
        flex-direction: column;
    }

    .social-proof-text,
    .social-proof-carousel {
        width: 100%;
    }

    .social-proof-carousel {
        height: 300px;
    }
}