/* ===== VARIÁVEIS ===== */
:root {
  /* Cores Principais */
  --primary-color: #005f73;
  --secondary-color: #0a9396;
  --accent-color: #94d2bd;
  --dark-color: #001219;
  --light-color: #f8f9fa;
  
  /* Cores Complementares */
  --text-color: #333f47;
  --text-light: #5e6e76;
  --bg-light: #e9ecef;
  --border-color: #dee2e6;
  --success-color: #28a745;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  
  /* Tipografia */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Montserrat', sans-serif;
  
  /* Efeitos */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-theme: background 0.5s ease, color 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 15px 30px rgba(0, 95, 115, 0.1);
  --border-radius: 12px;
  
  /* Progresso do formulário */
  --form-progress: 0%;
}

/* Modo Escuro */
.dark-mode {
  --primary-color: #0a9396;
  --secondary-color: #94d2bd;
  --text-color: #e9ecef;
  --text-light: #adb5bd;
  --light-color: #212529;
  --bg-light: #343a40;
  --border-color: #495057;
}

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  background: linear-gradient(135deg, #001219, #212529);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  transition: var(--transition-theme);
}

/*Logo*/
#logo {
height: auto;
width: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

p {
  margin-bottom: 1rem;
  color: #adb5bd;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
  padding-left: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

#templo {
  max-width: 550px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== LOADER ===== */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader.fade-out {
  opacity: 0;
}

.loader-content {
  text-align: center;
  color: white;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto 1rem;
}

.loader p {
  color: white;
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.pulse {
  animation: pulse 2s infinite;
}

.pulse-slow {
  animation: pulse 3s infinite;
}

/* ===== COMPONENTES ===== */
/* Section Header */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.section-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.5rem;
  height: 2px;
  background-color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #adb5bd;
  margin-bottom: 1.5rem;
}

.home {
  background-image: url("monte.jpg");
  background-size: cover;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
  gap: 0.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}

.btn:active {
  transform: scale(0.98);
}


.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 5px 15px rgba(10, 147, 150, 0.2);
  border-radius: 1em;
  width: 10em;
}

.btn-cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 5px 15px rgba(10, 147, 150, 0.2);
  border-radius: 1em;
  width: 11em;
  height: fit-content;
  font-size: 1.6em;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 147, 150, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 147, 150, 0.3);
  border-radius: 1em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #005f73;
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
  border-radius: 1em;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  width: 16em;
  height: auto;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.btn-service{
  border: 1.5px solid var(--primary-color);
  font-size: 1.35em ;
  width: fit-content;
  color: #0a9396;
  width: 16em;
  height: auto;
}

.btn-service:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

#submit {
  border-radius: 0.5em;
}

.submit {
  background-color: var(--primary-color);
  color: white;
  width: 11.5em;
  height: 2em;
  box-shadow: 0 10px 25px rgba(10, 147, 150, 0.3);
  cursor: pointer;
}

.submit:hover {
  transform: translateY(-3px);
}


/* Grids */
.grid-2-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.subtitle:hover {
  cursor: text;

}

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

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #003049 100%);
  color: white;
  z-index: 1000;
  transition: var(--transition);
  padding: 1rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo img {
  height: auto;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.nav ul {
  display: flex;
  gap: 2rem;
}

.nav a {
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav a.active {
  font-weight: 600;
  color: var(--accent-color);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav a.active::after {
  background-color: var(--accent-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

#darkModeToggle, .menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#darkModeToggle:hover, .menu-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
  display: none;
}

/* Menu Mobile */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    padding: 2rem;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav.active {
    transform: translateY(0);
  }
  
  .nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .nav a {
    font-size: 1rem;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  height: 100vh;
  color: white;
  padding-top: 80px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 95, 115, 0.3) 0%, rgba(0, 18, 25, 0.5) 100%);  
  height: 100vh;                
  z-index: 1;
  background: url(../img/monte.jpg); /* Não mudar o caminho*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7))
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== ABOUT SECTION ===== */
.about-content .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #adb5bd;
}

.about-features {
  margin-top: 2.5rem;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(10, 147, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-light);
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow-hover);
}
.experience-badge {
  position: absolute;
  bottom: -5px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  width: 460px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 95, 115, 0.3);
  z-index: 2;
  border-radius: 8px;
  padding: 0 1px;
  text-align: center;
}

.experience-badge span {
  font-size: 1.09rem;
  font-weight: 700;
  line-height: 1.2;
}
.experience-badge small {
  font-size: 0.7rem;
  opacity: 0.9;
}

/* ===== SERVICES SECTION ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas */
  gap: 2rem; /* espaçamento entre eles */
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #2b3035;
  border: none;
  border-radius: var(--border-radius);
  overflow: hidden; 
  transition: var(--transition); 
  box-shadow: var(--box-shadow); 
  position: relative; 
  z-index: 1; 
  padding: 2.5rem 2rem; 
  width: 360px;
  text-align: center; 
  transform: translateZ(0); 
  will-change: transform;
}

.service-card::before { 
  content: ''; 
  position: absolute; 
  top: 0; left: 0; 
  width: 100%; 
  height: 5px; 
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color)); 
  z-index: 2; 
}

/* Esconde o segundo parágrafo dentro do card */
.service-card p.extra {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  margin: 0; /* evita espaço vazio quando escondido */
}

/* Mostra no hover */
.service-card:hover p.extra {
  max-height: 200px; /* ajusta a altura conforme o conteúdo */
  opacity: 1;
  margin-top: 1rem;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px auto 1.5rem;
  box-shadow: 0 10px 20px #0a93964d;
  transition: var(--transition);
}

.service-icon i {
  color: white;
  font-size: 2rem;
  transition: var(--transition);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.3rem;
}

.service-card p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.sub-title {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-color);
  gap: 0.7rem;
}

/* Efeito de hover sofisticado */
.service-card {
  --mouse-x: 0px;
  --mouse-y: 0px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.1),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* ===== ÁREA DO CONDÔMINO ===== */
.logica {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-right: 10em;
  margin-left: 10em;
}

.logica-left {
  flex: 0 0 auto;
}

.logica-right {
  flex: 2;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.img-logica {
  max-height: 450px;
  width: auto;
  object-fit: contain;
  background: linear-gradient(160deg, var(--primary-color), var(--secondary-color));
  border-radius: 5em;
  }

.texto-logica {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0;
  max-width: 400px;
  color: white;
}

.btn-logica {
  display: inline-block;
  padding: 2rem 3rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(10, 147, 150, 0.2);
  font-size: 1.6rem;
}

.btn-logica:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 147, 150, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
  .logica {
    flex-direction: column;
    text-align: center;
  }
  
  .logica-right {
    text-align: center;
    align-items: center;
  }
  
  .texto-logica {
    font-size: 1.2rem;
  }
}
/* ===== FEATURES SECTION ===== */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: #2b3035;
  padding: 2.5rem 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-left: 5px solid var(--secondary-color);
  display: flex;
  gap: 1.5rem;
}

.dark-mode .feature-box {
  background: #2b3035;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.feature-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(10, 147, 150, 0.1);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.feature-content h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.feature-content p {
  font-size: 0.95rem;
}

.experiencia {
  justify-content: center;
}

.experiencia:hover {
  cursor: text;
}


/* ===== CONTACT SECTION ===== */
.contact-info {
  padding-right: 3rem;
}

.contact-subtitle {
  margin-bottom: 2.5rem;
  color: var(--text-light);
  font-size: 1.1rem;
}

.contact-methods {
  margin-bottom: 3rem;
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(10, 147, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--secondary-color);
  font-size: 1.2rem;
}

.contact-details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-details a, 
.contact-details p {
  color: var(--text-light);
  transition: var(--transition);
}

.contact-details a:hover {
  color: var(--secondary-color);
}

.social-links h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(10, 147, 150, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  background: #2b3035;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  overflow: hidden;
}

.dark-mode .contact-form {
  background: #2b3035;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
}

.contact-form::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: var(--form-progress, 0);
  background: var(--success-color);
  transition: width 0.3s ease;
  z-index: 2;
}

.form-header {
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.form-header p {
  color: #adb5bd;
}

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
  color: #001219;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background-color: #495057;
  color: white; /* O que vai ser escrito na label*/
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: #d1d1d1;
  transition: var(--transition);
  pointer-events: none;
  background-color: #495057;
  padding: 0 0.5rem;
  font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #001219;
  box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.1);
  outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label {
  top: -0.6rem;
  left: 0.8rem;
  font-size: 0.75rem;
  color: var(--secondary-color);
  background-color: #001219;}

.dark-mode .form-group input:focus + label,
.dark-mode .form-group textarea:focus + label,
.dark-mode .form-group select:focus + label,
.dark-mode .form-group input:not(:placeholder-shown) + label,
.dark-mode .form-group textarea:not(:placeholder-shown) + label,
.dark-mode .form-group select:not([value=""]) + label {
  background-color: var(--dark-color);
}

.form-feedback {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  color: var(--danger-color);
  height: 0.75rem;
}

/* REMOVER completamente efeitos de hover problemáticos dos campos do formulário */
.form-group input,
.form-group textarea,
.form-group select {
  transition: border-color 0.3s ease, box-shadow 0.3s ease !important;
  cursor: text !important;
}

/* Garantir que nenhum efeito de brilho seja aplicado aos campos */
.form-group input::after,
.form-group textarea::after,
.form-group select::after,
.form-group input::before,
.form-group textarea::before,
.form-group select::before {
  content: none !important;
  display: none !important;
}

/* Remover qualquer transformação que possa causar flickering */
.form-group input,
.form-group textarea,
.form-group select {
  transform: none !important;
}

/* Melhorar o visual dos campos no hover e foco */
.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
  border-color: var(--secondary-color) !important;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 0 3px rgba(10, 147, 150, 0.2) !important;
  outline: none !important;
}

/* Garantir que os labels não interfiram */
.form-group label {
  pointer-events: none !important;
  z-index: 10 !important;
}

/* Desativar qualquer efeito de parallax ou transformação problemática */
.form-group {
  transform: none !important;
  transition: none !important;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
  color: white;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/texture.png') center/cover;
  opacity: 0.03;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-logo img {
  margin-bottom: 1.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: white;
}

.footer-social a:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-size: 1.1rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-col ul a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-col address p {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-style: normal;
}

.footer-col address i {
  color: var(--accent-color);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  height: 3em;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0, 95, 115, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 95, 115, 0.4);
}

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);}

  