/* 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(--text-dark);
    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 Banner */
  .page-banner {
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    margin-top: 76px;
    position: relative;
    overflow: hidden;
  }
  
  .page-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/wave.svg') no-repeat bottom;
    background-size: cover;
    opacity: 0.2;
  }
  
  .page-banner h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  }
  
  .breadcrumb {
    background: transparent;
    display: inline-flex;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb-item {
    font-size: 16px;
    font-weight: 500;
  }
  
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  
  .breadcrumb-item a:hover {
    color: var(--white);
  }
  
  .breadcrumb-item.active {
    color: var(--white);
  }
  
  .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
  }
  
  /* Why Join Section */
  .why-join-section {
    background-color: var(--white);
  }
  
  .benefit-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
  }
  
  .benefit-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--primary-color);
  }
  
  .benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
  }
  
  .benefit-card p {
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  /* Career Form Section */
  .career-form-section {
    background-color: var(--light-gray);
  }
  
  .career-info {
    padding-right: 30px;
  }
  
  .open-positions {
    margin-top: 30px;
  }
  
  .open-positions h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
  }
  
  .position-item {
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }
  
  .position-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
  }
  
  .position-tag {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 10px;
  }
  
  .position-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
  }
  
  .position-item p {
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  /* Career Form */
  .career-form-wrapper {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
  }
  
  .form-header {
    margin-bottom: 30px;
  }
  
  .form-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .form-header p {
    color: var(--text-light);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
  }
  
  .form-control {
    height: 50px;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(1, 151, 168, 0.25);
  }
  
  .form-select {
    height: 50px;
    border: 1px solid var(--medium-gray);
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  
  .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(1, 151, 168, 0.25);
  }
  
  textarea.form-control {
    height: auto;
    resize: vertical;
  }
  
  .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
  }
  
  .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
  }
  
  .form-check-label {
    margin-left: 10px;
    font-size: 14px;
  }
  
  /* FAQ Section */
  .faq-section {
    background-color: var(--white);
  }
  
  .accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  
  .accordion-header {
    margin: 0;
  }
  
  .accordion-button {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    background-color: var(--white);
    border: none;
    border-radius: 10px !important;
  }
  
  .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--white);
    box-shadow: none;
  }
  
  .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(1, 151, 168, 0.25);
  }
  
  .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230197A8' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    transition: all 0.3s ease;
  }
  
  .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%230197A8' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
  }
  
  .accordion-body {
    padding: 20px 25px;
    background-color: var(--white);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
  }
  
  /* Testimonials Section */
  .testimonials-section {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
  }
  
  .testimonial-card {
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
  }
  
  .testimonial-content p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
  }
  
  .testimonial-content p::before,
  .testimonial-content p::after {
    content: '"';
    font-size: 72px;
    font-family: serif;
    position: absolute;
    color: var(--primary-light);
    line-height: 0;
  }
  
  .testimonial-content p::before {
    top: 30px;
    left: -10px;
  }
  
  .testimonial-content p::after {
    bottom: -40px;
    right: -10px;
    transform: rotate(180deg);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
  
  .testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
  }
  
  .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
  }
  
  .testimonial-info p {
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1;
  }
  
  .carousel-indicators {
    position: relative;
    margin-top: 40px;
    margin-bottom: 0;
  }
  
  .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 5px;
    transition: all 0.3s ease;
  }
  
  .carousel-indicators button.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 10px;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-inner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
  }
  
  .cta-inner h2 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  .cta-inner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 0;
  }
  
