/* === RESET === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0d0d0d, #000000);
  color: #ffffff;
  overflow-x: hidden;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.8rem;
  color: #56e2e7;
  margin-bottom: 10px;
}

.section-header p {
  color: #ccc;
  font-size: 1.1rem;
}

/* === CONTACT CONTENT === */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #56e2e7;
}

.contact-info p {
  margin-bottom: 30px;
  color: #ccc;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.contact-item i {
  font-size: 1.5rem;
  color: #56e2e7;
}

.contact-item h4 {
  margin-bottom: 5px;
  font-size: 1rem;
  color: #56e2e7;
}

.contact-item p {
  font-size: 0.95rem;
  color: #ccc;
}

/* === CONTACT FORM === */
.contact-form {
  flex: 1 1 500px;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #56e2e7;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #56e2e7;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 1rem;
  transition: border 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #09afc5;
}

/* === BOTÃO === */
button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

button[type="submit"]:hover {
  background: linear-gradient(90deg, #60a5fa 0%, #3b82f6 100%);
}

/* === RADIO GROUP === */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
  user-select: none;
}

.radio-group input[type="radio"] {
  appearance: none;
  width: auto;
  height: auto;
  border: 2px solid #56e2e7;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.radio-group input[type="radio"]:checked {
  background-color: #56e2e7;
  box-shadow: 0 0 0 4px rgba(86, 226, 231, 0.3);
}

.radio-group input[type="radio"]::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 12px;
  opacity: 0;
  transition: 0.2s ease;
}

.radio-group input[type="radio"]:checked::before {
  opacity: 1;
}

.radio-group label:hover {
  color: #56e2e7;
}

.modal-success {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-success .modal-content {
    background: #fff;
    color: #333;
    padding: 30px 40px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stars {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  margin-bottom: 10px;
}

.stars input[type="radio"] {
  display: none;
}

.stars label {
  font-size: 2.5rem;
  color: #777;
  cursor: pointer;
  transition: color 0.2s;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input[type="radio"]:checked ~ label {
  color: gold;
}

.top-rating-message {
  margin-top: 20px;
  text-align: center;
  color: gold;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 1px 1px 3px #b8860b;
}

.top-rating-message img {
  margin-top: 15px;
  width: 150px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}


.checkmark {
    width: 52px;
    height: 52px;
    stroke: #28a745;
    stroke-width: 4;
    stroke-miterlimit: 10;
    animation: stroke 0.6s ease forwards;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: stroke 0.6s ease-in-out forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s ease-in-out 0.6s forwards;
}

@keyframes stroke {
    to {
        stroke-dashoffset: 0;
    }
}

 /* ---------- FOOTER ---------- */
.footer {
  background: #001717;
  padding: 60px 40px 20px;
  color: #ccc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-section .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #ccc;
  font-size: 0.95rem;
}

.footer-section .contact-item i {
  fill: #19b7bd;
  width: 18px;
  height: 18px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.footer-logo h3 span {
  color: #19b7bd;
}

.footer-logo img {
  width: 240px;
  height: auto;
}

.footer-section p {
  line-height: 1.5;
  font-size: 0.95rem;
  max-width: 280px;
  color: #ccc;
}

.footer-section .contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.95rem;
  margin: 5px 0;
}

.footer-section .contact-info p i {
  color: #19b7bd; /* cor dos ícones */
  font-size: 1.2rem;
  min-width: 20px; /* para alinhar o texto */
}

.footer-section h4 {
  color: #19b7bd;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-section ul li a:hover {
  color: #19b7bd;
}

.footer-separator {
  border-top: 1px solid #444; /* linha fina e discreta */
  margin: 20px 0; /* espaçamento acima e abaixo da linha */
  width: 100%; /* ocupa toda a largura */
  opacity: 0.5; /* deixa a linha mais suave */
}

.social-links {
  margin-top: 10px;
}

.social-links a {
  color: #19b7bd;
  margin-right: 20px;
  font-size: 1.6rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.social-links a:hover {
  color: #fff;
}

/* Linha separadora */
.footer-separator {
  border-top: 1px solid #0a383a;
  margin: 30px 0 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Copyright no centro */
.footer-bottom {
  text-align: center;
  color: #555;
  font-size: 0.9rem;
  max-width: 1200px;
  margin: 0 auto 20px auto;
  padding-top: 10px;
  letter-spacing: 0.5px;
}

/* === RESPONSIVO === */
@media (max-width: 1024px) {
  .contact-info {
    flex: none;
  }

  .contact-content {
    flex-direction: column;
    gap: 40px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .contact-info h3 {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
  }

  button[type="submit"] {
    width: 100%;
    font-size: 1rem;
  }
}
