@import url('https://fonts.googleapis.com/css2?family=Oxanium:wght@300;400;600;700&display=swap');

/* Paleta oficial da Fantasy Studio */
:root {
  --preto-onyx: #121212;
  --branco-neve: #F4F9FF;
  --azul-eletrico: #297FFF;
  --turquesa-neon: #00E0FF;
  --cinza-grafite: #2E2E33;
  --lilas-digital: #8E8BFF;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilo global */

body {
  background: radial-gradient(circle at 20% 20%, rgba(41, 127, 255, 0.18), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(0, 224, 255, 0.2), transparent 50%),
              linear-gradient(180deg, rgba(18, 18, 18, 0.95) 0%, rgba(10, 10, 12, 0.98) 100%);
  color: var(--branco-neve);
  font-family: 'Oxanium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  padding: 32px 24px 80px;
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -120px;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background: radial-gradient(circle at 15% 20%, rgba(142, 139, 255, 0.35), transparent 55%),
              radial-gradient(circle at 85% 30%, rgba(0, 224, 255, 0.25), transparent 60%);
  filter: blur(80px);
  opacity: 0.65;
}

body::after {
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.15;
  z-index: -3;
}

/* Cabeçalho */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  margin: 0 auto 48px;
  max-width: 1200px;
  background: rgba(23, 24, 32, 0.82);
  border: 1px solid rgba(41, 127, 255, 0.35);
  border-radius: 20px;
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.55), 0 0 32px rgba(0, 224, 255, 0.15);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 24px;
  z-index: 3800;
  isolation: isolate;
}

header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(0, 224, 255, 0.18), transparent 65%);
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: -1;
}

header:hover::before {
  opacity: 1;
}

header h1 {
  color: var(--branco-neve);
  font-size: 2rem;
}

/* Navegação */

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

nav a {
  position: relative;
  color: rgba(244, 249, 255, 0.72);
  margin: 0;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
  padding: 8px 0;
  transition: color 0.3s ease;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--azul-eletrico), var(--turquesa-neon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 224, 255, 0.45);
}

nav a:hover {
  color: var(--branco-neve);
}

nav a:hover::after {
  transform: scaleX(1);
}

body {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.loaded {
  opacity: 1;
}

/* Seções principais */

main {
  margin-top: 48px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px 80px;
  position: relative;
  z-index: 2;
}


section h2 {
  color: var(--turquesa-neon);
  margin-bottom: 32px;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-shadow: 0 0 24px rgba(0, 224, 255, 0.28);
}


section p {
  font-size: 1.05rem;
  color: rgba(244, 249, 255, 0.78);
}

/* Rodapé */
footer {
  background-color: var(--cinza-grafite);
  text-align: center;
  padding: 15px;
  margin-top: 50px;
  font-size: 0.9rem;
  color: var(--branco-neve);
}

/* Hero section */
.hero {
  position: relative;
  height: 100vh;
  background: linear-gradient(145deg, #121212, #1a1a1f);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  color: #F4F9FF;
}

.hero-image {
  max-width: 800px; /* antes: 300px */
  margin: 0 auto -20px auto;
  display: block;
  filter: drop-shadow(0 0 6px #00e0ff40); /* leve brilho */
}


.hero-image:hover {
  transform: scale(1.03);
}

.tagline {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  color: #00E0FF;
  font-weight: 300;
}

.btn-hero {
  padding: 0.75rem 1.5rem;
  background-color: #297FFF;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-hero:hover {
  background-color: #005fe0;
}

@media screen and (max-width: 768px){
  .hero-image{ max-width: 500px; }
  .tagline{font-size: 0.8rem;}
}


/* Seletor de idioma */
.language-switcher {
  position: fixed;
  top: 28px;
  right: 28px;
  z-index: 1400;
}

.language-switcher select {
  width: 170px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(23, 24, 32, 0.85);
  color: var(--branco-neve);
  border: 1px solid rgba(0, 224, 255, 0.45);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Oxanium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(18px);
}

.language-switcher select:focus {
  border-color: rgba(0, 224, 255, 0.85);
  box-shadow: 0 0 18px rgba(0, 224, 255, 0.35);
  outline: none;
}

@media screen and (max-width: 768px) {
  .language-switcher {
    display: none;
  }
}

/* Projetos */
.projects-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  width: 100%;
}



/* Projetos */
.project-showcase {
  padding: 60px 20px;
  background-color: var(--preto-onyx);
  color: var(--branco-neve);
  text-align: center;
  position: relative;
  z-index: 5;
}

.project-showcase h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--turquesa-neon);
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.project-card {
  background-color: var(--cinza-grafite);
  border: 1px solid var(--azul-eletrico);
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px var(--turquesa-neon);
}

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

.project-card h3 {
  color: var(--lilas-digital);
  margin: 15px 0 10px;
}

.project-card p {
  font-size: 0.9rem;
  padding: 0 15px 20px;
}
@media screen and (max-width: 768px){
  .project-card{max-width: 200px;}
  .project-card h3 { color: var(--lilas-digital); margin: 15px 0 10px;font-size: 0.8rem;}
  .project-card p {font-size: 0.6rem; padding: 0 15px 20px;}
}

/* Logo e título */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: flex-start;
}

.brand-logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logo img:hover {
  transform: rotate(-4deg) scale(1.05);
  filter: drop-shadow(0 0 18px rgba(0, 224, 255, 0.45));
}

.brand-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--branco-neve);
  text-shadow: 0 0 16px rgba(41, 127, 255, 0.4);
}

/* Partículas */
#tsparticles {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

/* Rodapé */
.site-footer {
  margin-top: 80px;
  background: rgba(16, 18, 28, 0.9);
  color: rgba(244, 249, 255, 0.72);
  padding: 32px 24px;
  text-align: center;
  font-size: 0.95rem;
  border-top: 1px solid rgba(41, 127, 255, 0.25);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom left, rgba(0, 224, 255, 0.18), transparent 55%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  filter: blur(30px);
}


.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-links {
  margin: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.footer-links a {
  color: rgba(244, 249, 255, 0.75);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-links a:hover {
  color: var(--turquesa-neon);
  text-shadow: 0 0 12px rgba(0, 224, 255, 0.4);
}

.footer-socials a {
  color: rgba(244, 249, 255, 0.75);
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px) scale(1.05);
  color: var(--turquesa-neon);
  text-shadow: 0 0 16px rgba(0, 224, 255, 0.4);
}

/* nossa Visao */
.vision-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.vision-content h2 {
  font-size: 2.2rem;
  color: var(--turquesa-neon);
  margin-bottom: 40px;
  text-align: center;
}

.vision-content h3 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--lilas-digital);
  font-size: 1.4rem;
}

.vision-content p,
.vision-content ul {
  font-size: 1.1rem;
  color: var(--branco-neve);
  line-height: 1.7;
}

.vision-content ul {
  list-style-type: disc;
  padding-left: 20px;
}
/*Contate-nos*/
.contact-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #fff;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #8E8BFF; /* Lilás Digital */
}

.contact-section p {
  font-size: 1rem;
  margin-bottom: 30px;
}

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

.contact-section label {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.contact-section input,
.contact-section textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #444;
  border-radius: 5px;
  background-color: #222;
  color: #fff;
  resize: vertical;
}

.contact-section button {
  padding: 12px;
  background-color: #297FFF; /* Azul Elétrico */
  color: white;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-section button:hover {
  background-color: #005fd3;
}
/*Projetos*/
.project-showcase--large {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: linear-gradient(160deg, rgba(23, 24, 36, 0.9), rgba(12, 13, 20, 0.96));
  border: 1px solid rgba(142, 139, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(28px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.project-showcase--large::before {
  content: "";
  position: absolute;
  inset: -40% -10% 50%;
  background: radial-gradient(circle at top right, rgba(0, 224, 255, 0.3), transparent 55%);
  opacity: 0.7;
  z-index: -1;
  filter: blur(40px);
}

.project-showcase--large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 127, 255, 0.18), transparent 60%);
  opacity: 0.3;
  z-index: -2;
}

.project-card--large {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, rgba(25, 26, 38, 0.95) 0%, rgba(12, 13, 20, 0.98) 100%);
  border: 1px solid rgba(41, 127, 255, 0.28);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.55);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
  backdrop-filter: blur(12px);
}

.project-card--large::before {
  content: "";
  position: absolute;
  inset: -120% -40% 60%;
  background: linear-gradient(120deg, rgba(0, 224, 255, 0.5), rgba(41, 127, 255, 0.3), transparent 70%);
  opacity: 0;
  transform: rotate(12deg);
  transition: opacity 0.45s ease, transform 0.45s ease;
  filter: blur(26px);
  z-index: 0;
}

.project-card--large:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 224, 255, 0.6);
  box-shadow: 0 28px 50px rgba(0, 224, 255, 0.2);
}

.project-card--large:hover::before {
  opacity: 1;
  transform: rotate(0deg);
}

.project-card--large img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  filter: saturate(1.1);
  border-bottom: 1px solid rgba(41, 127, 255, 0.32);
}

.project-card--large .project-info {
  position: relative;
  z-index: 1;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.project-card--large .project-info h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--turquesa-neon);
  text-shadow: 0 0 16px rgba(0, 224, 255, 0.35);
}

.project-card--large .project-info p {
  margin: 0;
  color: rgba(244, 249, 255, 0.75);
  line-height: 1.7;
  font-size: 1rem;
}



@media (max-width: 768px) {
  .project-card,.project-card--large {
    flex-direction: column;
    align-items: center;
  }

  .project-card img {
    width: 100%;
    height: auto;
  }

  .project-info {
    text-align: center;
    padding: 20px;
  }
}

/*Modal*/
.modal {
  display: none;
  position: fixed;
  z-index: 9000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
}

.modal-content {
  background-color: #121212;
  margin: 10% auto;
  padding: 2rem;
  border: 2px solid #297FFF;
  width: 80%;
  max-width: 800px;
  color: #F4F9FF;
  border-radius: 10px;
}

.close-button {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #F4F9FF;
}


.modal {
  display: none;
  position: fixed;
  z-index: 9001;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background-color: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  overflow-y: auto; /* habilita rolagem vertical */
}

.modal-content {
  background-color: #121212;
  color: #F4F9FF;
  margin: 10% auto;
  padding: 2rem;
  border: 2px solid #297FFF;
  border-radius: 8px;
  max-width: 600px;
  box-shadow: 0 0 20px #297FFF55;
}

.close-button {
  float: right;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
.close-button:hover {
  color: #00E0FF;
}

.project-btn {
  align-self: flex-start;
  background: linear-gradient(90deg, var(--azul-eletrico), var(--turquesa-neon));
  color: var(--preto-onyx);
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(0, 224, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.project-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 28px rgba(0, 224, 255, 0.55);
  filter: brightness(1.1);
}

@media screen and (max-width: 768px) {
  .modal {
    min-height: 100vh; /* garante altura mínima */
    overflow-y: auto; /* habilita rolagem vertical */
    -webkit-overflow-scrolling: touch; /* rolagem suave no iOS */
  }

  .modal-content {
    margin: 5vh auto; /* margem menor, evita corte */
  }
}

/*galeria alice*/
.carousel-section {
  text-align: center;
  padding: 60px 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 15px #297FFF88;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.carousel-slide {
  min-width: 100%;
  height: auto;
  object-fit: cover;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #555;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dots button.active {
  background-color: #00E0FF;
  box-shadow: 0 0 6px #00E0FFAA;
}

/*hero pg alice*/
.hero-full {
  position: relative;
  margin-bottom: 80px;
  height: 600px;
  background: url('../assets/Alice_cover_official.png') center center / contain no-repeat;
  background-color: #121212;
  /*border-bottom: 2px solid var(--azul-eletrico);*/
  display: flex;
  justify-content: center;
  align-items: flex-end; 
  padding-bottom: 100px;
}

.hero-full .hero-overlay.hero-contained {
  background: rgba(0, 0, 0, 0.8);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  max-width: 800px;
  z-index: 1;
}

.hero-full h1 {
  font-size: 3.2rem;
  color: var(--azul-eletrico);
  margin-bottom: 20px;
  text-shadow: 0 0 10px #297fffaa;
}

.hero-full p {
  font-size: 1.2rem;
  color: var(--branco-neve);
  margin-bottom: 20px;
}

.hero-full .btn-hero {
  font-size: 1rem;
  padding: 12px 24px;
  background-color: var(--azul-eletrico);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-full .btn-hero:hover {
  background-color: var(--turquesa-neon);
  color: #121212;
  box-shadow: 0 0 10px var(--turquesa-neon);
}

/*Smartphones e telas pequenas*/
/* Esconder navbar tradicional no mobile */


#mobile-nav {
  display: none;
  position: fixed;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--azul-eletrico), var(--turquesa-neon));
  padding: 8px;
  border-radius: 12px;
  z-index: 1400;
  box-shadow: 0 12px 28px rgba(0, 224, 255, 0.3);
}

@media screen and (max-width: 768px) {
  nav {
    display: none; /* Esconde nav desktop */
  }
  #mobile-nav {
    display: block; /* Mostra menu mobile */
  }
  #mobile-nav ul {
    right: 16px;
    width: min(320px, calc(100% - 32px));
  }
}



#mobile-nav button {
  font-size: 26px;
  color: var(--preto-onyx);
  background: none;
  border: none;
  cursor: pointer;
}


#mobile-nav ul {
  list-style: none;
  padding: 16px;
  margin: 12px 0 0 0;
  display: none;
  flex-direction: column;
  gap: 14px;
  background: rgba(10, 11, 18, 0.94);
  border: 1px solid rgba(41, 127, 255, 0.35);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 80px;
  right: 24px;
  width: min(320px, calc(100% - 48px));
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  z-index: 3600;
  align-items: stretch;
  backdrop-filter: blur(18px);
}


#mobile-nav ul.show {
  display: flex;
}

#mobile-overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 12, 20, 0.75), rgba(9, 12, 20, 0.85));
  backdrop-filter: blur(6px);
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}


#mobile-nav ul li {
  margin: 0;
}


#mobile-nav ul li a {
  color: var(--branco-neve);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

#mobile-nav ul li.mobile-language {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(41, 127, 255, 0.25);
}

#mobile-nav ul li.mobile-language select {
  width: 100%;
  padding: 10px 16px;
  border-radius: 12px;
  background: rgba(23, 24, 32, 0.88);
  color: var(--branco-neve);
  border: 1px solid rgba(0, 224, 255, 0.45);
  font-family: 'Oxanium', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(18px);
}

#mobile-nav ul li.mobile-language select:focus {
  border-color: rgba(0, 224, 255, 0.85);
  box-shadow: 0 0 18px rgba(0, 224, 255, 0.35);
  outline: none;
}


@media screen and (max-width: 1024px) {
  header {
    margin: 0 auto 40px;
    padding: 16px 24px;
  }
}

@media screen and (max-width: 768px) {
  body {
    padding: 20px 16px 60px;
  }

  header {
    position: relative;
    margin-bottom: 32px;
    padding: 16px 20px;
    top: 0;
    z-index: 3800;
  }

  nav {
    display: none;
  }

  .project-showcase--large {
    padding: 40px 24px;
  }

  .project-card--large img {
    height: 200px;
  }

  .project-btn {
    align-self: stretch;
    text-align: center;
  }

  .footer-content {
    gap: 16px;
  }
}

@media screen and (max-width: 576px) {
  .project-showcase--large {
    padding: 32px 20px;
  }

  .project-card--large .project-info {
    padding: 24px 20px 28px;
  }

  .project-card--large img {
    height: 180px;
  }
}
