/* Reset CSS */
/* 47 991018830 Num */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
  text-decoration: none;
}

:root {
  --cor-primaria: #f8f9fa;
  --cor-secundaria: #bb9ea9;
  --cor-destaque: #ff85c0;
  --cor-texto: #4a4a4a;
  --primary-color: #4a6fa5;
  --secondary-color: #f8f9fa;
  --text-color: #333;
  --light-gray: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --border-color: #e9ecef;
}
.imgIndex{
  width: 100%;
  max-height: 600px;
}

#loginContainer {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background-color: #f5f7fa;
  display: flex;
  justify-content: center;
  align-items: center;
  /* min-height: 100vh; */
  margin: 0;
  padding: 20px;
}

#loginBtn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

#loginBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

#loginBtn:active {
  transform: translateY(0);
}

#loginCard {
  display: none;
  width: 100%;
  max-width: 450px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 32px;
  margin-top: 24px;
  animation: fadeIn 0.4s ease-out;
  position: relative;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#loginHeader {
  text-align: center;
  margin-bottom: 24px;
}

#loginTitle {
  color: #2b2d42;
  margin: 0;
  font-size: 24px;
}

#loginSubtitle {
  color: #6c757d;
  margin: 8px 0 0;
}

#loginForm {
  display: flex;
  flex-direction: column;
}

#emailGroup, #passwordGroup {
  margin-bottom: 20px;
}

#emailLabel, #passwordLabel {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2b2d42;
}

#emailInput, #passwordInput {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
}

#emailInput:focus, #passwordInput:focus {
  outline: none;
  border-color: #4361ee;
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

#submitBtn {
  padding: 14px;
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
}

#submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#closeLoginBtn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6c757d;
  transition: all 0.3s ease;
}

#closeLoginBtn:hover {
  color: #2b2d42;
}

#forgotPassword {
  text-align: right;
  margin-top: -15px;
  margin-bottom: 20px;
}

#forgotPasswordLink {
  color: #4361ee;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

#forgotPasswordLink:hover {
  text-decoration: underline;
}

.container{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}


.btn-abrirConta {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-abrirConta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.btn-abrirConta:active {
  transform: translateY(0);
}

.btn-abrirConta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.btn-abrirConta:hover::after {
  left: 100%;
}

.registration-card {
  display: none;
  width: 100%;
  max-width: 800px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 32px;
  margin-top: 24px;
  animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.card-header {
  text-align: center;
  margin-bottom: 24px;
}

.card-header h2 {
  color: var(--text-color);
  margin: 0;
  font-size: 24px;
}

.card-header p {
  color: #6c757d;
  margin: 8px 0 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.document-type {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.document-option {
  flex: 1;
  position: relative;
}

.document-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.document-label {
  display: block;
  padding: 12px;
  background: var(--light-color);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.document-option input[type="radio"]:checked + .document-label {
  border-color: var(--primary-color);
  background-color: rgba(67, 97, 238, 0.1);
  color: var(--primary-color);
}

.document-option input[type="radio"]:focus + .document-label {
  box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 16px;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.close-btn {
  position: relative;
  top: 0px;
  left: 700px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6c757d;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--text-color);
}



body {
  background-color: var(--cor-primaria);
  color: var(--cor-texto);
}

/* Header */
header {
  background: white;
  /* padding: 1rem ; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  display:flex ;
  gap: 30px;
  padding-right: 20px;
  flex-direction: row;
  width: 100%;
  top: 0;
  z-index: 2000;
  align-items: center;
  
}

.logo {
  opacity: 1;
  padding-left: 1dvw;
  /* margin-right: 40%; */
  width: 200px;
  height: 150px;
}


/* Menu Lateral */
.sidebar {
  position: fixed;
  left: -250px;
  top: 150px;
  width: 250px;
  height: 100%;
  background: white;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  padding-top: 60px;
  z-index: 2000;
}
.iconeIndiviual{
  display: flex;
  text-align: center;
  justify-content: end;
  align-items: center;
  margin-bottom: 20px;
  background-color: rgba(116, 107, 107, 0.507);
  box-shadow: 14px 10px 7px rgba(0, 0, 0, 0.1);
  border-radius:2px 10px 2px 10px ;
  width: 100%;
  height: 60px;
}
.iconeIndiviual img{
  width: 60px;
  height: 60px;
}

.sidebar.active {
  left: 0;
}

.sidebar nav a {
  display: block;
  padding: 1rem;
  color: var(--cor-texto);
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
svg{
  
  left: -15px;
}



.sidebar nav a:hover {
  background: var(--cor-secundaria);
}

/* Conteúdo Principal */
main {
  margin-top: 250px;
  align-items: center;
  padding: 2rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 1rem;
  background-color: white;
  border-radius: 5px;
  margin-bottom: 2rem;
}

.bolinha{
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid black;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.664);
}
.preto{
  background-color: black;
}
.hero h1 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: rgba(184, 126, 28, 0.89);
  text-align: start;
}


.hero p {
  font-size: 1.6rem;

}
.product1{
  display: flex;
  flex-direction: column;
}
.login-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin: 10px 0px;
  
  background-color: var(--primary-color);
  color: var(--text-color);
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-decoration: none;
  height: 5dvh;
}

.login-btn:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.login-btn:active {
  background-color: var(--active-color);
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: var(--transition);
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn i {
  margin-right: 10px;
  font-size: 18px;
}

/* Versão alternativa com gradiente */
.login-btn.gradient {
  background: linear-gradient(135deg, #4361ee, #3a0ca3);
}

.login-btn.gradient:hover {
  background: linear-gradient(135deg, #3a56d4, #2e0785);
  color: white;
}

/* Versão outline */
.login-btn.outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.login-btn.outline:hover {
  background: var(--primary-color);
  color: white;
}
 /* Versão outline */
 .login-btn.outline.register {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.login-btn.outline.register:hover {
  background: var(--primary-color);
  color: var(--text-color);
}

/* Grid de Produtos */
.produtos-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.produto-card1 {
  background: white;

  width: 85dvw;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.produto-card1:hover {
  transform: translateY(-5px);
}
/* 
.produto-card img {
  width: 100%;
  height: 60dvh;
  object-fit: cover;
} */

.produto-info {
  padding: 1rem;
}

/* Barra de Pesquisa */
.search-box {
  position: relative;
  
  margin: 0px auto 2rem auto;

}

.search-input {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--cor-secundaria);
  border-radius: 25px;
  outline: none;
}

/* Menu Mobile */
.menu-toggle {
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  left: 1rem;
  top: 0.9rem;
}
.text-slider-container {
  position: absolute;
  right: 0;
  width: 100dvw;
  top: 180px;
  height: 250px;
  overflow: hidden;
  background-color: white;
  background-image: url("/assets/ambientacao/IMG-20250808-WA0010.jpg");
  background-repeat: no-repeat;
  background-position:right top;
  background-size:100% 230%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.text-slide {
  position: absolute;
  width: 40%;
  height: 50%;
  bottom: 0px;
  left: 250px;
  background-color: rgba(150, 147, 147, 0.63);
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding: 20px;
}

.text-slide.active {
  opacity: 1;
}

.text-slide h2 {
  width: 100%;
  margin-left: 255px;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 300;
}

.icon {
  width: 24px;
  height: 24px;
  margin-right: 12px;
  margin-left: 90%;
  position: absolute;
}

.text-slide p {
  width: 100%;
  margin-left: 255px;
  color: #ffffff;
  font-size: 1.2rem;
  max-width: 600px;
}
/* Estilos do Botão do WhatsApp */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  
}

.whatsapp-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  position: relative;
}

.whatsapp-link:hover {
  background-color: #128c7e;
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-link i {
  color: white;
  font-size: 32px;
}

.tooltip {
  position: absolute;
  right: 75px;
  top: 90%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.whatsapp-btn:hover .tooltip {
  opacity: 0;
  visibility: visible;
  right: 85px;
}

/* Efeito de onda ao clicar */
.whatsapp-link:active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  animation: ripple 0.6s ease-out;
}
video{
  width: 70dvw; 
  height: 400px;

}

.horizontal{
  margin-top: 20px;
  height: 20dvh;
  width: 80dvw;
  border-radius: 1px;
}

.group{
  flex-direction: row;
}

.imgHorizontal{
  object-fit: contain;
  /* height: 100px; */
}
.imgRedi{
  /* border: 1px solid black; */
  border-radius: 8px;
  width: 90%;
  /* height: 80dvh; */
  object-fit: cover;
}


@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 1;
  }
  to {
    transform: scale(2);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-btn {
    bottom: 20px;
    right: 20px;
  }

  .imgRedi{
  /* border: 1px solid black; */
  border-radius: 8px;
  width: 100%;
  }
  .whatsapp-link {
    width: 50px;
    height: 50px;
  }

  .whatsapp-link i {
    font-size: 28px;
  }

  .tooltip {
    display: none;
  }
  .hero p {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .imgIndex{
    height: 200px;
  }
  video{
    width: 80dvw; 
    height: 25dvh;
  }
  .text-slide h2 {
    font-size: 1.8rem;
    margin: 0 auto;
    width: 100%;
    
  }

  
  .produto-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }


    .imgHorizontal{
    object-fit: contain; 
    /* height: 100px; */
  }


  .text-slide p {
    font-size: 1rem;
    margin: 0 auto;
    
  }

  .text-slide {
   width: 100%;
   left: 0;
   height: 40%;
   background-color: rgba(143, 138, 138, 0.418);
  }

  .text-slider-container {
    /* height: 180px; */
    width: 100dvw;
    top: 130px;
    background-size: 100% 100%;

  }
  li a{
    font-size: small;
    height: 6dvh;
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .search-input{
    display: none;
  }
  .produto-card{
    width: 100%;
  }
  .slide{
    width: 100dvw;
  }
  .logo{
    margin-left: 15px;
    margin-right: 0px;
    width: 170px;
    height: 100px;
  }
  .login-btn{
    width: 40dvw;
  }
  .group{
    flex-direction: column;
  }
}

@media (min-width: 768px) {
  .sidebar {
    left: 0;
  }
  main {
    margin-left: 250px;
  }
  .menu-toggle {
    display: none;
  }
  .logo{
    margin-left: 20px;

  }





}
