/* Variáveis de Cores */
:root {
    --primary-color: #0197A8;
    --primary-dark: #007A87;
    --primary-light: #D1F1F4;
    --accent-color: #06D6A0;
    --text-dark: #1B262C;
    --text-light: #778899;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --black: #000000;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-strong: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  
  
  /* Estilos Gerais */
  body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    line-height: 1.6;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: var(--primary-dark);
  }
  
  .btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0.5px;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
  }
  
  .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
  }
  
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
  }
  
  .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
  }
  
  .title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .description {
    color: var(--text-light);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
  }
  
  img {
    max-width: 100%;
  }
  
  section {
    padding: 80px 0;
    position: relative;
  }
  
 
  
  /* Page Hero Section */
  .page-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--text-dark));
    color: #fff;
    margin-bottom: 3rem;
  }
  
  .page-hero h1 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
  }
  
  .page-hero p {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
  }
  
  /* Contact Section */

  .contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info i {
    color: #FFD700;
    transition: transform 0.3s ease;
}

.contact-info i:hover {
    transform: scale(1.2);
}

.contact-info span {
    font-size: 1.2rem;
    font-weight: 500;
}


h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

.bi {
    font-size: 1.2rem;
    /* Tamanho dos ícones */
}

.contact-info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: -100px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.contact-details {
    flex: 0.6;
    min-width: 300px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

p {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--primary);
}

input,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0, 163, 180, 0.2);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.button {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.button:hover {
    background: #FF6344;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 99, 68, 0.3);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 20px;

}

.contact-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits {
    margin-top: 30px;
}

.benefits h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.benefits ul {
    list-style-type: none;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits li:before {
    content: "✓";
    color: var(--accent);
    font-weight: bold;
}

.status-message {
    padding: 15px;
    margin-top: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

:root {
    --primary: #004658;
    --secondary: #00A3B4;
    --tertiary: #E8F4F6;
    --accent: #FF7A5A;
    --text: #333333;
    --light: #ffffff;
}
  
  
  /* Map Container */
  .map-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
/* FOOTER */
.footer {
    position: relative;
    background: url('../img/wavwe_.png') no-repeat top center;
    background-size: cover;
    aspect-ratio: 1365 / 768;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--white);
    z-index: 1;
    overflow: hidden;
    padding-bottom: 100px; /* ↓ Ajuste este valor para subir mais ou menos */
  }
  
  
 