/* 
======================
General Styles
======================
*/
:root {
  --bg-color: #001f29;
  --accent-color: #ffcc00;
  --accent-hover: #ffaa00;
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --header-height: 80px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

section[id] {
  scroll-margin-top: 80px;
}

body {
  font-family: 'Arial', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  line-height: 1.2;
}

p {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-hover));
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
}

.primary-btn {
  background: linear-gradient(to right, var(--accent-color), var(--accent-hover));
  color: var(--bg-color);
  border: none;
}

.primary-btn:hover {
  background: linear-gradient(to right, var(--accent-hover), var(--accent-color));
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
  color: var(--bg-color);
}

.secondary-btn {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.secondary-btn:hover {
  background-color: rgba(255, 204, 0, 0.1);
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.2);
  color: var(--accent-color);
}

/* 
======================
Cookie Consent
======================
*/
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background-color: var(--bg-color);
  border-top: 2px solid var(--accent-color);
  padding: 20px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: bottom 0.5s ease;
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin-bottom: 0;
  flex: 1;
  min-width: 280px;
}

.cookie-btn {
  min-width: 120px;
  padding: 10px 20px;
}

/* 
======================
Header & Navigation
======================
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 31, 41, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: var(--header-height);
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 60px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  margin: 0;
}

.nav-list li {
  margin-left: 30px;
}

.nav-list a {
  color: var(--text-color);
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-list a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(to right, var(--accent-color), var(--accent-hover));
  padding: 10px 20px !important;
  border-radius: 50px;
  color: var(--bg-color) !important;
}

.nav-list a.nav-cta:hover {
  box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
}

.nav-list a.nav-cta::after {
  display: none;
}

.menu-checkbox {
  display: none;
}

.menu-toggle-btn {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}

.menu-toggle-btn span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--accent-color);
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.menu-toggle-btn span:nth-child(1) {
  top: 0;
}

.menu-toggle-btn span:nth-child(2) {
  top: 10px;
}

.menu-toggle-btn span:nth-child(3) {
  top: 20px;
}

#menu-toggle:checked ~ .menu-toggle-btn span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

#menu-toggle:checked ~ .menu-toggle-btn span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#menu-toggle:checked ~ .menu-toggle-btn span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* 
======================
Hero Section
======================
*/
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(rgba(0, 31, 41, 0.8), rgba(0, 31, 41, 0.9)), url('img/zk8Lc.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 80px;
  position: relative;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-section h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out;
}

.hero-section h2 {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeIn 1s ease-out 0.3s both;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 
======================
About Section
======================
*/
.about-section {
  background-color: rgba(255, 255, 255, 0.05);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.about-features {
  list-style: none;
  margin-left: 0;
  margin-top: 20px;
}

.about-features li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.icon {
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
}

/* 
======================
Services Section
======================
*/
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.1), transparent);
  z-index: -1;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-card:hover::before {
  transform: scale(1.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 204, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-svg {
  width: 40px;
  height: 40px;
  fill: var(--accent-color);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.service-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  position: relative;
}

.service-link::after {
  content: '→';
  margin-left: 5px;
  transition: var(--transition);
}

.service-link:hover::after {
  margin-left: 10px;
}

/* 
======================
Why Us Section
======================
*/
.why-us-section {
  background: linear-gradient(rgba(0, 31, 41, 0.9), rgba(0, 31, 41, 0.9)), url('img/JvFJc.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-us-card {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.why-us-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
  transform: translateY(-5px);
}

.why-us-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.why-us-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--accent-color);
}

.why-us-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

/* 
======================
Process Section
======================
*/
.process-section {
  background-color: rgba(255, 255, 255, 0.05);
}

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(var(--accent-color), var(--accent-hover));
  z-index: 1;
}

.process-step {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(to right, var(--accent-color), var(--accent-hover));
  color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 0 5px rgba(255, 204, 0, 0.2);
}

.process-content {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px;
  margin-left: 30px;
  flex: 1;
  position: relative;
  transition: var(--transition);
}

.process-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-right: 15px solid rgba(255, 255, 255, 0.05);
}

.process-step:hover .process-content {
  background-color: rgba(255, 204, 0, 0.1);
}

.process-step:hover .process-content::before {
  border-right-color: rgba(255, 204, 0, 0.1);
}

.process-content h3 {
  margin-bottom: 10px;
  color: var(--accent-color);
}

/* 
======================
Testimonials Section
======================
*/
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 30px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

.testimonial-content::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-color);
  opacity: 0.5;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
}

.testimonial-info h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.testimonial-info p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* 
======================
FAQ Section
======================
*/
.faq-section {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  display: block;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(255, 204, 0, 0.1);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent-color);
  transition: var(--transition);
}

.faq-toggle:checked ~ .faq-question {
  background-color: rgba(255, 204, 0, 0.1);
}

.faq-toggle:checked ~ .faq-question::after {
  content: '−';
}

.faq-answer {
  background-color: rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 20px;
  margin-bottom: 0;
}

/* 
======================
Contact Section
======================
*/
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 2;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-color);
}

.contact-hours {
  margin-top: 30px;
}

.contact-hours h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-color);
  transition: var(--transition);
}

/* Estilo personalizado para o select e option */
.custom-select {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23ffcc00' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.custom-select option {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 10px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.2);
}

.form-checkbox {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
}

.form-checkbox input {
  margin-right: 10px;
  margin-top: 5px;
  accent-color: var(--accent-color);
}

.form-checkbox label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

button[type="submit"] {
  border: none;
  cursor: pointer;
}

/* 
======================
Footer
======================
*/
.site-footer {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 60px 0 20px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-color), var(--accent-hover));
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.footer-contacts {
  list-style: none;
  margin-left: 0;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: var(--accent-color);
  flex-shrink: 0;
}

.footer-links {
  list-style: none;
  margin-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  position: relative;
  padding-left: 15px;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  transition: var(--transition);
}

.footer-links a:hover {
  padding-left: 20px;
}

.footer-links a:hover::before {
  left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* 
======================
Policy Pages
======================
*/
.policy-section {
  padding-top: 120px;
  min-height: 80vh;
}

.policy-section h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.policy-content {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
}

.last-updated {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: right;
  margin-bottom: 30px;
}

.policy-content h2 {
  color: var(--accent-color);
  margin-top: 40px;
  font-size: 1.5rem;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 20px;
}

/* 
======================
Thanks & Error Pages
======================
*/
.thanks-section,
.error-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.thanks-content,
.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon,
.error-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 204, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 30px;
}

.thanks-icon svg,
.error-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--accent-color);
}

.error-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px;
}

.error-phone-icon {
  width: 24px;
  height: 24px;
  fill: var(--accent-color);
  margin-right: 10px;
}

.error-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* 
======================
Media Queries
======================
*/
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.3rem;
  }
  
  .menu-toggle-btn {
    display: block;
  }
  
  .main-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-150%);
    transition: transform 0.3s ease;
  }
  
  #menu-toggle:checked ~ .main-nav {
    transform: translateY(0);
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-list li {
    margin: 0 0 20px 0;
  }
  
  .nav-list li:last-child {
    margin-bottom: 0;
  }
  
  .process-timeline::before {
    left: 25px;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .process-content {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
  
  .process-content::before {
    display: none;
  }
  
  .about-content,
  .contact-container {
    flex-direction: column;
  }
  
  .about-image {
    order: -1;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section h2 {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonial-image {
    margin-bottom: 10px;
  }
} 