/* ==========================================================================
   DEV APRENDER CLONE - HIGH PERFORMANCE PURE CSS
   ========================================================================== */

:root {
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --color-bg-header: #050A2E;
  --color-border-header: #15205D;
  --color-bg-dark: #000411;
  --color-text-white: #FFFFFF;
  --color-text-muted: #A0AEC0;
  --color-accent-cyan: #07FFE1;
  --color-accent-blue: #00BCFF;
  --color-accent-green: #09C500;
  --color-accent-red: #FF0000;
  --color-accent-yellow: #f9af02;
  --container-max-width: 1280px;
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 100%;
  /* clip, not hidden: hidden turns the page into a scroll container and
     breaks position: sticky on the header */
  overflow-x: clip;
}

body {
  max-width: 100%;
  overflow-x: clip;
  line-height: 1.5;
  background-color: var(--color-bg-dark);
}

/* Custom Scrollbar */
body::-webkit-scrollbar {
  width: 12px;
}

body::-webkit-scrollbar-track {
  background: #202020;
}

body::-webkit-scrollbar-thumb {
  background-color: #2196f3;
  border-radius: 10px;
  border: 2px solid #202020;
}

*::selection {
  color: #ffffff;
  background: #2196f3;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Text Gradients */
.text-gradient {
  padding-right: 0.05em;
  background-image: linear-gradient(341deg, #07FFE1 23%, #524add 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-yellow {
  padding-right: 0.05em;
  background-image: linear-gradient(28deg, #f9af02 29%, #fcee8c 82%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button Animations & Shared Styles */
@keyframes textura {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, filter 0.2s ease;
  text-decoration: none;
  text-align: center;
}

.btn:hover {
  transform: scale(1.03);
}

/* ==========================================================================
   Header Navigation
   ========================================================================== */
section[id], div[id] {
  scroll-margin-top: 90px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg-header);
  border-bottom: 1px solid var(--color-border-header);
  box-shadow: 0px 10px 30px -18px rgba(0, 0, 0, 0.65);
}

.header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand-logo {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.desktop-nav .nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 28px;
}

.desktop-nav .nav-menu a {
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  transition: color 0.2s ease;
}

.desktop-nav .nav-menu a:hover,
.desktop-nav .nav-menu a.active {
  color: #00FFDE;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-header {
  background-color: #22E7E3;
  color: #0A113A;
  font-size: 16px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 999px;
  box-shadow: 0 10px 28px -18px rgba(34, 231, 227, 0.9);
  gap: 10px;
}

.btn-header .chevron-icon {
  width: 11px;
  height: 14px;
}

.btn-header:hover {
  filter: saturate(120%);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #00FFDE;
  cursor: pointer;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.mobile-menu-btn svg {
  width: 100%;
  height: 100%;
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .hamburger-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

.mobile-dropdown {
  display: none;
  background-color: #050A2E;
  border-bottom: 1px solid var(--color-border-header);
  padding: 16px 24px 24px;
}

.mobile-dropdown.open {
  display: block;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: #FFFFFF;
  display: block;
  padding: 6px 0;
}

.mobile-menu a.active {
  color: #00FFDE;
}

.mobile-cta {
  margin-top: 10px;
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 650px;
  background-image: url("/images/BG-01-2.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 160px;
  display: flex;
  align-items: center;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
}

.hero-title {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -1.1px;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.45;
  color: #E2E8F0;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.btn-animated-cyan {
  background-image: linear-gradient(45deg, #1BBAED, #07FFE1, #1BBAED, #07FFE1);
  background-size: 400% 200%;
  animation: textura 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) infinite;
  color: #111111;
  font-size: 14px;
  font-weight: 800;
  border-radius: 42px;
  padding: 16px 28px;
}

.btn-animated-blue {
  background-image: linear-gradient(45deg, #0052cc, #00BCFF, #0052cc, #00BCFF);
  background-size: 400% 200%;
  animation: textura 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) infinite;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  border-radius: 68px;
  padding: 16px 28px;
}

/* ==========================================================================
   Callout Card Section (Python Code Background)
   ========================================================================== */
.callout-section {
  position: relative;
  background-image: url("/images/bg-02v3.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.callout-card {
  max-width: 820px;
  margin: 0 auto;
  background-image: linear-gradient(110deg, #0052CC 0%, #0B8F8F 100%);
  border-radius: 20px;
  box-shadow: 0px 0px 33px 16px rgba(0, 0, 0, 0.94);
  padding: 40px 48px;
  text-align: center;
}

.callout-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.callout-desc {
  font-size: 16px;
  line-height: 1.5;
  color: #E2E8F0;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   Testimonials Section (Resultados de Alunos)
   ========================================================================== */
.testimonials-section {
  padding: 100px 0 80px;
  background-color: var(--color-bg-dark);
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.section-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 16px;
}

.section-intro p:last-child {
  margin-bottom: 0;
  font-weight: 600;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 2px solid #07FFE1;
  border-radius: 20px;
  box-shadow: 0px 0px 42px 3px rgba(7, 255, 225, 0.22);
  overflow: hidden;
  background-color: #000000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 0px 50px 6px rgba(7, 255, 225, 0.35);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.04);
  filter: brightness(108%);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  z-index: 2;
  pointer-events: none;
}

.video-play-btn svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  filter: brightness(115%);
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ==========================================================================
   Community Section (YouTube Channel)
   ========================================================================== */
.community-section {
  padding: 80px 0 100px;
  background-color: var(--color-bg-dark);
}

.community-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.community-text {
  flex: 1;
  max-width: 520px;
}

.community-title {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 24px;
}

.community-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #E2E8F0;
  margin-bottom: 32px;
}

.btn-green {
  background-color: var(--color-accent-red);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  border-radius: 42px;
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
}

.btn-green .youtube-icon {
  width: 22px;
  height: 22px;
}

.btn-green:hover {
  filter: brightness(110%);
}

.community-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.community-image img {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
}

/* ==========================================================================
   Story Section (Jhonatan Background)
   ========================================================================== */
.story-section {
  position: relative;
  background-image: url("/images/bg-04-2.jpg");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 120px 0;
}

.story-container {
  display: flex;
  justify-content: flex-end;
}

.story-content {
  max-width: 680px;
  background: rgba(0, 4, 17, 0.4);
  backdrop-filter: blur(2px);
  padding: 30px;
  border-radius: 16px;
}

.story-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.story-paragraphs p {
  font-size: 16px;
  line-height: 1.65;
  color: #E2E8F0;
  margin-bottom: 18px;
}

.story-paragraphs p:last-child {
  margin-bottom: 0;
}

.story-paragraphs strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ==========================================================================
   Orçamentos Section (Merged)
   ========================================================================== */
.orcamentos-section {
  padding: 100px 0;
  background-color: var(--color-bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.orcamentos-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.orcamentos-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 28px;
}

.orcamentos-intro-box {
  text-align: left;
  line-height: 1.8;
  font-size: 18px;
  color: #E2E8F0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px 30px;
  margin-bottom: 50px;
}

.orcamentos-intro-box p {
  margin-bottom: 16px;
}

.orcamentos-intro-box p:last-child {
  margin-bottom: 0;
}

.orcamentos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.instructions-title {
  font-size: 32px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
}

.instructions-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.instructions-list {
  padding-left: 24px;
  margin-bottom: 24px;
  color: #E2E8F0;
  font-size: 16px;
  line-height: 1.6;
}

.instructions-list li {
  margin-bottom: 10px;
}

/* Form Styles */
.orcamentos-form-wrapper {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #FAFAFA;
  margin-bottom: 8px;
}

.required-mark {
  color: #07FFE1;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--font-main);
  color: #111111;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #00BCFF;
  box-shadow: 0 0 0 3px rgba(0, 188, 255, 0.25);
}

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

.form-desc {
  font-size: 13px;
  color: #A0AEC0;
  margin-top: 6px;
  line-height: 1.4;
}

/* File Dropzone */
.file-dropzone {
  border: 2px dashed #A0AEC0;
  background-color: #FFFFFF;
  border-radius: 6px;
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  color: #4A5568;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  position: relative;
}

.file-dropzone:hover {
  border-color: #00BCFF;
  background-color: #F7FAFC;
}

.file-dropzone input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.dropzone-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  color: #718096;
}

.dropzone-title {
  font-size: 15px;
  font-weight: 600;
  color: #2D3748;
}

.dropzone-title span {
  color: #0084FF;
  text-decoration: underline;
}

.dropzone-hint {
  font-size: 13px;
  color: #718096;
  margin-top: 4px;
}

/* Radio List */
.radio-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #FFFFFF;
  font-size: 15px;
}

.radio-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #00BCFF;
  cursor: pointer;
}

.btn-submit {
  background-color: #0084FF;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 132, 255, 0.3);
}

.btn-submit:hover {
  background-color: #006ED4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 132, 255, 0.4);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background-image: url("/images/bg-05.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #07FFE1;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  padding: 9px;
}

.social-icon:hover {
  background: #07FFE1;
  color: #000411;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.copyright-main {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.copyright-links a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.copyright-links a:hover {
  color: #07FFE1;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    background-image: url("/images/BG-04-tablet-1.jpg");
    padding-top: 80px;
    padding-bottom: 320px;
  }

  .hero-title {
    font-size: 36px;
  }

  .callout-title {
    font-size: 28px;
  }

  .community-container {
    flex-direction: column;
    text-align: center;
  }

  .community-text {
    max-width: 100%;
  }

  .community-image {
    display: none;
  }

  .btn-green {
    margin: 0 auto;
  }

  .story-section {
    background-image: url("/images/BG-04-tablet.jpg");
    padding-top: 480px;
    padding-bottom: 80px;
  }

  .story-container {
    justify-content: center;
  }

  .story-content {
    max-width: 100%;
    background: rgba(0, 4, 17, 0.75);
    text-align: center;
  }

  .orcamentos-grid {
    gap: 40px;
  }
}

@media (max-width: 767px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .header-right .btn-header {
    display: none;
  }

  .hero-section {
    background-image: url("/images/Artboard-3.jpg");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 60px;
    padding-bottom: 580px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 100%;
  }

  .btn-animated-cyan,
  .btn-animated-blue {
    width: 100%;
    max-width: 320px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .callout-section {
    padding: 60px 0;
  }

  .callout-card {
    padding: 28px 18px;
  }

  .callout-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .callout-desc {
    font-size: 14px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .section-intro p {
    font-size: 14px;
    line-height: 1.55;
  }

  /* 2-column video grid matching original mobile view */
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .video-card {
    border-radius: 12px;
    border-width: 1.5px;
    box-shadow: 0px 0px 20px 2px rgba(7, 255, 225, 0.2);
  }

  .video-play-btn {
    transform: translate(-50%, -50%) scale(0.65);
  }

  .video-card:hover .video-play-btn {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .community-section {
    padding: 60px 0;
  }

  .community-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .community-desc {
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .story-section {
    background-image: none;
    background-color: var(--color-bg-dark);
    padding: 60px 0;
  }

  .story-content {
    padding: 0;
    background: transparent;
    text-align: left;
  }

  .story-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .story-paragraphs p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  /* Orçamentos Mobile */
  .orcamentos-section {
    padding: 50px 0 60px;
  }

  .orcamentos-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .orcamentos-intro-box {
    font-size: 15px;
    line-height: 1.6;
    padding: 18px 16px;
    margin-bottom: 36px;
  }

  .orcamentos-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    width: 100%;
  }

  .instructions-title {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .instructions-subtitle {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 10px;
  }

  .instructions-list {
    font-size: 14px;
    padding-left: 20px;
    margin-bottom: 18px;
  }

  .orcamentos-form-wrapper {
    padding: 20px 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group {
    margin-bottom: 18px;
    width: 100%;
  }

  .form-label {
    font-size: 15px;
  }

  .form-input,
  .form-textarea {
    font-size: 16px;
    padding: 10px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .file-dropzone {
    padding: 20px 14px;
    width: 100%;
    box-sizing: border-box;
  }

  .dropzone-title {
    font-size: 14px;
  }

  .btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-container {
    padding: 14px 16px;
  }

  .hero-section {
    padding-top: 40px;
    padding-bottom: 500px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .callout-title {
    font-size: 20px;
  }

  .section-title {
    font-size: 24px;
  }

  .community-title {
    font-size: 24px;
  }

  .story-title {
    font-size: 22px;
  }

  .orcamentos-title {
    font-size: 22px;
  }
}

/* ============================================
   LINKS ÚTEIS PAGE
   ============================================ */
.links-page {
  background: var(--color-bg-dark);
  min-height: 100vh;
}

.links-main {
  padding: 48px 20px 64px;
}

.links-container {
  max-width: 560px;
  margin: 0 auto;
}

.links-header {
  text-align: center;
}

.links-logo {
  display: block;
  width: 180px;
  height: auto;
  margin: 0 auto 24px;
  border-radius: 50%;
}

.links-welcome {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-white);
  margin-bottom: 24px;
}

.links-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.links-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--color-border-header);
  border-radius: 999px;
  background: var(--color-bg-header);
  color: var(--color-text-white);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.links-social a:hover {
  border-color: var(--color-accent-cyan);
  color: var(--color-accent-cyan);
}

.links-social svg {
  width: 20px;
  height: 20px;
}

.links-section-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-text-white);
  text-align: center;
  margin-bottom: 24px;
}

.links-cards {
  margin-bottom: 56px;
}

.links-card {
  display: block;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.links-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(7, 255, 225, 0.15);
}

.links-card img {
  display: block;
  width: 100%;
  height: auto;
}






.links-footer {
  margin-top: 56px;
  text-align: center;
}

.links-footer a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  text-decoration: none;
}

.links-footer a:hover {
  color: var(--color-accent-cyan);
}

@media (max-width: 480px) {
  .links-main { padding: 32px 16px 48px; }
  .links-logo { width: 140px; }
  .links-welcome { font-size: 1.625rem; }
  .links-section-title { font-size: 1.25rem; }
}
