 /* Hero Section */
 .contact-hero {
     position: relative;
     z-index: 10;
     padding: 120px 5% 80px;
     text-align: center;
     max-width: 1200px;
     margin: 0 auto;
 }

 .contact-hero h1 {
     font-family: 'Exo 2', sans-serif;
     font-size: 3.5rem;
     font-weight: 700;
     background: linear-gradient(to right, var(--tech-blue), var(--innovation-purple));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 20px;
     line-height: 1.2;
 }

 .contact-hero p {
     font-size: 1.2rem;
     color: var(--text-muted);
     max-width: 800px;
     margin: 0 auto 40px;
 }

 /* Seção de Contato */
 .contact-section {
     position: relative;
     z-index: 10;
     max-width: 1400px;
     margin: 0 auto 80px;
     padding: 0 5%;
 }

 .contact-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
 }

 .contact-info {
     background: var(--card-bg);
     border-radius: 20px;
     border: 1px solid var(--border-color);
     padding: 40px;
     backdrop-filter: blur(5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .contact-info h2 {
     font-family: 'Exo 2', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 30px;
     background: linear-gradient(to right, var(--tech-blue), var(--innovation-purple));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .contact-method {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     margin-bottom: 30px;
 }

 .contact-icon {
     width: 60px;
     height: 60px;
     background: rgba(59, 130, 246, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.5rem;
     color: var(--tech-blue);
     flex-shrink: 0;
 }

 .contact-details h3 {
     font-size: 1.4rem;
     margin-bottom: 8px;
     color: white;
 }

 .contact-details p,
 .contact-details a {
     color: var(--text-muted);
     font-size: 1.1rem;
     text-decoration: none;
     transition: color 0.3s;
     display: block;
     margin-bottom: 5px;
 }

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

 .social-contact {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-contact a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 50px;
     height: 50px;
     background: rgba(26, 42, 79, 0.4);
     border: 1px solid var(--border-color);
     border-radius: 50%;
     color: var(--text-light);
     font-size: 1.3rem;
     transition: all 0.3s ease;
 }

 .social-contact a:hover {
     background: var(--tech-blue);
     transform: translateY(-5px);
 }

 /* Formulário de Contato - ESTILOS ATUALIZADOS PARA O SELECT */
 .contact-form {
     background: var(--card-bg);
     border-radius: 20px;
     border: 1px solid var(--border-color);
     padding: 40px;
     backdrop-filter: blur(5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .contact-form h2 {
     font-family: 'Exo 2', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     margin-bottom: 30px;
     background: linear-gradient(to right, var(--tech-blue), var(--innovation-purple));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .form-group {
     margin-bottom: 25px;
     position: relative;
 }

 .form-group label {
     display: block;
     margin-bottom: 10px;
     font-weight: 500;
     color: var(--text-light);
 }

 .form-control {
     width: 100%;
     padding: 15px 20px;
     background: rgba(26, 42, 79, 0.4);
     border: 1px solid var(--border-color);
     border-radius: 10px;
     color: var(--text-light);
     font-family: 'Poppins', sans-serif;
     font-size: 1rem;
     transition: all 0.3s ease;
 }

 .form-control:focus {
     outline: none;
     border-color: var(--innovation-purple);
     box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
 }

 textarea.form-control {
     min-height: 150px;
     resize: vertical;
 }

 /* ESTILOS PERSONALIZADOS PARA O SELECT */
 .custom-select {
     position: relative;
     width: 100%;
 }

 .custom-select select {
     /* Removendo a aparência padrão */
     -webkit-appearance: none;
     -moz-appearance: none;
     appearance: none;
     /* Adicionando seta personalizada */
     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='%233B82F6' 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: 1em;
     padding-right: 3rem;
 }

 /* Estilizando as opções do select */
 .custom-select select option {
     background: var(--darker-bg);
     color: var(--text-light);
     padding: 10px;
 }

 /* Estilo para quando o select está aberto */
 .custom-select select:focus {
     background-color: rgba(26, 42, 79, 0.6);
 }

 /* Estilo para opção selecionada */
 .custom-select select option:checked {
     background: var(--tech-blue);
     color: white;
 }

 .submit-btn {
     background: linear-gradient(135deg, var(--tech-blue) 0%, var(--innovation-purple) 100%);
     color: white;
     border: none;
     border-radius: 10px;
     padding: 15px 35px;
     font-family: 'Exo 2', sans-serif;
     font-weight: 600;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     width: 100%;
     margin-top: 10px;
 }

 .submit-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
 }

 /* FAQ Section */
 .faq-section {
     position: relative;
     z-index: 10;
     max-width: 1000px;
     margin: 0 auto 80px;
     padding: 0 5%;
 }

 .faq-section h2 {
     font-family: 'Exo 2', sans-serif;
     font-size: 2.2rem;
     font-weight: 700;
     margin-bottom: 40px;
     background: linear-gradient(to right, var(--tech-blue), var(--innovation-purple));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     text-align: center;
 }

 .faq-container {
     background: var(--card-bg);
     border-radius: 20px;
     border: 1px solid var(--border-color);
     padding: 40px;
     backdrop-filter: blur(5px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .faq-item {
     margin-bottom: 25px;
     border-bottom: 1px solid var(--border-color);
     padding-bottom: 20px;
 }

 .faq-item:last-child {
     margin-bottom: 0;
     border-bottom: none;
     padding-bottom: 0;
 }

 .faq-question {
     display: flex;
     justify-content: space-between;
     align-items: center;
     cursor: pointer;
     padding: 15px 0;
 }

 .faq-question h3 {
     font-size: 1.3rem;
     color: white;
     font-weight: 600;
 }

 .faq-question i {
     color: var(--tech-blue);
     transition: transform 0.3s ease;
 }

 .faq-answer {
     color: var(--text-muted);
     line-height: 1.7;
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding-top: 15px;
 }

 .faq-item.active .faq-question i {
     transform: rotate(180deg);
 }