/* Contato Styles - GOC Brasil */

/* Hero Section */
.contatoHero {
  position: relative;
  width: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, #3D2B1F 0%, #2a1d15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.contatoHero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23C5A572" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
  background-size: 100px 100px;
  opacity: 0.3;
}

.contatoHeroContent {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.contatoTag {
  display: inline-block;
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.contatoHeroContent h1 {
  color: white;
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  margin: 0 0 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.contatoHeroContent p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* Contato Section */
.contatoSection {
  width: 100%;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  background-color: #f8f7f5;
  min-height: 60vh;
}

.contatoContainer {
  max-width: 1200px;
  width: 100%;
  padding: 0 2rem;
}

/* Contato Grid */
.contatoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

/* Contato Card */
.contatoCard {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.1);
  text-align: center;
  transition: all 0.4s ease;
}

.contatoCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contatoCardMain {
  background: linear-gradient(135deg, #3D2B1F 0%, #5a4030 100%);
  color: white;
}

.contatoCardIcon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contatoCardMain .contatoCardIcon {
  background: rgba(197, 165, 114, 0.25);
  border: 2px solid rgba(197, 165, 114, 0.4);
}

.contatoCardIcon i {
  font-size: 2rem;
  color: #3D2B1F;
}

.contatoCardMain .contatoCardIcon i {
  color: #C5A572;
}

.contatoCard h2 {
  color: #3D2B1F;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contatoCardMain h2 {
  color: #ffffff;
}

.contatoCard p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.contatoCardMain p {
  color: #b8b8b8;
}

/* Contact Buttons */
.contatoBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.contatoBtnWhatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.contatoBtnWhatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.contatoBtnEmail {
  background: linear-gradient(135deg, #C5A572 0%, #a88a5a 100%);
  color: #3D2B1F;
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.4);
}

.contatoBtnEmail:hover {
  background: linear-gradient(135deg, #a88a5a 0%, #8B1A1A 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
}

.contatoPhone,
.contatoEmail {
  display: block;
  font-size: 0.9rem;
  color: #888;
  margin-top: 0.5rem;
}

.contatoCardMain .contatoPhone {
  color: #d0d0d0;
}

/* Locations */
.contatoLocations {
  text-align: left;
}

.contatoLocation {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(197, 165, 114, 0.2);
}

.contatoLocation:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contatoLocation h4 {
  color: #3D2B1F;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.contatoLocation p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Additional Info */
.contatoInfo {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(197, 165, 114, 0.1);
  text-align: center;
}

.contatoInfoIcon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #3D2B1F 0%, #5a4030 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contatoInfoIcon i {
  font-size: 1.75rem;
  color: #C5A572;
}

.contatoInfo h3 {
  color: #3D2B1F;
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contatoInfo > p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.contatoInfoNote {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(197, 165, 114, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid #C5A572;
}

.contatoInfoNote i {
  color: #C5A572;
  font-size: 1.25rem;
}

.contatoInfoNote span {
  color: #3D2B1F;
  font-size: 0.95rem;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contatoGrid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contatoHeroContent h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .contatoHero {
    min-height: 250px;
    padding: 3rem 1.5rem;
  }

  .contatoHeroContent h1 {
    font-size: 2rem;
  }

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

  .contatoSection {
    padding: 2rem 0;
  }

  .contatoContainer {
    padding: 0 1rem;
  }

  .contatoCard {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .contatoCardIcon {
    width: 70px;
    height: 70px;
  }

  .contatoCardIcon i {
    font-size: 1.75rem;
  }

  .contatoCard h2 {
    font-size: 1.25rem;
  }

  .contatoInfo {
    padding: 1.5rem;
    border-radius: 1rem;
  }

  .contatoInfo h3 {
    font-size: 1.25rem;
  }

  .contatoInfoNote {
    flex-direction: column;
    text-align: center;
  }

  .contatoInfoNote span {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contatoHero {
    min-height: 200px;
    padding: 2rem 1rem;
  }

  .contatoHeroContent h1 {
    font-size: 1.75rem;
  }

  .contatoTag {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
  }

  .contatoCardIcon {
    width: 60px;
    height: 60px;
  }

  .contatoCardIcon i {
    font-size: 1.5rem;
  }

  .contatoCard h2 {
    font-size: 1.15rem;
  }

  .contatoCard p {
    font-size: 0.95rem;
  }

  .contatoBtn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .contatoInfoIcon {
    width: 60px;
    height: 60px;
  }

  .contatoInfoIcon i {
    font-size: 1.5rem;
  }

  .contatoInfo h3 {
    font-size: 1.15rem;
  }

  .contatoInfo > p {
    font-size: 0.95rem;
  }
}
