* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./assets/fundo-primeira-sessao.avif) center/cover no-repeat;
  z-index: -1;
  animation: kenburns-top 10s ease-out forwards;
}

.hero-content {
  margin-top: 1rem;
  max-width: 800px;
  position: relative;
}

.hero-content h1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.logo {
  width: 50%;
  max-width: 400px;
  height: auto;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 15px 30px;
  margin: 15px;
  background: linear-gradient(135deg, #eb7921, #ffa12e);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.btn:hover {
  transform: scale(1.05);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-dark {
  background: linear-gradient(135deg, #1d334d, #4b5563);
  color: white;
}

.section-orange {
  background: linear-gradient(135deg, #eb7921, #ffa12e);
  color: white;
}

.section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.section p {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.grid {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  color: #333;
}

.card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 3rem;
}

.card img {
  max-width: 5rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #333;
  font-weight: bold;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Images */
.images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.images-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Escoramento Section */
.escoramento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.escoramento-content h2 {
  text-align: left;
  margin-bottom: 30px;
}

.escoramento-content p {
  text-align: left;
  margin-bottom: 30px;
}

.feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  margin-top: 5px;
  color: #f97316;
}

.feature-icon > img {
  max-width: 2rem;
  border-radius: 50px;
}

.feature-content h3 {
  color: white;
  margin-bottom: 5px;
  text-align: left;
}

.feature-content p {
  margin: 0;
  text-align: left;
}

.escoramento-photo img {
  width: 100%;
  border-radius: 10px;
}

/* Cities */
.cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.city-badge {
  background: #133247dd;
  padding: 10px 20px;
  border-radius: 15px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
}

.city-badge img {
  max-width: 1rem;
}

/* Testimonials */
.testimonial {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: #333;
}

.stars {
  color: #f97316;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial h4 {
  color: #f97316;
  margin-bottom: 5px;
}

.testimonial .role {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.testimonial .text {
  font-style: italic;
  line-height: 1.6;
}

/* Contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin: 40px 0;
}

.contact-item {
  text-align: center;
  cursor: pointer;
}

.contact-info a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: block;
}

.contact-icon img {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 10px;
}

.contact-item h3 {
  margin-bottom: 10px;
}

.solicita-orcamento {
  border: none;
  padding: 1.2rem;
  color: #eb7921;
  background-color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.solicita-orcamento:hover {
  cursor: pointer;
  animation: pulsate-bck 0.5s ease-in-out infinite both;
}

/* Footer */
.footer {
  background: #f3f4f6;
  padding: 40px 0;
  text-align: center;
  color: #666;
}

.footer img {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
}

.cvinfinity {
  text-decoration: none;
  font-weight: bold;
  color: #1d334d;
}

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

  .hero p {
    font-size: 1.2rem;
  }

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

  .escoramento {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* Adicionando media query para telas menores (smartphones) */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

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

  .section h2 {
    font-size: 1.8rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .images-grid,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .card,
  .testimonial,
  .contact-item {
    padding: 20px;
  }

  .card-icon {
    font-size: 2.5rem;
  }

  .feature-icon {
    font-size: 1.2rem;
  }

  .cities {
    flex-direction: column;
    align-items: center;
  }

  .city-badge {
    width: 80%;
    margin-bottom: 10px;
  }
}

.keywords-section {
  background: #f3f4f6;
  color: #666;
  padding: 1rem;
}

.keywords-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.keywords-logo img {
  width: 200px;
  height: auto;
}

.keywords-list {
  list-style: none;
  columns: 4;
  column-gap: 30px;
  margin: 0;
  text-align: left;
}

.keywords-list li {
  margin-bottom: 4px;
  break-inside: avoid;
}

.keywords-list li:hover {
  color: #eb7921;
}

@media (max-width: 768px) {
  .keywords-content {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .keywords-list {
    text-align: left;
  }

  .keywords-list {
    columns: 2;
    column-gap: 20px;
  }
}

@media (max-width: 480px) {
  .keywords-list {
    columns: 1;
    text-align: center;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}
/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: #eb7921;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #ffa12e;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffa12e;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.logo-header-cor {
  display: block;
}

.logo-header-sem-cor {
  display: none;
}

.navbar.scrolled .logo-header-cor {
  display: none;
}

.navbar.scrolled .logo-header-sem-cor {
  display: block;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #eb7921;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}
