
.container-footer{
	max-width: 1170px;
	margin:auto;
}
.row-footer{
	display: flex;
	flex-wrap: wrap;
}
footer ul{
	list-style: none;
}
.footer{
	background-color: #24262b;
    padding: 30px 0;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
	display: inline-block;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #e91e63;
	height: 2px;
	box-sizing: border-box;
	width: 100%;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: inline-block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a {
	display: inline-flex; /* flex em vez de block para alinhar o conteúdo */
	justify-content: center; /* horizontal */
	align-items: center; /* vertical */
	height: 40px;
	width: 40px;
	background-color: rgba(255, 255, 255, 0.2);
	margin: 0 10px 10px 0;
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.5s ease;
	text-decoration: none;
}

.footer-col .social-links a svg {
	width: 20px;
	height: 20px;
	display: block; /* remove espaços extras abaixo do SVG */
}

.footer-col .social-links a:hover{
	color: #24262b;
	background-color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #6a67677b;
  margin-top: 40px;
  padding-top: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.footer-bottom a {
  color: #bbbbbb;
  text-decoration: underline;
}

.footer-bottom p {
  color: #bbbbbb;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #797c9d;
}

.footer-logo {
  width: 30px;
  vertical-align: middle;
  margin-right: 10px;
}

.footer-description {
  color: #bbbbbb;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 75%;
}


/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer{
    padding-bottom: 80px;
  }
  .footer-col{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%; /* garante que ocupe toda a largura */
    padding: 0;
    margin: 0 auto;
  }

  .footer-col .social-links a {
    margin: 5px; /* evita espaçamento desigual */
  }
}

/* Seção Sobre Nós */
.about-section {
  background: linear-gradient(to bottom, var(--color-background), var(--color-background2));
  background-size: cover;
  color: var(--color-text-light);
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  background-color: var(--color-light-bg);
  padding: 30px;
  border-radius: 8px;
  text-align: center;
    box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.1),
    0 6px 10px rgba(202, 186, 255, 0.23),
    0 0 20px rgba(202, 186, 255, 0.14);
}

.value-item h3 {
  color: var(--color-footer); /* Títulos */
  margin-bottom: 10px;
}

.value-item p,
.value-item ul li {
  color: var(--color-footer); /* Parágrafos e itens */
}

.value-item ul {
  list-style: none;
  padding-left: 0;
}

.about-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.about-highlight img {
  max-width: 600px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  flex: 1 1 300px;
}


.about-text {
  flex: 1 1 300px;
  color: var(--color-text-light2);
  text-align: center;
}

.about-text h3 {
  color: var(--color-text-light); /* Título */
  margin-bottom: 10px;
}

.about-text p {
  color: var(--color-text-light2); /* Parágrafo */
}

@media (max-width: 831px) {
  .about-highlight {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }
}

@media (min-width: 831px) {
.about-text {
  flex: 1 1 300px;
  color: var(--color-text-light2);
  text-align: left;
}
.about-highlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 120px;
}
}
.ws-benefits-section {
  background-color: #181818 !important;
  color: #fff;
  padding: 60px 20px;
  font-family: 'Inter', sans-serif;
}

.ws-benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ws-benefits-title {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--color-light-bg);
}

.ws-benefits-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  cursor: default;
  user-select: none;
}

.ws-benefits-card {
  background-color: var(--color-footer);
  flex: 1 1 300px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.ws-benefits-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.ws-benefits-heading {
  font-size: 1.2em;
  margin-bottom: 15px;
  color: #fff;
}

.ws-benefits-text {
  font-size: 1em;
  line-height: 1.6;
  color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
  .ws-benefits-cards {
    flex-direction: column;
    align-items: center;
  }

  .ws-benefits-card {
    width: 100%;
    max-width: 400px;
  }

  .ws-benefits-title {
    font-size: 1.8em;
  }
}

@media (min-width: 1000px) {
    .ws-benefits-card:hover {
    transform: translateY(-5px);
}
}
/* Seção com imagem + filtro escuro + parallax */
.ws-hero-parallax {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/paradax.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Conteúdo centralizado */
.ws-hero-content {
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.ws-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.ws-hero-content h2 span {
  font-size: 1.8rem;
  color: #ff4f73;
  font-weight: 500;
}

.ws-hero-content p {
  font-size: 1.1rem;
  margin-top: 20px;
  line-height: 1.6;
  color: #ddd;
}

/* Botão estilizado */
.ws-hero-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 30px;
  background: linear-gradient(135deg, #007bff, #0056d2);
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ws-hero-btn:hover {
  background: linear-gradient(135deg, #0056d2, #0040a8);
  transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 768px) {
  .ws-hero-content h1 {
    font-size: 2rem;
  }

  .ws-hero-content h2 span {
    font-size: 1.4rem;
  }

  .ws-hero-content p {
    font-size: 1rem;
  }

  .ws-hero-btn {
    font-size: 0.95rem;
    padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  .ws-hero-content h1 {
    font-size: 1.4rem;
  }

  .ws-hero-content h2 span {
    font-size: 1.1rem;
  }

  .ws-hero-btn {
    width: 100%;
    max-width: 300px;
  }
}
.services-section {
  padding: 80px 20px;
  background-color: var(--color-background2);
}

.services-section h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 60px;
  letter-spacing: 1px;
}


.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card-service {
  background-color: var(--color-secondary);
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  user-select: none;
}



.card-service .icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.card-service h3 {
  font-size: 1.3rem;
  color: var(--color-light-bg);
  margin-bottom: 10px;
}

.card-service p {
  font-size: 0.95rem;
  color: var(--color-text-light2);
  line-height: 1.5;
}

@media (max-width: 480px){
  .services-section h2 {
    font-size: 1.5em;
  }
}

@media (min-width: 1000px){
.card-service .icon,
.card-service h3,
.card-service p {
  transition: 0.3s;
}

.card-service:hover .icon,
.card-service:hover h3,
.card-service:hover p {
  transform: scale(1.12);
}
}
.contact-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 1100px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  box-shadow: 
  8px 12px 24px rgba(0, 0, 0, 0.25),
  0 0 22px rgba(0, 0, 0, 0.25);
  z-index: 9;
}

.contact-form {
  background-color: #2c2f63;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #60638d);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #2c2f63;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #fff;
  border: 2px solid #fafafa;
  font-size: 0.95rem;
  color: #2c2f63;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #2c2f63;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}


.contact-info .title {
  color: #2c2f63;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.contato-info .info {
  text-align: left;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.information strong {
  color: #2c2f63; /* Cor de destaque para o rótulo */
  font-weight: 600;
  margin-right: 5px;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
  display: flex;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: linear-gradient(45deg, #2c2f63, #070e50);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}
.social-icons a svg {
  font-size: 16px;
  width: 16px;
  height: 16px;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #2c2f63;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
    .info {
    margin-top: 50px;
  }
}

@media (max-width: 480px) {
  .contact-info:before {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem
  }

  .title {
    font-size: 1.7rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  
  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

@media (min-width: 850px) {
    .info {
    margin-top: 90px;
}
}
.accordion-section {
  background-color: #181818 ;
  color: #b6b6b6;
  font-size: 16px;
  font-family: 'Roboto', sans-serif;
  padding: 3rem 0;
}
.accordion-section h3 {
    font-size: 1rem;
}

.accordion-container {
  width: 96%;
  max-width: 1100px;
  margin: 0 auto;
}

.accordion-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.accordion {
  margin-top: 2rem;
}

.accordion__title {
  padding: 0.8rem 1rem;
  background-color: var(--color-footer);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -1px 0 #000000 inset;
  cursor: pointer;
  transition: background-color 0.3s;
}

.accordion__title i {
  float: right;
  transition: transform 0.3s;
}

.accordion__title.active i {
  transform: rotate(90deg);
}

.accordion__content {
  padding: 0 1rem;
  line-height: 0;
  background-color: #323436;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s;
}

.accordion__content.active {
  background-color: #454956;
  padding: 1rem;
  line-height: 1.4;
  opacity: 1;
}

@media (min-width: 769px) {
  .accordion__title:hover,
  .accordion__title.active {
  background-color: #1f2023;
}
}
/* Seção Projetos*/
.projects-section {
    background-color: var(--color-light-bg);
}

.projects-section h2{
    font-size: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background-color: var(--color-text-light);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.project-card h3 {
    color: var(--color-primary);
    padding: 15px 20px 0;
    font-size: 1.4em;
}

.project-card p {
    padding: 0 20px 15px;
    font-size: 0.9em;
    color: var(--color-text-dark);
}

.project-link {
    display: inline-block;
    background-color: var(--color-tertiary);
    color: var(--color-text-light);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.project-link:hover {
    background-color: var(--color-secondary);
}

@media (max-width: 480px){
  .projects-section h2 {
    font-size: 1.5em;
  }
}
.ws-avaliacoes-clientes {
  background: linear-gradient(to bottom, #f0f4ff, #ffffff);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}


.ws-titulo-avaliacoes {
  font-size: 28px;
  color: #1c1c1c;
  margin-bottom: 40px;
}


.ws-blocos-avaliacoes {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.ws-depoimento {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
}


.ws-estrelas {
  color: #f6b400;
  font-size: 18px;
  margin-bottom: 10px;
}


.ws-frase {
  font-style: italic;
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
  position: relative;
}

.ws-frase::before,
.ws-frase::after {
  content: '"';
  color: #ccc;
  font-size: 18px;
}


.ws-autor {
  font-weight: bold;
  font-size: 14px;
  color: #1c1c1c;
}

@media (min-width: 768px) {
  .ws-blocos-avaliacoes {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ws-depoimento:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
}
