/* Correções de estilos para o site Ageoz */

/* Classe para esconder visualmente mas manter acessível para leitores de tela */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Correção do botão de WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float.hidden {
  opacity: 0;
  visibility: hidden;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
  font-size: 2.2rem;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Estilo para a seção About */
.about {
  background-color: #fff;
  padding: 40px 0;
}

.about .section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Estilo para o subtítulo da seção About */
.section-subtitle {
  color: #333;
  font-size: 1.1rem;
  margin-top: 5px;
  text-align: center;
  font-weight: 400;
}

/* Estilos para o acordeão de cidades na seção About */
.cities-accordion {
  max-width: 600px;
  margin: 20px auto;
}

.city-item {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f2f2f2;
}

.city-header {
  background-color: #f9f9f9;
  padding: 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.city-header:hover {
  background-color: #f0f0f0;
}

.city-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.city-arrow {
  color: #fec205;
  transition: transform 0.3s ease;
}

.city-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #ffffff;
  padding: 0 15px;
}

.city-content.active {
  max-height: 500px;
  padding: 15px;
}

/* Ajustes para a seção de cidades */
.cities-info {
  padding-top: 20px;
  text-align: center;
}

.cities-intro {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

/* Ajustes para os ícones de features */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.feature.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature i {
  color: #fec205;
  font-size: 1.75rem;
  background: #ffffff;
  padding: 0.5rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(254, 194, 5, 0.15);
}

.feature span {
  font-weight: 500;
  color: #000000;
  font-size: 1.1rem;
}

/* Estilos para os itens ao lado da imagem */
.about-image-features {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.feature-item i {
  color: #fec205;
  margin-right: 10px;
  font-size: 1.1rem;
}

.feature-item span {
  font-size: 0.95rem;
  color: #555;
}

/* Ajustes gerais de espaçamento */
section {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Estilo para o layout da seção About */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.about-text {
  display: flex;
  flex-direction: column;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Estilos para a seção de serviços */
.services {
  background-color: #f9f9f9;
  padding: 60px 0;
}

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

.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: #fec205;
  font-size: 2rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(254, 194, 5, 0.1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin: 0 0 15px 0;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.95rem;
}

.service-list li:before {
  content: "✓";
  color: #fec205;
  position: absolute;
  left: 0;
  top: 0;
}

/* Estilos para o footer */
.footer {
  background-color: #222;
  color: #f9f9f9;
  padding: 60px 0 0;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #fec205;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer p {
  color: #ccc;
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #fec205;
  color: #222;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fec205;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #ccc;
}

.footer-contact i {
  color: #fec205;
  margin-right: 10px;
  width: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-copyright p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #ccc;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #fec205;
}

/* Estilos para a seção de contato */
.contact {
  background-color: #f9f9f9;
  padding: 80px 0;
  position: relative;
}

.contact .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact .section-title {
  color: #333;
  margin-bottom: 10px;
}

.contact .section-subtitle {
  color: #666;
  font-size: 1.1rem;
  font-weight: normal;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  background-color: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  align-items: center;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: #fec205;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  background-color: #fec205;
  color: #fff;
}

.contact-details {
  flex: 1;
}

.contact-details h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.contact-details p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

.highlight-item {
  background-color: rgba(254, 194, 5, 0.1);
  border-left: 3px solid #fec205;
}

.highlight-item .contact-icon {
  background-color: rgba(254, 194, 5, 0.2);
  color: #e6a800;
}

.highlight-item:hover .contact-icon {
  background-color: #fec205;
  color: #fff;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: #fec205;
  color: #fff;
  transform: translateY(-3px);
}

/* Estilos para o formulário de contato */
.contact-form {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-info {
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 25px;
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
}

.form-info i {
  color: #fec205;
  margin-right: 8px;
  font-size: 1.1rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #fec205;
  outline: none;
  box-shadow: 0 0 0 2px rgba(254, 194, 5, 0.2);
}

.field-error {
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.btn-primary {
  background-color: #fec205;
  color: #333;
  border: none;
  padding: 14px 25px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.btn-primary i {
  margin-right: 8px;
}

.btn-primary:hover {
  background-color: #e6a800;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(254, 194, 5, 0.3);
}

.form-notice {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 15px;
  color: #666;
}

.form-notice i {
  color: #fec205;
  margin-right: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
