/* Cores */
:root {
    --cor-um: #3a715e;
    --cor-dois: #a0bebc;
    --cor-tres: #286198;
    --cor-quatro: #3d6386;
    --doglife: #2ca577;
    --doglife2: #42cd97;
    --doglife3: #164145;
    --petlife: #db5893;
    --petlife2: #00aee0;
    --petlife3: #fbb057;  
}
/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6; 
    background-color: #3d6386;
    }
/* Navbar */
.logo img {
    height: 90px;  
    margin-left: 50px;
    transition: transform 0.3s ease; /* Transição suave para o zoom */
}
.logo img:hover {
    transform: scale(1.1); /* Aumenta a escala da imagem em 10% */
}

/* From Uiverse.io by Gaurav-WebDev */ 
.resultados {
    text-decoration: none;
    color: white;
}
.resultados:hover {
    text-decoration: none;
    color: white;
}
.button {
    position: relative;
    padding: 10px 25px;
    border-radius: 6px;
    border: none;
    color: #fff;
    cursor: pointer;
    background-color: #286198;
    transition: all 0.2s ease;
  }
  
  .button:active {
    transform: scale(0.96);
  }
  
  .button:before,
  .button:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
  }
  .button:hover:before {
    top: -70%;
    background-image: radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, transparent 20%, #286198 20%, transparent 30%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #286198 15%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
      10% 10%, 18% 18%;
    background-position: 50% 120%;
    animation: greentopBubbles 0.6s ease;
  }  
  @keyframes greentopBubbles {
    0% {
      background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
        40% 90%, 55% 90%, 70% 90%;
    }
  
    50% {
      background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
        50% 50%, 65% 20%, 90% 30%;
    }
  
    100% {
      background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
        50% 40%, 65% 10%, 90% 20%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
  
  .button:hover::after {
    bottom: -70%;
    background-image: radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #286198 15%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%),
      radial-gradient(circle, #286198 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    animation: greenbottomBubbles 0.6s ease;
  }
  
  @keyframes greenbottomBubbles {
    0% {
      background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
        70% -10%, 70% 0%;
    }
  
    50% {
      background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
        105% 0%;
    }
  
    100% {
      background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
        110% 10%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
.navbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;    
    color: var(--cor-tres);
    background: rgba( 255, 255, 255, 0.35 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}
.links .nav-links {
    list-style: none;
    display: flex;
}
.links .nav-links a {
    text-decoration: none;
    padding: 0 10px;
    transition: background-color 0.3s, color 0.3s;
}
.links .nav-links a:hover {
    color: var(--cor-quatro); /* Cor de destaque no hover */
    border-radius: 5px; /* Bordas arredondadas no hover */
    background-color: var(--cor-dois);
    border-radius: 8px;
    padding: 8px;
}
/* Procedimentos */
.pclab {      
    margin: 0 auto;    /* Centraliza o conteúdo horizontalmente */
    background-color: var(--cor-um);  
    display: flex;
    padding: 20px;  
}
.pt2 {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-content: center;
}
.proc {
    text-align: center;
    font-size: 40px;
    color: #ffffff;
    font-weight: bold;
}
.proc2 {
    text-align: center;
    color: #ffffff;
}
.procedimentos {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.faq-lab {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    padding: 50px;
}
.questions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;    
}
.pata {
    display: flex;
    justify-content: center;
    height: 100px;
}
.pata-img {
    height: 100px;
}
.procedimentos h3 {
    color: var(--cor-dois);
    font-size: 36px;
}
/* Conteudo */
.grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #ddd;
}
.grid-left, .grid-right {
    border-radius: 15px;
    height: 700px;   
}
.cachorros {
    height: 500px;
    margin: 60px 220px;
    position: absolute;
}
.cachorros:hover {
    transform: scale(1.2); /* Aumenta a escala da imagem em 10% */
}
.quality ul {
    list-style: none;
    padding: 0;
  }  
  .quality ul li {
    margin: 10px 0;
    font-size: 1.1rem;
  }
.p-1 {
    font-size: 50px;    
}
.texto-historia {
    padding: 35px;
    width: 700px;
    font-size: 20px;
}
.h2-historia {
    text-align: center;
    font-size: 40px;
    color: #3a715e;
    font-weight: bold;
    text-transform: uppercase;
}
.nome-historia {
    color: #3a715e;
    font-weight: bold;
    text-transform: uppercase;
}
.grid-section {
    padding: 80px; 
    align-items: center;
    justify-content: center;
}
.right-history {
    align-items: center;
    justify-content: center;
    padding: 50px;
}
.linha-tempo {
    justify-content: center;
    align-items: center;
    height: 500px;
}
/* Estilo do footer */
.grid-footer {
    background-color: var(--cor-tres);
    
}
.rodape {
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-column {
    padding: 20px 50px;
}
.footer-column h3, li {
    color: white;
}
.footer-column li {
    list-style: none;
    padding: 3px;
}
.copy {
    justify-content: center;
    text-align: center;
    color: white;
    padding: 10px;
}
ul {
    margin: 20px;
    padding: 20px;
    width: 500px;
}
li {
    font-size: 20px;
}
.items  {
    height: 200px;
}
h1 {
    margin-bottom: 20px;
}
  /* Container geral do grid */
  .grid-container {
    background-color: white;
    display: grid;
    grid-gap: 20px;    
    height: auto;                    
  }  
  /* Estilos para as colunas */
  .grid-item {
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
  }  
  /* Área que ocupa 100% da largura abaixo */
  .grid-fullwidth {
    grid-column: span 3;   /* Faz a área ocupar 100% da largura (todas as colunas) */
    padding: 20px;
    text-align: center;
  }
.grid-area {
    justify-content: center;
    align-items: center;
    max-width: 300px;
}
.lista-exames {
    justify-content: space-around;
    display: flex;
}
.coleta {
    border-radius: 30%;
}
.figure-caption {
    text-align: center;
}
.p-exames {
    text-align: left; 
}
.p-exames li {
    text-align: left;
    color: black;
}
.planos {
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);    
    margin: 0 auto;
    text-align: center;    
}
.plan {
    font-weight: bold;
    color: white;
    background-color: var(--cor-um);
    padding: 20px;
    margin: 0;
}
.card-planos {
    display: flex;
    align-items: center;
    justify-content: center;  
    width: 100%; /* Largura total da div */
    height: 100vh; /* Altura total da viewport (ajuste conforme necessário) */
    overflow: hidden; /* Oculta o excesso, caso a imagem ultrapasse o tamanho */
}
.card-img-top {
    width: 100%; /* Faz a imagem ocupar 100% da largura da div */
    height: 100%; /* Faz a imagem ocupar 100% da altura da div */
    object-fit: cover; /* Garante que a imagem preencha a div sem distorção */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  
    
}
h2 {
    color: #008080;
    margin-bottom: 10px;
}
p {
    margin-bottom: 20px;
}
ul {
    list-style-type: disc;
}
li {
    margin-bottom: 10px;
}
.perguntas {
    margin: 0;
    padding: 0;
}
.divider {    
    width: 80%;
    height: 1px; /* Define a altura da linha */
    background-color: white; /* Cor branca da linha */
    margin: 0px 10%; /* Margem para separar os conteúdos */
  }
  /* Formulario */ 
  .formulario-esq {
    height: 800px;
    background-image: url(/Img/form.png);    
    background-repeat: no-repeat; /* Impede que a imagem se repita */
    object-fit: cover; 
    border-top-left-radius: 20px;  /* Canto superior esquerdo */
    border-bottom-left-radius: 20px;  /* Canto inferior esquerdo */
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  }
  .formulario-dir {
    height: 800px;
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    border-top-right-radius: 20px;  /* Canto superior esquerdo */
    border-bottom-right-radius: 20px;  /* Canto inferior esquerdo */    
  }
    .contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;   
    padding: 40px;
    color: #000000;
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

.contact-form .form-group {
    margin-bottom: 15px;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
.contact-form textarea {
    resize: vertical;
}
.btn-submit {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: var(--doglife2);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.btn-submit:hover {
    background-color: var(--cor-tres);
}
 /* Fim da Estilização do formulário */
/*---------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 767px) {
/* Adicione seu código CSS aqui para telas pequenas */
 /* Responsividade Header */
.navbar {
    flex-direction: column;
    align-items: flex-start;
}
.navbar .nav-links {
    flex-direction: column;
    width: 100%;
}
.navbar .nav-links li {
    margin: 10px 0;
    width: 100%;
}
.navbar .nav-links a {
    width: 100%;
    text-align: center;
}
/*inicio-primeira-seção*/
    .grid-section {
        grid-template-columns: 1fr;
    }
    .container  {
        display: flex;
        flex-direction: column;
    }
    .h2-historia {
        text-align: left;
        font-size: 40px;
        color: #3a715e;
        font-weight: bold;
        text-transform: uppercase;
    }
    .texto-historia {
        text-align: justify;
        padding: 15px;  
        width: 100%;     
    } 
    .cachorros {
        display: none;
    }
    .right-history img {
        height: 300px;
    }
    .right-history {
        padding: 0;
    }
    .logo.rdp img  {
        height: 200px;
    }
    .left-history {
        display: flex;
        flex-wrap: wrap;
    }
/*fim-primeira-seção*/
/*Inicio-Segunda-seção*/
    .pclab {
        background-color: var(--cor-um);
        display: flex;
        flex-direction: column;
    }
    .proc {
        width: 100%;
        margin: 0;
    }
    .procedimentos {
        text-align: center;
    }
    .procedimentos ul {
        padding-bottom: 5px;
    }
    .procedimentos li {
        font-size: 16px;
    }
    .procedimentos h3 {
        color: var(--cor-dois);
        /* font-size: 36px; */
    }
    .pata {
        display: none;
    }
/*Fim-Segunda-seção*/
.faq-lab {
    display: flex;
    padding: 20px;
    height: auto;
}
.fac-lab h2{
    display: none;
}
.questions {
    display: flex;
    flex-direction: column;    
}
.respostas {
    width: 300px;
}
.title-perguntas {
    font-size: 20px;
    width: 300px;
}
/*Inicio-Terceir-seção*/
.card-planos {
    display: flex;
    flex-direction: column;
    height: auto;
}
.grid-footer {
    display: flex;
    flex-direction: column;
}
.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0;
    padding-top: 0;
}
.dog-cat {
    height: auto;
    object-fit: cover;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    box-shadow: rgba(31, 38, 135, 0.37) 0px 8px 32px 0px;
    width: 345PX;
}
.footer-column {
    width: 300px;
    padding: 2px;
}
.footer-column li {
    font-size: 16px;
}
.footer-column h3 {
    color: var(--cor-dois);
    padding-top: 15px;
}
iframe {
    width: 300px;
}
}
  /* TELAS MÉDIAS */
  @media only screen and (min-width: 768px) and (max-width: 991px) {
    /* Adicione seu código CSS aqui para telas médias */
  }
  
  /* TELAS GRANDES */
  @media only screen and (min-width: 992px) {
    /* Adicione seu código CSS aqui para telas grandes */
  }
  
