/*especiais REDES SOCIAIS*/
.parent {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .child {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: all 0.3s cubic-bezier(0.68, 0.85, 0.265, 1.85);
    border-radius: 5px;
    margin: 0 5px;
    box-shadow:
      inset 1px 1px 2px #fff,
      0 0 5px #4442;
  }
  
  .child:hover {
    background-color: white;
    background-position:
      -100px 100px,
      -100px 100px;
    /*transform: rotate3d(0.5, 1, 0, 30deg);*/
    transform: perspective(180px) rotateX(60deg) translateY(2px);
  }
  
 
  .child-2:hover {
    box-shadow: 0px 10px 10px #ff00ff;
  }
  .child-4:hover {
    box-shadow: 0px 10px 10px #4267b2;
  }
  
  .button {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    background-color: transparent;
    font-size: 20px;
    transition-duration: 0.5s;
    transition-timing-function: cubic-bezier(0.68, -0.85, 0.265, 1.55);
  }
  
  .child:hover > .button {
    transform: translate3d(0px, 20px, 30px) perspective(80px) rotateX(-60deg)
      translateY(2px) translateZ(10px);
  }
  /*****************************************/

/*LOADING*/

/* From Uiverse.io by Shoh2008 */ 
.loader {
  width: 120px;
  height: 150px;
  background-color: #f01515;
  background-repeat: no-repeat;
  background-image: linear-gradient(#ddd 50%, #bbb 51%),
    linear-gradient(#ddd, #ddd), linear-gradient(#ddd, #ddd),
    radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%),
    radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%),
    radial-gradient(ellipse at center, #aaa 25%, #eee 26%, #eee 50%, #0000 55%);
  background-position: 0 20px, 45px 0, 8px 6px, 55px 3px, 75px 3px, 95px 3px;
  background-size: 100% 4px, 1px 23px, 30px 8px, 15px 15px, 15px 15px, 15px 15px;
  position: relative;
  border-radius: 6%;
  animation: shake 3s ease-in-out infinite;
  transform-origin: 60px 180px;
}

.loader:before {
  content: "";
  position: absolute;
  left: 5px;
  top: 100%;
  width: 7px;
  height: 5px;
  background: #aaa;
  border-radius: 0 0 4px 4px;
  box-shadow: 102px 0 #aaa;
}

.loader:after {
  content: "";
  position: absolute;
  width: 95px;
  height: 95px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 20px;
  background-color: #bbdefb;
  background-image: linear-gradient( to right, #0004 0%, #0004 49%, #0000 50%, #0000 100% ),
    linear-gradient(135deg, #64b5f6 50%, #607d8b 51%);
  background-size: 30px 100%, 90px 80px;
  border-radius: 50%;
  background-repeat: repeat, no-repeat;
  background-position: 0 0;
  box-sizing: border-box;
  border: 10px solid #DDD;
  box-shadow: 0 0 0 4px #999 inset, 0 0 6px 6px #0004 inset;
  animation: spin 3s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg)
  }

  50% {
    transform: rotate(360deg)
  }

  75% {
    transform: rotate(750deg)
  }

  100% {
    transform: rotate(1800deg)
  }
}

@keyframes shake {
  65%, 80%, 88%, 96% {
    transform: rotate(0.5deg)
  }

  50%, 75%, 84%, 92% {
    transform: rotate(-0.5deg)
  }

  0%, 50%, 100% {
    transform: rotate(0)
  }
}
/*/////////////////////////////////////*

/*cabeçalho*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
    
    body {
        background: url('background.jpg') no-repeat center center fixed;
        background-size: cover;
        font-family: Arial, sans-serif;
    }
    
    .header-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    .logo {
        width: 100px; /* Define a largura desejada */
        height: 100px; /* Define a altura igual à largura para manter proporção 1:1 */
        object-fit: cover; /* Garante que a imagem cubra o espaço sem distorção */
        border-radius: 50%; /* Arredonda a imagem em um círculo perfeito */
        margin-bottom: 50px;
        border: 4px solid #cf485a; /* Borda sólida de 4px na cor especificada */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Sombra suave */
    }
    
    .logo:hover {
        transform: scale(1.1);
    }
    
    .pulse {
        font-family: 'Poppins', sans-serif;
        font-size: 28px;
        color: #2a9d8f;
        animation: pulse 1.5s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
        }
    }
    
    nav ul {
        display: flex;
        justify-content: center;
        padding: 0;
        list-style: none;
        background: rgba(42, 157, 143, 0.9);
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    nav ul li {
        margin: 0 15px;
    }
    
    nav ul li a {
        text-decoration: none;
        font-size: 18px;
        padding: 10px 15px;
        border-radius: 5px;
        color: white;
        transition: all 0.3s ease-in-out;
        display: inline-block;
    }
    
    nav ul li a:hover {
        background-color: #d61c1c;
        color: white;
        transform: scale(1.2);
    }

/*corpo do site*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #007bff;
    color: white;
    padding: 15px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 20px;
    background: white;
    margin: 20px;
    border-radius: 5px;
}

footer {
    text-align: center;
    padding: 10px;
    background: #007bff;
    color: white;
    margin-top: 20px;
}

/*bem vindo*/
.welcome-title {
    text-align: center;
    font-size: 26px;
    color: #2a9d8f;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 1.5s ease-in-out;
}

.welcome-text {
    text-align: center;
    font-size: 18px;
    color: #444;
    margin: 15px auto;
    max-width: 700px;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    animation: slideUp 1.2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/*quem somos*/

.section-title {
    text-align: center;
    font-size: 26px;
    color: #2a9d8f;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 1.5s ease-in-out;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 20px auto;
}

.about-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: slideIn 1.2s ease-in-out;
}

.about-text {
    max-width: 500px;
    font-size: 18px;
    color: #444;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.social-icons {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    font-size: 16px;
    color: #ff006e;
    transition: all 0.3s ease-in-out;
}

.social-icons a:hover {
    color: #2a9d8f;
    transform: scale(1.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/*serviços*/
.section-title {
    text-align: center;
    font-size: 26px;
    color: #2a9d8f;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 1.5s ease-in-out;
    margin-bottom: 20px;
}

.service-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px;
}

.service {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service:hover {
    transform: scale(1.03);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-image {
    width: 45%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-text {
    width: 50%;
    font-size: 18px;
    color: #444;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}












































/*FORMULARIO DO CADASTRE-SE*/

/* Estilo geral para os planos */
#plans {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plans-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.plan {
  flex: 1;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.plan:hover {
  transform: scale(1.05); /* Efeito de hover */
}

h3 {
  color: #3498db;
}

p {
  color: #34495e;
}

button {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #3498db;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9; /* Cor do botão quando hover */
}