/* Estilos gerais */
body {
    background-color: #f0f0f0;
    font-family: 'Manrope', sans-serif;
}

/* Estilo da Hero Section */
.hero-section {
    position: relative;
    color: white;
}

/* Imagem de fundo com bordas arredondadas */
.rectangle-image {
    max-width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 30px; 
}
/* Conteúdo da Hero Section */
.hero-content {
    padding-top: 50px;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-subtext {
    color: white !important; 
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Estilo da seta */
.img-seta {
    margin-top: 20px;
}

/* Imagens nos planos */
.card img {
    width: 100%;            
    height: 200px;      
    object-fit: cover;    
    border-radius: 15px 15px 0 0; 
}



/* Estilo do botão de chamada para ação */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    background-color: #97D7F6; 
    color: #010896; 
}

.cta-button:hover, .cta-button:focus, .cta-button:active{
    background-color: #6996ac !important; 
    color: #010896 !important; 
}

/* Estilo personalizado para o botão "Quero este plano" */
.btn-plano {
    background-color: #97D7F6; 
    color: #010896; 
    border: none;
}

.btn-plano:hover, .btn-plano:focus, .btn-plano:active{
    background-color: #6996ac !important; 
    color: #010896 !important; 
}

/* Estilos para a Navbar */
.navbar {
    background-color: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 3;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #003A8B !important;
}

.navbar .btn-primary {
    background-color: #97D7F6;
    color: #003A8B;
    font-weight: bold;
    border: none;
}

.navbar .btn-primary:hover {
    background-color: #85c6e4;
}

/* Estilos para a Barra Rolante */
#Barra\ rolante {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

#Barra\ rolante h2 {
    color: #003A8B;
}

#Barra\ rolante p {
    color: #003A8B;
}

/* Estilos para a Seção de Benefícios */
#beneficios {
    background-color: #e9ecef;
    padding: 3rem 0;
    text-align: center;
}

#beneficios h2 {
    color: #003A8B;
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

#beneficios p {
    color: #666;
    font-family: 'Manrope', sans-serif;
    margin-bottom: 2rem;
}

/* Estilos Gerais */
#benefits-section {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.card-container {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Título e Subtítulo */
.section-title {
    font-size: 2rem;
    color: #014F9E;
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #014F9E;
    margin-bottom: 2rem;
    text-align: center;
}

/* Conteúdo */
.content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Estilos dos Passos */
.text-content {
    flex: 1;
}

.step {
    display: flex;
    align-items: start;
    margin-bottom: 1.2rem;
}

.step-number {
    background-color: #3b82f6;
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.step-info h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #014F9E;
}

.step-info p {
    margin: 0.25rem 0 0;
    color: #666;
}

/* Estilos da Imagem */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.illustration-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}


@media (max-width: 768px) {
    .content-row {
        display: flex;
        flex-direction: column-reverse; /* Coloca a imagem acima do conteúdo de texto */
        align-items: center;
    }

    .image-content {
        margin-bottom: 20px; /* Ajusta o espaçamento entre imagem e texto */
    }

    .illustration-image {
        max-width: 100%;
        height: auto;
    }
}


/* Estilos para a Seção de Vantagens */
#vantagens h2 {
    font-size: 2rem;
    color: #2b6cb0; /* Define a cor azul do título */
    margin-bottom: 0.5rem;
}

#vantagens p {
    color: #4a5568; /* Define uma cor cinza escura para o texto da descrição */
    margin-bottom: 2rem;
}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.card {
    flex: 1;
    width: 100%; 
    max-width: 400px; 
    min-height: 400px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ícone no topo */
.icon {
    align-self: flex-start;
    width: 80px !important;
    height: auto !important;
    margin-bottom: 15px;
}


/* Título do card */
.text-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2b6cb0;
    margin-top: 10px;
    margin-bottom: 15px;
}

/* Texto do card */
.card p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 20px;
}

/* Imagem inferior */
.bottom-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: auto; 
}

/* Ajuste Responsivo */
@media (min-width: 1000px) {
    .img-large {
        width: 100%; 
    }
}

/* Centralização da Imagem da Seta */
.hero-content .img-seta {
    display: block;
    margin: 10px auto;
    max-width: 50px;
    height: auto;
}


/* Imagem de Fundo */
.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Conteúdo da Sobreposição */
.overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Ajuste do Tamanho da Imagem do Médico */
.doctor-image {
    /* width: 130%; 
    max-width: 900px; 
    height: auto;
    border-radius: 15px;
    margin-top: -100px; 
    position: relative;
    z-index: 1; */
    height: 100%;
    width: auto;
    z-index: 1;
}

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

    .doctor-image {
        position: absolute;
        left: 50%;
        bottom: 135px;
        transform: translateX(-50%);
        height: 80%;
    
    }
    
}

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

    .doctor-image {
        position: absolute;
        left: 50%;
        bottom: 135px;
        transform: translateX(-50%);
        height: 50%;
    
    }
    
}

/* Estilo do Texto */
    .overlay-text {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%);
        font-size: 3em; 
        color: white;
        text-shadow: 0px 2px 19.1px #000;
        font-weight: bold;
        z-index: 2;
        width: 100%;
        line-height: 1.2; 
        z-index: 2;
        
    }

/* Fundo Azul Completo para a Seção de Planos */
#Planos {
    background-color: #97D7F6;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

#Planos .card{
    padding: 0;
    border-radius: 10px !important; 
}

#Planos .card img{
    height: 300px;
}
#Planos .card h5{
    color: #333333;
    font-weight: bold;
    width: 100%;
    text-align: left;
}

#Planos .card ul {
    width: 100%;
    text-align: left;
    padding: 10px;
    min-height: 200px;
}
#Planos .card .button-actions{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
   

}

#Planos .card .button-actions * {
    width: 50%;
    margin-bottom: 0;
    flex-shrink: 0;
}

@media screen and (max-width: 1200px) {
    #Planos .card .button-actions * {
        width: 100%;
        margin-bottom: .5rem;
    }
    
}

#Planos .card .button-actions a{
    font-weight: bold;
}

#Planos .card-body{
    width: 100%;
    padding: 2rem 4rem;
}



.accordion-button {
    background-color: #f0f8ff;
    color: #1f4a7c;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    padding: 15px;
    cursor: pointer;
}

.accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-item {
    border: 1px solid #ADD8E6;
    border-radius: 8px;
    margin: 10px 0;
    overflow: hidden;
}

.accordion-body {
    font-size: 1rem;
    color: #333;
    background-color: #f9f9f9;
    padding: 15px;
}

.accordion-header {
    padding: 0; 
}

#depoimentos .container {
  max-width: 900px; 
}

#depoimentos h2{
    margin-bottom: 2rem;
}

.testimonial-card {
    background-color: #97D7F6;
    color: #003A8B;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}

.testimonial-card p {
    font-size: 14px;
    margin: 10px 0;
}

.author {
    font-weight: bold;
    font-size: 12px;
    display: block;
    margin-top: 10px;
    color: #003A8B;
}

h2 {
    color: #003A8B;
}
/* Estilo da Seção com Fundo Azul */


#medica{
    background-color: #97D7F6;
}
#medica h2{
font-size: 2rem;
font-weight: bold;
}

#medica p{
    color: #003A8B;
}



.doctor-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}
/* Estilo específico para a imagem da médica na seção intermediária */
.doctor-image-intermediaria {
    max-width: 600px; 
    height: auto;
}
/* Estilo para o botão "Contratar um plano" */
.btn-contratar {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #003A8B;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

/* Efeito de hover no botão */
.btn-contratar:hover, .btn-contratar:focus , .btn-contratar:active{
    background-color: #002970 !important;
    border-color: transparent !important;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .footer {
    background-color: #e0f7fa; 
    color: #333;
    font-family: Arial, sans-serif;
    padding: 20px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
  
  .logo-section {
    max-width: 250px;
  }
  
  .logo {
    width: 150px; /* Ajuste o tamanho do logo */
  }
  
  .logo-section p {
    margin-top: 10px;
    color: #666;
    font-size: 14px;
  }
  
  .links-section h4,
  .contact-section h4 {
    font-size: 16px;
    color: #003A8B;
    margin-bottom: 10px;
  }
  
  .links-section ul {
    list-style: none;
  }
  
  .links-section ul li {
    margin-bottom: 8px;
  }
  
  .links-section ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
  }
  
  .contact-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
  }
  
  .social-icons a {
    margin-right: 10px;
  }
  
  .social-icons img {
    width: 24px;
    height: 24px;
  }
  
  .footer-bottom p {
    font-size: 12px;
    color: #666;
  }
  
/* Estilos para a seção de Planos */
#Planos h2 {
    font-size: 30px;
    color: #003A8B;
    font-weight: bold;
    margin-bottom: 2rem;
}

.card-container {
    display: flex;
    justify-content: space-between; 
    gap: 20px;
    padding: 20px; 
}

.card {
    flex: 1 1 500px; 
    max-width: 800px; 
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.card-image {
    width: 500%; 
    max-height: 250px; 
    object-fit: cover; 
    border-radius: 10px 10px 0 0; 
}

.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.card-title {
    font-size: 1.5rem;
    color: #2b6cb0;
    margin-top: 1rem;
}

.card-text {
    text-align: left;
    font-size: 0.95rem;
    color: #4a5568;
}

.card-price {
    font-size: 1.25rem;
    color: #333;
    font-weight: bold;
}

.btn-plano {
    background-color: #97D7F6;
    color: #010896;
    border: none;
    margin-top: auto;
    width: 100%;
}

/* Estilo da seção principal */
.benefits-section {
    padding: 40px 20px;
    background-color: #f9f9f9; /* Cor de fundo da seção */
}

/* Define o estilo do container */
.benefits-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    max-width: 1200px; /* Largura máxima da área de cards */
    margin: auto;
}

/* Estilização de cada card */
.benefit-card {
    width: 350px; /* Largura dos cards */
    min-height: 500px; 
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    padding: 20px;
    justify-content: space-between; /* Espaça o conteúdo do card */
}

/* Estilo do ícone no topo */
.benefit-card .icon img {
    width: 80px;
    height: 80px;
    margin-top: 10px;
}

/* Título */
.benefit-card h1 {
    font-size: 1.2rem;
    color: #014F9E;
    margin-top: 10px;
}

/* Texto de descrição */
.benefit-card p {
    /* padding: 0 10px; */
    font-size: 0.95rem;
    color: #4a5568;
}

/* Imagem na parte inferior */
.benefit-card .image {
    width: 100%;
    margin-top: 20px;
}

.benefit-card .image img {
    width: 100%;
    height: 150px; 
    object-fit: cover;
    border-radius: 0 0 15px 15px;
}




#footer-links p:first-child, #footer-contact p:first-child{
    color: #003A8B;
}


 
nav.gs{
    background-color: rgb(18,36,63) !important ;
    
    padding: 0;
    margin: 0;
  
    width: 100%;
    z-index: 1000;
  
  
  }
  
  nav.gs .container{
    border-bottom: 2px solid;
    border-bottom-color: rgb(102,154,255);
    padding: 0px;
    padding-bottom: 0px;
  }
  
  
  .gslider-100 {
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 2rem 0; /* Espaçamento vertical opcional */
  }
  
  .gslider-100 h2 {
    font-size: 40px;
    color: var(--azul); /* Substitua por sua variável ou cor desejada */
    margin-bottom: 4rem;
    font-weight: 700;
    line-height: 52px;
    padding: 0 1rem;
  }
  
  .gslider-100 h2 span {
    color: var(--laranja); /* Substitua por sua variável ou cor desejada */
  }
  
  .slider-wrapper {
    width: 100%;
    overflow: hidden; /* Esconde o conteúdo que ultrapassa a largura */
  }
  
  .slider-track {
    display: flex;
    gap: 2rem; /* Espaço entre as imagens */
    animation: scroll-right 35s linear infinite;
    /* Largura total: (largura da imagem + espaço) * número de imagens * 2 */
    width: calc((280px + 2rem) * 7 * 2);
  }
  
  .slider-track div {
    width: 250px; /* Ajuste a largura conforme necessário */
    height: 180px !important; /* Ajuste a altura conforme necessário */
    object-fit: contain;
    background-color: white;
    border-radius: 15px;
  
  }

  .slider-track div p:first-of-type {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    font-weight: bold;
    color: black !important;
  }

  .slider-track div p:last-of-type {
    margin-top: .5rem !important;
    margin-bottom: .5rem !important;
    color: black !important;
    font-size:  12px;

  }

  
  @keyframes scroll-right {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  