@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    --primary-color: #4b6fff;
    --secondary-color: #ff69b4;
    --accent-color: #28a745;
    --text-color: #333;
    --light-bg: #f8f8f8;
    --dourado: #9a8b60;
    --fundo-geral: #F6F5F0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--fundo-geral);
}


.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.navbar-brand {
    margin-left: 70px;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    margin-left: 30px;
}

.nav-link {
    color: #FFFFFF;
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    margin-right: 10px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color:var(--secondary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.toggle-btn {
    display: none;
    background-color: var(--dourado);
    color: var(--light-bg);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1100;
}

.toggle-btn:hover {
    background-color: var(--secondary-color);
    color: var(--light-bg);
}

.modal-content {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--dourado);
  border-radius: 20px;
  
}

.modal-title{
  color: var(--light-bg)

}
.modal-header {
  background-color: var(--dourado);
  color:var(--dourado);
  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(--dourado);
 font-weight: bold;
 
 
}

.form-control, .form-select {
  border-radius: 10px;
  padding: 0.8rem 1rem;
  height: 45px;
  border: 1px solid var(--light-bg);
  
}

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

.input-group-text {
  background-color: var(--dourado);
  border: 1px solid var(--dourado);
  color: var(--light-bg);
  height: 45px;
  
  
 
}

.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;
}


.btn-schedule:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    color: white;
  } 
/* Menu Mobile */
@media (max-width: 768px) {
    .toggle-btn {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-menu {
        position: fixed;
        top: 15px;
        left: -100%;
        width: 80%;
        height: 90vh;
        border-radius: 5%;
        background-color: var(--dourado);       
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.5s ease-in-out;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 20px 0;
    }

    .nav-link {
        font-size: 1.5rem;
        color:#ffffff;
        
    }
    .navbar-brand {
        margin-left: 10px;
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: bold;
        text-decoration: none;
        letter-spacing: 1px;
    }
    
}


.highlight-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.highlight-content {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}

.logo-container {
    margin-bottom: 2rem;
    text-align: center;
}

.logo-img {
    max-width: 60px;
    margin-bottom: 0.5rem;
}

.sobre{
    background-color: #f4f4f4; /* Mantido */
    color: #1C4980; /* Azul escuro para maior contraste */
    text-align: justify;
}
.psychologist-name {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.2;
}

a {
    color: #1C4980;
    text-decoration: none;
    transition: color 0.3s ease;
  }
a:hover {
    color: #ffcc00; /* amarelo em hover para destacar */
  }
.section {
    padding: 4rem 1rem;
  }
.psychologist-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 300;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.highlight-text {
    color: var(--primary-color);
    font-style: italic;
}

.contact-btn {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    color: white;
}

.contact-btn i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.psychologist-img-container {
    position: relative;
    text-align: center;
}

.credential-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.credential-badge img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

.credential-text {
    font-size: 0.9rem;
    line-height: 1.2;
    color: var(--text-color);
}

.credential-number {
    font-size: 0.8rem;
    color: #777;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f0f0f0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 1;
}

@media (max-width: 991.98px) {
    .main-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .psychologist-img-container {
        margin-top: 2rem;
    }
    
    .credential-badge {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 767.98px) {
    .highlight-content {
        padding: 2rem 0;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .contact-btn-container {
        text-align: center;
    }
}

.btn-comprar {
    border: 1px solid black;
    padding: 12px 30px 12px 30px;
    border-radius: 30px;
    background-color: #c3ece8;
    font-weight: bolder;
    font-size: 15px;
    box-shadow: 0px 0px 1px;
    transform: all 2s esase;
    text-transform: uppercase;
    transition-duration: .3s;
  }
  
.btn-comprar:hover {
    transform: translateY(-10px);
    background-color: #fbfbfb;
    box-shadow: 0px 7px 1px rgb(0, 0, 0);
    border: 1px solid black;
    color: #000;
  }
  
.btn-comprar:active {
    transform: translateY(10px);
    box-shadow: 0px 0px 1px;
  }
    
.pulsar {
  animation: pulsar 1.5s infinite;
  transition: transform 0.3s;
}

@keyframes pulsar {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(28, 73, 128, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(28, 73, 128, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(28, 73, 128, 0);
  }
}

.section-title1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 1s ease 0.5s forwards;
}


.section-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}



/* Modelo 2 - Vídeo de fundo */
.modelo-2 {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    color: white;
}

.modelo-2 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
}

.modelo-2 .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.modelo-2 .content {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.highlight {
    background-color: #ffb9e9;
    padding: 0 5px;
    display: inline-block;
    margin: 0 -5px;
}

.course-badge {
    background-color:#ffb9e9;
    border-radius: 50px;
    padding: 5px 15px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

.special-edition {
    background-color: #D0E7F9;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 15%;
    right: 8%;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: center;
}

.special-edition span {
    transform: rotate(-12deg);
}

.stats-card {
    background-color: #212529;
    color: white;
    border-radius: 15px;
    padding: 15px;
    position: absolute;
    top: 50%;
    left: 10px;
    width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.stats-label {
    font-size: 0.7rem;
    color: #aaa;
    text-transform: uppercase;
    margin-bottom: -5px;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.stats-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 35px;
}

.bar {
    width: 12px;
    background-color: #70ffe0;
    border-radius: 3px 3px 0 0;
}

.line-chart {
    height: 30px;
    margin-top: 10px;
    position: relative;
}

.line-chart::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #444;
}

.line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.get-started-btn {
    background-color: #000;
    color: white;
    border-radius: A30px;
    padding: 12px 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: white;
}

.star-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    color: white;
}

.image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    background-color: #faf8f8;
}


.header-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.header-subtitle {
    font-size: 2rem;
    font-weight: 700;
}

.highlight {
    background: linear-gradient(transparent 50%, rgba(79, 206, 229, 0.842) 50%);
    display: inline;
}

.card {
    margin-top: 30px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

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

.dark-card {
    background-color: #1a1a1a;
    color: white;
}

.light-card {
    background-color: white;
    border: 1px solid #e0e0e0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-text {
    color: #6c757d;
    font-size: 0.95rem;
}

.dark-card .card-text {
    color: #b0b0b0;
}

.full-width-background {
    background-color:  #ffcbe5; 
    width: 100%;
    
}

.student-image-container {
    margin-top: 160px;
    border-radius: 20px;
    overflow: hidden;
}

.description-text {
    color: #6c757d;
    line-height: 1.6;
}
.header-section {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
}

.header-section h2 {
    color: #555;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.header-section h1 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 2rem;
}

.h3 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 3rem;
    font-family: 'San-serif', Tahoma, Geneva, Verdana, sans-serif;
  
}
.process-flow {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.step-container {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.step {
    text-align: center;
    padding: 0 15px;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.8rem;
}

.step:nth-child(1) .step-icon {
    background-color: #e9a192;
}

.step:nth-child(2) .step-icon {
    background-color: #f7c4b9;
}

.step:nth-child(3) .step-icon {
    background-color: #ffd166;
}

.step:nth-child(4) .step-icon {
    background-color: #a8e6cf;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.connector {
    position: absolute;
    top: 40px;
    left: 5%;
    width: 90%;
    height: 2px;
    background-color: #eee;
    z-index: -1;
}
.rheumatology-section {
    padding: 4rem 0;
    background-color:var(--fundo-geral);
}

.section-title {
    font-family: "Poppins" system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: #6cc3db;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.check-item {
    margin-bottom: 0.7rem;
    color: #7a7a7a;
}

.check-icon {
    color: #6edadd;
    margin-right: 10px;
}

.image-grid {
    position: relative;
    height: 100%;
}

.image-tile {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.schedule-btn {
    background-color: #3ad178;
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}


.schedule-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-icon {
    margin-right: 8px;
    
}


/*Carousel*/
.fundo-carousel{
    margin-top: 40px;
    width: 100%;
    background-color:#D0E7F9; 
   
    
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    
}

.header {
    text-align: center;
    margin-bottom: 3rem;
}

.header h1 {
    padding-top: 50px;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1rem;
}

.header p {
    font-size: 1.25rem;
    color: #4b5563;
    max-width: 42rem;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonial-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    background: #ff9bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.25rem;
}

.name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.date {
    font-size: 0.875rem;
    color: #6b7280;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.star {
    color: #fbbf24;
    width: 1.125rem;
    height: 1.125rem;
}

.text {
    color: #374151;
    line-height: 1.5;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 9999px;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
    
}

.dot.active {
    width: 1.5rem;
    background: #ff9bff;
    
    
}

.dot:hover:not(.active) {
    background: #9ca3af;
}

.carousel-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    
}

.carousel-slide.active {
    display: block;
    opacity: 1;
}


.cta-section {
    margin: 40px auto;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    background: linear-gradient(to bottom, #9a8b60 0%, #9a8b60 85%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
.cta-container {
    max-width: 800px;
    width: 80%;
    margin: 0 auto;
  }
  
.cta-heading {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
  }
  
.cta-subheading {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 400;
  }
  
.cta-button1 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #7bc142;
    color: white;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s;
    max-width: 100%;
    margin: 0 auto;
  }
  
.cta-button1:hover {
    background-color: #69a939;
  }
  
.whatsapp-icon {
    margin-right: 10px;
  }

/*blog*/

.blog-header {
    padding: 2.5rem 0;
    border-radius: 0 0 210px 0px;
    margin-bottom: 2rem;
}

.blog-content {
    padding: 1rem 0 3rem;
}


.article-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    background-color: white;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.article-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 90px); /* Ajuste conforme necessário */
}

.article-text {
    flex-grow: 1;
}

.continue-reading {
    display: inline-block;
    color: var(--primary-color);
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: auto;
    padding-top: 1rem;
}

.continue-reading:hover {
    color: var(--secondary-color);
}

.emoji-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    color: transparent;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.lead {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: justify;

}

.article-text p{
    text-align: justify;

}
.img-container {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    
        
}

.img-container img {
    transition: transform 0.5s ease;
        
}

.img-container .img-fluid {
    border-radius: 8px;
    width: 100%;
    margin-bottom: 1rem;
    height: 100%;
        
}
.article-card:hover .img-container img {
    transform: scale(1.05);
}

  
@media (max-width: 768px) {
    .cta-heading {
      font-size: 26px;
    }
    
    .cta-subheading {
      font-size: 22px;
    }
    
    .cta-button {
      font-size: 16px;
      padding: 14px 20px;
    }
    .student-image-container {
        margin-top: 60px;
        border-radius: 20px;
        overflow: hidden;
    }
    
  }
  
@media (max-width: 480px) {
    .cta-heading {
      font-size: 22px;
    }
    
    .cta-subheading {
      font-size: 18px;
    }
    
    .cta-button {
      font-size: 14px;
      padding: 12px 16px;
    }
  }
@media (max-width: 768px) {
    .section-title1 {
        margin-top: 80px;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
        font-weight: 700;
        animation: fadeInUp 1s ease 0.5s forwards;
    }
    .section-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .check-list {
        margin-top: 2rem;
    }
}
@media (max-width: 768px) {
    .step-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        max-width: 300px;
        margin-bottom: 2rem;
    }
    
    .connector {
        display: none;
    }
}

.cta-button {
    display: block;
    width: 200px;
    margin: 2rem auto;
    padding: 12px;
    text-align: center;
    background-color: #a8e6cf;
    color: #333;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #86d4b9;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


.contato-section {
    background-image: url('../img/fundo-contato.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.contato-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.contato-content {
    position: relative;
    z-index: 2;
}

.contato-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    height: 100%;
    transition: transform 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
}

.contato-titulo {
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.5rem;
}

.contato-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contato-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fff;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    margin-top: 20px;
    justify-content: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a{
    text-decoration: none;
}
.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.qr-code {
    width: 150px;
    height: 150px;
    background-color: #fff;
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
}

.mapa-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsividade adicional */
@media (max-width: 991px) {
    .contato-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contato-section {
        padding: 50px 0;
    }
}
@media (max-width: 991.98px) {
    .header-title {
        font-size: 2rem;
    }
    .header-subtitle {
        font-size: 1.7rem;
    }
}

@media (max-width: 767.98px) {
    .card {
        margin-bottom: 1rem;
    }
    .img-service{
        margin-top: 20px;
        border-radius: 20px;
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .stats-card {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 20px;
    }
    
    .special-edition {
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
    }
}