*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background: #FFF0F0;
  color: #5C2A2A;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: #FF4D4D;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #FF8080;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclosure-banner {
  text-align: center;
  font-size: 10px;
  color: #B38686;
  padding: 6px 16px;
  line-height: 1.4;
}

.navbar {
  background: #1a1a1a;
  position: static;
  border-bottom: 3px solid #FFB3B3;
}

.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-logo img {
  height: 36px;
  width: auto;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFB3B3;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: #ffffff;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #FFB3B3;
}

.hero {
  background: #ffffff;
  padding: 48px 24px;
  animation: fadeIn 1s ease forwards;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: #000000;
  text-align: left;
  border-bottom: 4px solid #000000;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.hero-subtitle {
  text-align: right;
  color: #B38686;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 600px;
  margin-left: auto;
}

.offers-section {
  padding: 64px 24px;
  background: #1a1a1a;
  animation: fadeIn 1.2s ease forwards;
}

.offers-section h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 48px;
}

.offers-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.offer-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.offer-card-logo {
  width: 100%;
  height: 120px;
  background: #f5f5f5;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.offer-card-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

.offer-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.offer-card-name {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.offer-bonus-group {
  margin-bottom: 12px;
}

.offer-bonus {
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 4px;
  overflow-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
  line-height: 1.4;
}

.offer-terms {
  font-size: 0.7rem;
  color: #888888;
  display: block;
}

.offer-description {
  font-size: 0.75rem;
  color: #888888;
  margin-bottom: 16px;
  line-height: 1.5;
  flex: 1;
}

a.offer-cta {
  display: inline-block;
  background: #FF4D4D;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease;
  margin-top: auto;
  align-self: flex-start;
}

a.offer-cta:hover {
  background: #FF8080;
  color: #ffffff;
}

.info-section {
  padding: 72px 24px;
  animation: fadeIn 1s ease forwards;
}

.info-section:nth-child(odd) {
  background: #FFF0F0;
}

.info-section:nth-child(even) {
  background: #ffffff;
}

.info-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.info-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  color: #1a1a1a;
  margin-bottom: 24px;
}

.info-section p {
  color: #5C2A2A;
  font-size: 1rem;
  line-height: 1.7;
}

.info-1-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.info-1-accent {
  background: #1a1a1a;
  padding: 48px;
  border-left: 6px solid #FF4D4D;
}

.info-1-accent p {
  color: #FFB3B3;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
}

.info-2-layout {
  text-align: center;
}

.info-2-number {
  font-family: Georgia, serif;
  font-size: 6rem;
  color: rgba(255, 77, 77, 0.15);
  line-height: 1;
  margin-bottom: -20px;
}

.info-2-layout p {
  max-width: 700px;
  margin: 0 auto;
}

.info-3-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-3-card {
  background: #1a1a1a;
  padding: 28px;
  border-top: 3px solid #FF4D4D;
}

.info-3-card h3 {
  color: #FFB3B3;
  font-size: 1rem;
  margin-bottom: 12px;
}

.info-3-card p {
  color: #cccccc;
  font-size: 0.9rem;
}

.info-4-layout {
  border: 1px solid rgba(255, 77, 77, 0.1);
  padding: 40px;
  background: #ffffff;
}

.info-4-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.info-4-list li {
  padding-left: 24px;
  border-left: 3px solid #FF4D4D;
  color: #5C2A2A;
}

.info-5-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.info-5-sidebar {
  flex: 0 0 200px;
  background: #FF4D4D;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.info-5-sidebar span {
  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.info-5-content {
  flex: 1;
}

.info-6-layout {
  columns: 2;
  column-gap: 48px;
}

.info-6-layout h2 {
  column-span: all;
  margin-bottom: 24px;
}

.info-7-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}

.info-7-highlight {
  background: #1a1a1a;
  padding: 32px;
  color: #FFB3B3;
}

.info-7-highlight p {
  color: #FFB3B3;
  font-size: 0.95rem;
}

.info-8-layout {
  position: relative;
  padding-left: 32px;
}

.info-8-layout::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, #FF4D4D, #FFB3B3);
}

.info-9-layout {
  background: #1a1a1a;
  padding: 48px;
  margin: 0 -24px;
}

.info-9-layout h2 {
  color: #ffffff;
}

.info-9-layout p {
  color: #cccccc;
  max-width: 800px;
}

.info-10-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.info-10-label {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: #FF4D4D;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
}

.footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 48px 24px 32px;
  border-top: 3px solid #FFB3B3;
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 40px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
}

.footer-links a {
  color: #FFB3B3;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 179, 179, 0.2);
  border-bottom: 1px solid rgba(255, 179, 179, 0.2);
  margin-bottom: 32px;
}

.footer-badges a,
.footer-badges span {
  display: block;
}

.footer-badges img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-badges a:hover img {
  opacity: 1;
}

.footer-disclosure {
  font-size: 11px;
  color: #999999;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-notice {
  font-size: 12px;
  color: #aaaaaa;
  line-height: 1.7;
}

.footer-notice p {
  margin-bottom: 12px;
}

.footer-notice strong {
  color: #FFB3B3;
  display: block;
  margin-bottom: 8px;
  margin-top: 16px;
}

.cookie-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border-top: 2px solid #FF4D4D;
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slideUp 0.5s ease forwards;
}

.cookie-checkbox:checked ~ .cookie-banner {
  display: none;
}

.cookie-banner p {
  color: #cccccc;
  font-size: 0.875rem;
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease;
}

.cookie-btn-accept {
  background: #FF4D4D;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #FF8080;
}

.cookie-btn-reject {
  background: transparent;
  color: #FFB3B3;
  border: 1px solid #FFB3B3;
}

.cookie-btn-reject:hover {
  background: rgba(255, 179, 179, 0.1);
}

.page-content {
  padding: 48px 24px 80px;
  animation: fadeIn 0.8s ease forwards;
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #1a1a1a;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #FF4D4D;
}

.page-content h2 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-top: 32px;
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 1.1rem;
  color: #5C2A2A;
  margin-top: 24px;
  margin-bottom: 12px;
}

.page-content p {
  margin-bottom: 16px;
  color: #5C2A2A;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #5C2A2A;
}

.page-content li {
  margin-bottom: 8px;
}

.contact-form-wrapper {
  margin-top: 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(255, 77, 77, 0.1);
  border-radius: 8px;
}

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

.form-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5C2A2A;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 77, 77, 0.2);
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: #5C2A2A;
  background: #FFF0F0;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #FF4D4D;
}

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

.field-error {
  display: none;
  color: #FF4D4D;
  font-size: 0.8rem;
  margin-top: 6px;
}

.form-field input:user-invalid:not(:focus):not(:placeholder-shown) ~ .field-error,
.form-field input:user-invalid:focus ~ .field-error {
  display: block;
}

.form-submit {
  background: #FF4D4D;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: #FF8080;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success:target {
  display: block;
}

.contact-form-wrapper:has(#mensagem-enviada:target) .contact-form {
  display: none;
}

.form-success p {
  font-size: 1.1rem;
  color: #5C2A2A;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
}

.error-page h1 {
  font-size: clamp(4rem, 10vw, 8rem);
  color: #1a1a1a;
  margin-bottom: 16px;
}

.error-page p {
  color: #B38686;
  font-size: 1.1rem;
  margin-bottom: 32px;
}

.error-page a {
  display: inline-block;
  background: #FF4D4D;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.error-page a:hover {
  background: #FF8080;
  color: #ffffff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .info-1-layout,
  .info-5-layout,
  .info-7-layout,
  .info-10-layout {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .info-3-layout {
    grid-template-columns: 1fr;
  }

  .info-5-sidebar {
    flex: none;
    width: 100%;
  }

  .info-6-layout {
    columns: 1;
  }

  .info-10-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 2rem;
  }

  .info-9-layout {
    margin: 0;
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100vh;
    background: #1a1a1a;
    flex-direction: column;
    align-items: stretch;
    padding: 80px 0 24px;
    gap: 0;
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    border-left: 3px solid #FF4D4D;
    border-radius: 0;
  }

  .nav-toggle:checked ~ .nav-links {
    left: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero h1 {
    text-align: center;
    border-bottom: none;
    border-top: 4px solid #000000;
    padding-top: 20px;
    padding-bottom: 0;
  }

  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .offer-card-logo {
    height: 100px;
  }

  .offer-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .offer-bonus {
    font-size: 0.85rem;
  }
}
