/* Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 1rem;
}

/* Header */
header {
  background: linear-gradient(90deg, #13598c, #00BFFF, #13598c);
  color: white;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.logo {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Mobile Navigation */
.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: #ffffff;
  text-shadow: 1px 1px 2px #000000;
  font-size: 3rem;
  cursor: pointer;
}

.desktop-nav {
  display: none;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100vh;
  transition: left 0.3s ease;
  z-index: 1001;
  padding: 2rem 1rem;
  overflow-y: auto;
}

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

.mobile-nav ul {
  margin-top: 2rem;
  list-style: none;
}

.mobile-nav li {
  margin-bottom: 1rem;
}

.mobile-nav a {
  display: block;
  padding: 12px 16px;
  color: #13598c;
  font-weight: bold;
  background: linear-gradient(90deg, #cccccc, #ffffff, #cccccc);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.mobile-nav a:hover {
  background: linear-gradient(90deg, #13598c, #00BFFF);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.banner-slides {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  position: relative;
  z-index: 2;
}

.banner-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-align: center;
  width: 90%;
  font-size: 0.9rem;
}

/* Sections Titles */
.intro h2,
.services-overview h2,
.additional-services h2 {
  color: #13598c;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.intro .subtitle {
  color: #00BFFF;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

/* Grids */
.features-grid,
.services-grid,
.guarantee-grid,
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}



/* service Card */

.service-card{

  background: linear-gradient(90deg,  #ffffff, #bfddff, #ffffff);
  padding: 1.5rem;
 
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Cards */
.feature-card,
.guarantee-item,
.value-card {
  background: linear-gradient(90deg, #cccccc, #ffffff, #cfcfcf);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.service-card:hover,
.guarantee-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.feature-card i,
.service-card i,
.guarantee-item i {
  font-size: 2rem;
  color: #13598c;
  margin-bottom: 1rem;
}

.guarantee-item:hover {
  background: linear-gradient(90deg, #13598c, #00BFFF);
  color: white;
}

.guarantee-item i:hover {
  color: #ffffff;
}

.learn-more {
  color: #00BFFF;
  font-weight: bold;
  display: inline-block;
  margin-top: 1rem;
}

/* About Section */
.about-text {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background-color: #fff;
  margin-top: 1rem;
}

.about-text p {
  text-align: justify;
}

/* CTA */
.cta {
  margin-top: 2rem;
  background: radial-gradient(ellipse at center, #13598c 50%, #00BFFF 100%);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  color: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.cta h3 {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #cccccc, #ffffff, #cccccc);
  color: #13598c;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
  transition: background 0.3s ease;
  text-shadow: 2px 2px 2px #ffffff;
}

.cta-button:hover {
  background: linear-gradient(90deg, #13598c, #00BFFF, #13598c);
  color: #ffffff;
  text-shadow: 2px 2px 2px #000000;
}

/* Services Page */
.services {
  padding: 2rem 1rem;
  background-color: #f9f9f9;
}

.services h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #13598c;
  margin-bottom: 2rem;
}

.service-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.service-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.service-icon i {
  font-size: 2rem;
  color: #13598c;
  background-color: #e6f0f8;
  padding: 1rem;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-content h3 {
  font-size: 1.3rem;
  color: #13598c;
  margin-bottom: 0.5rem;
  text-align: center;
}

.service-content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  text-align: center;
}

/* Contacts Page */
.contact-content {
  background: #f7f9fb;
  padding: 2rem 1rem;
}

.contact-flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info,
.contact-form {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  padding: 1.5rem;
}

.contact-info h2,
.contact-form h2 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: #13598c;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-item i {
  color: #13598c;
  font-size: 1.2rem;
  padding-top: 0.3rem;
}

.map-container {
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #00BFFF;
  outline: none;
}

.submit-btn {
  background: linear-gradient(90deg, #13598c, #00BFFF);
  color: white;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #00A0E0;
}

/* Footer */
footer {
    font-size: 18px;
  background: linear-gradient(90deg, #13598c, #00BFFF, #13598c);
  color: white;
  margin-top: 12px;
 text-shadow:
    -1px -1px 0 #13598c,
     1px -1px 0 #13598c,
    -1px  1px 0 #13598c,
     1px  1px 0 #13598c;
  font-weight: bold;
  width: 100%;
  margin-inline: auto;

  text-align: center;
  padding: 0px;
}

.footer-content {
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0px;
  border-top: 0px solid #aaa;
}

.footer-section {
  flex: 1 1 100%;
  text-align: center;
  padding: 0px;
  width: 100%;
}

.footer-logo {
      padding: 0px;
  width: 120px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 2px #000);
}

.footer-section h3 {
  margin-bottom: 1rem;
  color: white;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: white;
}

/* Menu horizontal no footer - removendo bolinhas e alinhando */
.footer-section ul {
  list-style-type: none; /* Remove as bolinhas */
  margin: 1px; /* Remove margem padrão */
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: linear-gradient(90deg, #cccccc, #ffffff);
   font-weight: bold;
   
 border-radius: 10px;
  text-shadow: 1px 1px 1px #ffffff;
  padding: 20px;    /* altura - topo */
}  

.footer-section ul li {
  display: inline-block; /* Garante que os itens fiquem em linha */
}

.footer-section a {
      width: 100%;
     font-size: 16px;
 color:#13598c;
  text-decoration: none;
  font-weight: normal;
  text-shadow: 2px 2px 2px #ffffff;
}

.footer-section a:hover {
  text-decoration: underline;
  color: #13598c;
}

.footer-bottom {
  padding: 1rem 0;
  border-top: 1px solid #aaa;
   background: linear-gradient(90deg, #13598c, #0c3a5c);
     font-size: 15px;

} 

/* Miscellaneous */
.text-center {
  text-align: center;
}

.no-select {
  user-select: none;
}

/* Responsive */
@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }

  .desktop-nav {
    display: flex;
    gap: 1.5rem;
  }

  .mobile-nav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    overflow: visible;
    left: 0 !important;
  }

  .mobile-nav ul {
    display: flex;
    gap: 1rem;
    margin-top: 0;
  }

  .mobile-nav li {
    margin-bottom: 0;
  }

  .mobile-nav a {
    background: none;
    color: white;
    box-shadow: none;
    padding: 0.5rem 1rem;
  }

  .mobile-nav a:hover {
    background: rgba(255,255,255,0.2);
    color: white;
    transform: none;
    box-shadow: none;
  }
}
