
/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #353e5c;
  line-height: 1.5;
  background-color: #fff;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #0096f1;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}
h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}
@media (min-width: 640px) {
  h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 22px;
  }
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) {
  .container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 64px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.header {
  background: #fff;
  border-bottom: 1px solid #f1f3f7;
  box-shadow: 0 8px 8px rgba(27, 9, 63, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
@media (min-width: 640px) {
  .header-inner {
    height: 64px;
  }
}
.logo {
  flex-shrink: 0;
}
.logo svg {
  width: 130px;
  height: auto;
}
@media (min-width: 640px) {
  .logo svg {
    width: 147px;
  }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #f8fafc;
  border: 1px solid #e1e4ed;
  border-radius: 8px;
}
.lang-switcher .lang-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 28px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6d758f;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.15s ease;
}
@media (min-width: 640px) {
  .lang-switcher .lang-link {
    min-width: 40px;
    height: 32px;
    font-size: 14px;
    padding: 0 12px;
  }
}
.lang-switcher .lang-link:hover {
  color: #005ea7;
  background: #fff;
}
.lang-switcher .lang-link.active {
  color: #fff;
  background: #0096f1;
  box-shadow: 0 2px 4px rgba(0, 150, 241, 0.3);
}
.lang-switcher .lang-link.active:hover {
  background: #0077ce;
}

/* Hero */
.hero {
  position: relative;
  background: #f8fafc;
  padding: 32px 0 48px;
  overflow: hidden;
}
@media (min-width: 640px) {
  .hero {
    padding: 48px 0 64px;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding: 64px 0 80px;
  }
}
.hero-bg {
  position: absolute;
  right: -200px;
  top: -100px;
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.hero-bg-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #dfefff;
  filter: blur(150px);
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 10;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #440ead;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .hero-badge {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.hero h1 {
  color: #19213d;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  .hero h1 {
    margin-bottom: 20px;
  }
}
.hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #6d758f;
  margin-bottom: 24px;
  max-width: 500px;
}
@media (min-width: 640px) {
  .hero-desc {
    font-size: 18px;
    margin-bottom: 32px;
  }
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    gap: 16px;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.15s ease;
}
@media (min-width: 640px) {
  .btn {
    height: 52px;
    font-size: 16px;
  }
}
.btn-primary {
  background: #0096f1;
  color: #fff;
  box-shadow: 0 1px 4px rgba(25, 33, 61, 0.08);
}
.btn-primary:hover {
  background: #0077ce;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-secondary {
  background: #fff;
  color: #0096f1;
  border: 2px solid #0096f1;
}
.btn-secondary:hover {
  background: #f8fafc;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.social-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}
.avatars {
  display: flex;
  position: relative;
  width: 80px;
  height: 32px;
  flex-shrink: 0;
}
.avatar {
  position: absolute;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #0096f1, #0077ce);
  border: 2px solid #fff;
}
.avatar:nth-child(1) {
  left: 0;
}
.avatar:nth-child(2) {
  left: 24px;
}
.avatar:nth-child(3) {
  left: 48px;
}
.social-proof p {
  font-size: 13px;
  line-height: 1.4;
  color: #6d758f;
}
@media (min-width: 640px) {
  .social-proof p {
    font-size: 14px;
  }
}
.hero-image {
  display: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Section common */
.section {
  padding: 48px 0;
}
@media (min-width: 640px) {
  .section {
    padding: 64px 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .section-header {
    margin-bottom: 56px;
  }
}
.section-header h2 {
  color: #005ea7;
}
.bg-light {
  background: #f8fafc;
}
.bg-white {
  background: #fff;
}

/* Countries Section */
.countries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .countries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.country-card {
  background: #fff;
  border: 1px solid #e1e4ed;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.15s ease;
}
@media (min-width: 640px) {
  .country-card {
    padding: 32px;
  }
}
.country-card:hover {
  border-color: #0096f1;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.country-flag {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
@media (min-width: 640px) {
  .country-flag {
    width: 56px;
    height: 56px;
  }
}
.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.country-card h3 {
  color: #19213d;
  margin-bottom: 4px;
  font-size: 18px;
}
.country-card .currency {
  color: #6d758f;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.country-card .delivery {
  margin-top: 0.75rem;
  color: #353e5c;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
}
.country-card .delivery svg {
  width: 16px;
  height: 16px;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  position: relative;
}
@media (min-width: 640px) {
  .steps-grid {
    gap: 32px;
  }
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.step-container {
  display: flex;
  justify-content: space-between;
  position: relative; /* Necessário para posicionar a linha */
}

/* A linha conectora */
.step-container::before {
  content: "";
  position: absolute;
  top: 21%;
  left: -87px;
  right: 50px;
  height: 2px;
  background-color: #CDE6FF;
  z-index: 0;
  background: linear-gradient(180deg, #0096F1 0%, #77CBFF 100%);
}

/* Linha conectora vertical em mobile */
@media (max-width: 767px) {
  .step-container {
    flex-direction: column;
    align-items: center;
  }

  .step-container::before {
    top: -23px;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, #0096F1 0%, #77CBFF 100%);
  }
}

.step-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e1e4ed;
  text-align: left;
  z-index: 2;
}

@media (min-width: 640px) {
  .step-card {
    padding: 32px;
  }
}
.step-number {
  position: absolute;
  top: -12px;
  left: 0%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(180deg, #0096f1 0%, #0077ce 100%);
  border-radius: 33554400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff8ff, #dfefff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px auto 16px;
}
@media (min-width: 640px) {
  .step-icon {
    width: 64px;
    height: 64px;
    margin: 24px 0 20px;
  }
}
.step-icon svg {
  width: 28px;
  height: 28px;
  color: #0096f1;
}
@media (min-width: 640px) {
  .step-icon svg {
    width: 32px;
    height: 32px;
  }
}
.step-card h3 {
  color: #19213d;
  font-size: 18px;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .step-card h3 {
    font-size: 20px;
  }
}
.step-card p {
  color: #6d758f;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .step-card p {
    font-size: 15px;
  }
}
@media (max-width: 639px) {
  .step-card {
    text-align: center;
  }
  .step-number {
    left: 50%;
    top: -18px;
  }
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.benefit-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e1e4ed;
  transition: all 0.15s ease;
}
@media (min-width: 640px) {
  .benefit-card {
    padding: 28px;
  }
}
.benefit-card:hover {
  border-color: #0096f1;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  background: #0096f1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.benefit-card h3 {
  color: #19213d;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .benefit-card h3 {
    font-size: 18px;
  }
}
.benefit-card p {
  color: #6d758f;
  font-size: 14px;
  line-height: 1.5;
}

/* Use Cases Section */
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 768px) {
  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.use-case-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e1e4ed;
  transition: all 0.15s ease;
}
@media (min-width: 640px) {
  .use-case-card {
    padding: 32px;
  }
}
.use-case-card:hover {
  border-color: #0096f1;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}
.use-case-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #eff8ff, #dfefff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.use-case-icon svg {
  width: 24px;
  height: 24px;
  color: #0096f1;
}
.use-case-card h3 {
  color: #19213d;
  font-size: 16px;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .use-case-card h3 {
    font-size: 18px;
  }
}
.use-case-card p {
  color: #6d758f;
  font-size: 14px;
  line-height: 1.5;
}

/* Comparison Table */
.comparison-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.comparison-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  background: #f1f5f9;
  border-radius: 8px;
  padding: 4px;
}
.comparison-tab {
  flex: 1;
  padding: 12px 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #6d758f;
  border-radius: 6px;
  transition: all 0.15s ease;
}
@media (min-width: 640px) {
  .comparison-tab {
    font-size: 15px;
    padding: 14px 20px;
  }
}
.comparison-tab.active {
  background: #fff;
  color: #0096f1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.comparison-table tbody tr:nth-child(odd) {
  background: #f8fafc;
}
.comparison-table th,
.comparison-table td {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #6D758F;
  width: 33.33%;
}
@media (min-width: 640px) {
  .comparison-table th,
  .comparison-table td {
    padding: 20px 24px;
    font-size: 15px;
    width: auto;
  }
  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 250px;
  }
  .comparison-table th:nth-child(2),
  .comparison-table td:nth-child(2) {
    width: 275px;
  }
  .comparison-table th:last-child,
  .comparison-table td:last-child {
    width: 320px;
  }
}
.comparison-table th {
  background: #005ea7;
  font-weight: 600;
  color: #fff;
}
.comparison-table th:last-child {
  background: #0096f1;
}
.comparison-table td:last-child {
  background: #dfefff;
  color: #353e5c;
  font-weight: 500;
}

.comparison-table tr:nth-child(even) td:last-child {
  background-color: #cde6ff !important;
}

/* .comparison-table td:-child { background: #0096F1; } */
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
}
.comparison-table td:first-child {
  color: #353E5C;
  font-weight: 500;
}
.comparison-table .cambiopay {
  color: #0096f1;
  font-weight: 600;
}
.comparison-table .bank {
  color: #6d758f;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
.check-icon {
  color: #22c55e;
}
.x-icon {
  color: #ef4444;
}
.cambiopay-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.cambiopay-cell .check-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.cambiopay-cell .check-icon svg {
  width: 100%;
  height: 100%;
}

/* Security Section */
.security {
  background: linear-gradient(180deg, #005ea7 0%, #003d6d 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .security {
    padding: 80px 0;
  }
}
.security-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}
.security-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  background: #fff;
  border-radius: 50%;
  filter: blur(100px);
}
.security-blob:first-child {
  top: -200px;
  right: -100px;
}
.security-blob:last-child {
  bottom: -200px;
  left: -100px;
}
.security-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.security h2 {
  color: #fff;
  margin-bottom: 16px;
}
.security-desc {
  color: #b8d4e8;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  .security-desc {
    font-size: 18px;
    margin-bottom: 48px;
  }
}
.security-highlight {
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 28.8px;
  margin-bottom: 40px;
}
.security-badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .security-badges {
    flex-direction: row;
    gap: 24px;
  }
}
.security-badge {
  display: flex;
  width: 279px;
  height: 181px;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 16.4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}
.security-icon-wrapper {
  display: flex;
  width: 64px;
  height: 64px;
  justify-content: center;
  align-items: center;
  border-radius: 33554400px;
  background: rgba(255, 255, 255, 0.2);
}
.security-icon-wrapper svg {
  width: 32px;
  height: 32px;
  color: #fff;
}
.security-badge span {
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 640px) {
  .security-badge span {
    font-size: 15px;
  }
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .faq-list {
    gap: 16px;
  }
}
.faq-item {
  background: #fff;
  border: 1px solid #e1e4ed;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s ease;
}
@media (min-width: 640px) {
  .faq-item summary {
    padding: 20px 24px;
  }
}
.faq-item summary:hover {
  background: #f8fafc;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary span {
  color: #19213d;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  padding-right: 16px;
}
@media (min-width: 640px) {
  .faq-item summary span {
    font-size: 16px;
  }
}
.faq-item summary svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #0096f1;
  transition: transform 0.2s ease;
}
.faq-item[open] summary svg {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 20px 16px;
  color: #6d758f;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .faq-answer {
    padding: 0 24px 20px;
    font-size: 15px;
  }
}

/* Final CTA */
.final-cta {
  background-color: #005ea7;
  background-image: url("../images/last-section.png");

  /* opacity: 0.2; */

  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) {
  .final-cta {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .final-cta {
    padding: 96px 0;
  }
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}
.final-cta-blob1 {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 400px;
  height: 400px;
  background: #fff;
  border-radius: 50%;
  filter: blur(64px);
}
.final-cta-blob2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: #fff;
  border-radius: 50%;
  filter: blur(64px);
}
.final-cta-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.final-cta h2 {
  color: #fff;
  margin-bottom: 16px;
  font-size: 28px;
}
@media (min-width: 640px) {
  .final-cta h2 {
    margin-bottom: 20px;
    font-size: 36px;
  }
}
.final-cta-desc {
  font-size: 16px;
  color: #b8e2ff;
  margin-bottom: 32px;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .final-cta-desc {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
    gap: 16px;
  }
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #005ea7;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
  transition: all 0.15s ease;
}
.btn-cta-primary:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
.btn-cta-primary svg {
  width: 20px;
  height: 20px;
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.15s ease;
}
.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-cta-secondary svg {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  background: #003d6d;
  padding: 24px 0;
}
@media (min-width: 640px) {
  .footer {
    padding: 32px 0;
  }
}
.footer-content {
  text-align: center;
  color: #fff;
  font-size: 14px;
}
@media (min-width: 640px) {
  .footer-content {
    font-size: 15px;
  }
}
.footer-content span {
  font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
