/*transição suave entre paginas*/

/* Estilo geral da Navbar */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
    position: relative;
    z-index: 1000;
}

html {
  scroll-behavior: smooth;
}

.smooth-scroll {
  cursor: pointer;
}

/* Logo e título da marca */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}
#text{
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;  
}

.navbar-brand span {
    font-weight: 600;
    color: #333;
}

/* Itens da Navbar */
.navbar-nav {
    gap: 1rem;
    background-color: transparent !important;
}

.navbar-nav {
    display: flex;
    justify-content: center; /* Centraliza os itens horizontalmente */
    margin-right: 20%;
    width: 100%; /* Garante que a navbar ocupe toda a largura */
}

.nav-link {
    color: black !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

/* Efeitos de hover e ativo */
.nav-link:hover {
    color: #c62bc9 !important;
    background-color: #c62bc952;
    border-radius: 10px;
}

.nav-link.active {
    color: #c62bc9 !important;
    background-color: #c62bc952 !important;
    font-weight: 600;
    border-radius: 8px !important;
}


/* Botão do menu mobile */
.navbar-toggler {
    border: none;
    border-radius: 8px;
    background-color: #f8f9fa;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background-color: #c62bc952 !important;
    transform: translateY(-2px);
}

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

/* Container da landing page */
.container-landing {
    width: 100%;
    min-height: calc(100vh - 72px); /* Altura total menos a navbar */
    margin: 0;
    padding: 2rem;
    background: linear-gradient(135deg, #c62bc9 0%, rgba(225, 169, 37, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.container-landing h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.container-landing p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Efeitos adicionais */
.btn-primary {
    background-color: white;
    color: #c62bc9;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white;
    background-color: #c62bc9;
}
/* Estilo do contener dos cartões */
.cards {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    background-size: 200% 200%;
    animation: gradientBG 10s ease infinite;
}
#icon{
   width: 80px;
}

.cards2 {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
    background-size: 200% 200%;
    animation: gradientBG 10s ease infinite;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center
}

.container2 {
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #3498db, #9b59b6, #2ecc71);
}

.text2{
    font-size: 2rem;
    font-weight: 700;
    color: rgb(0, 0, 0);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.text3{
    font-size: 2rem;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
/* Animação para o gradiente */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Estilo dos cartões de produtos */
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: rgba(177, 176, 176, 0.9);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

/* Estilo dos ícones */
.card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #000000;
    transition: all 0.3s ease;
}

.card:hover i  {
    transform: scale(1.1);
    color: #000000;
}

.card-body {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.card-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}   

.card .btn {
    background-color: #c62bc9;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
}

.card .btn:hover {
    background-color: #a020a0;
    transform: translateY(-2px);
}

.card2 {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

/* Estilo dos ícones */
.card2 i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #9b59b6;
    transition: all 0.3s ease;
}

.card2:hover i {
    transform: scale(1.1);
    color: #c62bc9;
}

.card2-body {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card2-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.card2-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}   

.card2 .btn {
    background-color: #c62bc9;
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
}

.card2 .btn:hover {
    background-color: #a020a0;
    transform: translateY(-2px);
}

/* Estilos do Footer */
.footer {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  color: #fff;
  padding: 3rem 0 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 0 1.5rem;
}

.footer-column {
  margin-bottom: 2rem;
}

.logo-column {
  text-align: center;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  color: #fff;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #c62bc9;
}

.logo-column .footer-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

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

.footer-list li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-list a {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list a:hover {
  color: #c62bc9;
}

#a:hover {
  color: #c62bc9;
}

.footer-list i, .social-icons i {
  font-size: 1.1rem;
  color: #c62bc9;
}

.footer-description {
  color: #bdc3c7;
  line-height: 1.6;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.social-icon {
  color: white;
  font-size: 1.8rem;
  transition: transform 0.3s, color 0.3s;
}

.social-icon:hover {
  color: #c62bc9;
  transform: translateY(-3px);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #bdc3c7;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-list {
    justify-content: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* Layout responsivo */
@media (max-width: 991.98px) {
    .navbar-collapse {
        border-top: 1px solid #ddd;
        margin-top: 10px;
        padding-top: 10px;
    }
    
    .navbar-nav {
        width: 100%;
        text-align: center;
    }
}

@media(max-width: 455px) {
    #text {
        display: none;
    }
}