/* Estilos globais */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background-color: #1a1a1a;
  color: white;
  padding: 2rem;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  font-weight: 900;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

/* Navegação */
nav {
  background-color: #333;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 700;
}

/* Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem;
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
}

/* Call to Action */
.cta {
  background-color: #4caf50;
  padding: 1rem 2rem;
  color: #1a1a1a;
  font-weight: bold;
  border-radius: 10px;
  margin-top: 2rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta:hover {
  background-color: #ffa200;
}

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 4rem 2rem;
  background-color: white;
}

.feature {
  text-decoration: none;
  color: inherit;
  display: block;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 10px;
  transition: background 0.3s;
}

.feature:hover {
  background: #fff5e6;
}

.feature h3 {
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 3rem;
  font-weight: 700;
}

.testimonials-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-width: 350px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonial-header i {
  color: #4caf50;
}

.testimonial-header strong {
  font-size: 1.1rem;
  color: #333;
}

.testimonial-header p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

.testimonial-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.testimonial-rating {
  font-size: 1.2rem;
  color: #f4c150; /* Estilo estrela dourada */
}


/* Sessões */
.portfolio, .about, .contact {
  padding: 4rem 2rem;
  background-color: #fff;
}

.portfolio h2, .about h2, .contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.about ul {
  max-width: 700px;
  margin: auto;
  list-style: none;
}

.about li {
  margin-bottom: 1rem;
}

/* Contato */
.contact form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact button {
  padding: 1rem;
  background-color: #4caf50;
  color: #1a1a1a;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  padding: 1rem;
  font-size: 1.5rem;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: white;
  text-align: center;
  padding: 2rem;
  position: relative; /* para evitar problemas de stacking */
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

footer a {
  color: #4caf50;
  text-decoration: none;
  margin: 0 10px;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #4caf50;
}

.social-icons {
  display: flex;
  gap: 20px;
}

/* Header Logo */
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  background-color: #080808;
  border-bottom: 2px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  gap: 0.5rem;
}

.header-logo .logo {
  width: 70px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-logo .header-text {
  text-align: center;
}

.header-logo .header-text h1 {
  margin: 0;
  font-size: 2rem;
  color: #f7f4f4;
  font-weight: 900;
}

.header-logo .header-text p {
  margin: 0;
  font-size: 1rem;
  color: #666;
}


/* Carrossel em tela cheia horizontal */
.carousel-container {
  position: relative;
  width: 100%;
  height: 500px; /* pode usar 100vh se quiser altura da tela */
  margin: 0 auto;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

.carousel-item {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* imagem cobre o espaço sem deformar */
}

/* Legenda opcional */
.caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 15px 20px;
  font-size: 18px;
  box-sizing: border-box;
}

/* Botões de navegação */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
}

.prev { left: 15px; }
.next { right: 15px; }



.caption a {
  text-decoration: none; /* remove sublinhado */
  color: inherit;        /* mantém a cor do texto normal */
  cursor: pointer;       /* muda o cursor para mãozinha ao passar */
  transition: color 0.3s;
}

.caption a:hover {
  color: #2a9d8f; /* ou outra cor que combine com seu site */
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4caf50;
  border: none;
  padding: 0.7rem 1rem;
  cursor: pointer;
  z-index: 2;
  color: white;
  font-size: 1.2rem;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: #e6a200;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

/* Reels */
.reel-section {
  padding: 60px 20px;
  text-align: center;
  background: #f9f9f9;
}

.reel-section h2 {
  margin-bottom: 20px;
  color: #203a43;
  font-size: 2rem;
}
.about-container {
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 2rem;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.about-card {
  flex: 1 1 300px;
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-icon {
  font-size: 2rem;
  color: #4caf50;
}

.about-subtitle {
  margin-bottom: 0.5rem;
}

.about-text {
  color: #444;
}

/* Media Queries */

/* Celulares */
@media (max-width: 600px) {
  header h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  nav {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .contact form {
    width: 100%;
    padding: 0 1rem;
  }

  .carousel-container {
    max-width: 90%;
  }

  .header-logo .logo {
    width: 50px;
  }

  .header-logo .header-text h1 {
    font-size: 1.5rem;
  }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero h2 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.midia-portfolio-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
}

.portfolio-center {
  text-align: center;
}
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: auto;
  padding: 20px 0;
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.carousel-item {
  flex: 0 0 auto;
  width: 100%;
  max-width: 500px;
  height: 400px; /* 🔹 Ajuste aqui para aumentar o container */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* 🔹 Mantém a proporção da imagem sem esticar */
}

.caption {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  background: #631010;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  color: #7a5a5a;
  padding: 12px;
  cursor: pointer;
  font-size: 18px;
  z-index: 1;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.7);
}


.container-3-colunas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  align-items: center;
  text-align: center;
}

.video-reel video {
  width: 280px;
  height: auto;
  aspect-ratio: 9/16;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}


.botao-verde {
  display: inline-block;
  background-color: #1d8348;
  color: white;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.botao-verde:hover {
  background-color: #145a32;
}


/* Telas grandes */
@media (min-width: 1280px) {
  .hero h2 {
    font-size: 3rem;
  }

  .features {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonial {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta {
    width: 100%;
    text-align: center;
    padding: 1rem;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .carousel-item {
    height: 300px;
  }

  .carousel-item img {
    height: 240px;
  }

  .contact form {
    padding: 0 1rem;
  }

  .header-logo .logo {
    width: 50px;
  }

  nav {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
  }
}

.mapa-localizacao {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}
.mapa-localizacao iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}
/* Parallax Container */
.parallax {
  background-image: url("../img/colchao_1.jpeg"); /* ajuste a imagem de fundo */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* escurece o fundo para dar contraste ao texto */
  z-index: 1;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.parallax-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.parallax-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.parallax-content .cta {
  display: inline-block;
  padding: 12px 25px;
  background-color: #00a86b; /* verde */
  color: white;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.parallax-content .cta:hover {
  background-color: #007f51; /* verde escuro */
}


/* Animação suave */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Botão de voltar ao topo */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  background-color: #333;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  transition: background 0.3s;
}
.back-to-top:hover {
  background-color: #555;
}

/* Botão fixo do WhatsApp */
.whatsapp-fixo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  color: #fff;
  padding: 12px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.whatsapp-fixo:hover {
  background-color: #1ebe5d;
}

