@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

body {
  font-family: "Fjalla One", sans-serif;
  font-style: normal;
  background-color: #ffffff;
  padding: 0;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}



header {
    position: fixed;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(255, 255, 255);
    padding: 15px 4vw;
    border-radius: 50px;
    border: 2px solid rgb(0, 0, 0);
    box-sizing: border-box;
}

.logo {
    font-size: 3rem;
    font-weight: bold;
    text-decoration: none;
    color: #000000;
}

nav {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgb(0, 0, 0), rgb(19, 18, 18));
    border-radius: 50px;
    padding: 8px 20px;
}

.nav-item {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    color: #5c5a5a;
    padding: 10px 15px;
    margin: 0 5px;
    border: 2px solid transparent;
    border-radius: 80px;
    transition: border-color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-item:hover,
.nav-item.active {
    border-color: rgb(172, 172, 172);
    color: #ffffff;
}

.contact-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1001;
}

.contact-fab:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}


/* ============================================
   MENU MOBILE - Botão toggle
   ============================================ */

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #252525;
    border-radius: 8px;
    padding: 8px 20px;
    font-family: "Fjalla One", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #302e2e;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: #252525;
    color: #fff;
}

/* ============================================
   MENU MOBILE - Overlay
   ============================================ */

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1998;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   MENU MOBILE - Painel
   ============================================ */

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    right: 20px;
    width: 280px;
    z-index: 1999;
    background: #ffffff;
    border: 1.5px solid #252525;
    border-radius: 20px;
    padding: 30px 25px;
    flex-direction: column;
    align-items: flex-end;
    transform: translateX(30px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    display: flex;
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 25px;
    align-self: flex-end;
}

/* ============================================
   MENU MOBILE - Itens de navegação
   ============================================ */

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    gap: 5px;
    margin-bottom: 30px;
}

.mobile-nav-item {
    text-decoration: none;
    color: #302e2e;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 0;
    text-align: right;
    position: relative;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    transform: scaleX(0);
    width: 100%;
    height: 1.5px;
    background-color: #252525;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: right;
}

.mobile-nav-item:hover::after,
.mobile-nav-item.active::after {
    transform: scaleX(1);
}

.mobile-nav-item:hover {
    color: #000;
}

/* ============================================
   MENU MOBILE - Redes sociais
   ============================================ */

.mobile-menu-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    align-self: center;
    width: 100%;
}

.social-link {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.85rem;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-link:hover {
    color: #000;
}

/* ============================================
   MENU MOBILE - Localização
   ============================================ */

.mobile-menu-location {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    align-self: center;
}

.mobile-menu-location:hover {
    color: #000;
}

@media (max-width: 1100px) {

    /* Header mobile */
    nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    header {
        padding: 12px 5vw;
    }

    .logo {
        font-size: 1.6rem;
    }
}



/* ═══════════════════════════════════
       MAIN SECTION - LAYOUT OUSADO
    ═══════════════════════════════════ */

.blog-main {
  position: relative;
  min-height: 100vh;
  padding: clamp(4rem, 12vw, 10rem) clamp(1.5rem, 7vw, 7rem);
  background: linear-gradient(135deg, #0a3a66 0%, #1e5a96 25%, #2d7fbd 50%, #3a9fd6 75%, #2b6fa8 100%);
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Padrão de grid animado no main */
.blog-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, transparent 24%, rgba(255, 255, 255, 0.116) 25%, rgba(255, 255, 255, 0.11) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.144) 25%, rgba(255, 255, 255, 0.05) 26%, transparent 27%, transparent 74%, rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 76%, transparent 77%, transparent);
  background-size: 50px 50px;
  animation: gridAnimateBlue 15s linear infinite;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}

@keyframes gridAnimateBlue {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.blog-main::before {
  display: none;
}

.main-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}


.main-header {
  max-width: 800px;
  animation: fadeUp 0.9s 0.1s ease both;
}

.main-title {
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(2.8rem, 5vw, 7rem);
  font-weight: 500;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.main-title em {
  font-style: italic;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.main-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6) 0%, transparent 100%);
}

.main-desc {
  font-size: clamp(1.02rem, 1.2vw, 1.12rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.main-socials {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 0.2s ease both;
}

.social-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-whatsapp::before {
  background: #25D366;
}

.social-instagram::before {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-email::before {
  background: #1a1a1a;
}

.social-icon:hover {
  transform: translateY(-8px) scale(1.2);
  border-color: transparent;
  background: transparent;
}

.social-icon:hover::before {
  opacity: 1;
}

.social-icon i {
  position: relative;
  z-index: 1;
}



/* ═══════════════════════════════════
   BLOG SECTION
═══════════════════════════════════ */

.blog-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6rem) 1.5rem;
  overflow: hidden;
  background: #f8fbff;
}

/* Fundo sutil azul */
.blog-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 15% 20%, rgba(96, 165, 250, 0.12), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(125, 211, 252, 0.10), transparent 28%),
    radial-gradient(circle at 50% 80%, rgba(147, 197, 253, 0.10), transparent 32%);

  filter: blur(70px);
}

.blog-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

/* HEADER */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  font-weight: 300;
  color: #0f172a;
  margin-bottom: 1.2rem;
}

.section-title em {
  font-style: italic;
  color: #3b82f6;
}

.section-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}

/* GRID */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1rem;
}

/* CARD */

.blog-card {
  position: relative;
  background: rgb(255, 255, 255);
  border: 1px solid rgb(228, 226, 226);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 28px;
  overflow: hidden;
}


/* IMAGEM */

.blog-image {
  position: relative;
  overflow: hidden;
  height: 450px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.blog-image:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}

/* BODY */

.blog-body {
  padding: 2rem;
}

.blog-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: 5px;
  border: 1px solid rgba(11, 106, 223, 0.322);
  background: rgba(96, 165, 250, 0.322);
  color: #2563eb;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;

  margin-bottom: 1rem;
}


.blog-title {
  font-size: 1.35rem;
  line-height: 1.35;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-excerpt {
  color: #475569;
  line-height: 1.8;
  font-size: 0.96rem;
  margin-bottom: 1.5rem;
}

/* META */

.blog-meta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

/* LINK */

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #ffffff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  color: #2563eb;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.3s ease, color 0.3s ease;
}

.blog-link:hover {
  gap: 1rem;
  color: #1d4ed8;
}

/* RESPONSIVO */

@media (max-width: 768px) {

  .blog-section {
    padding: 4rem 1rem;
  }

  .blog-grid {
    gap: 1.5rem;
  }

  .blog-body {
    padding: 1.5rem;
  }

  .blog-image {
    height: 220px;
  }

}


/* ═══════════════════════════════════
       CTA SECTION
    ═══════════════════════════════════ */

.blog-cta-section {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 7vw, 7rem);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blog-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text {
  font-size: clamp(0.95rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.8rem;
  background: #ffffff;
  color: #1a1a1a;
  font-family: "Fjalla One", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.15);
}

.cta-btn svg {
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(4px);
}

/* ═══════════════════════════════════
       FOOTER
    ═══════════════════════════════════ */

.footer {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f5ff 100%);
  color: #1A1614;
  padding: clamp(4rem, 8vw, 6rem) clamp(1.5rem, 7vw, 7rem) clamp(2.5rem, 5vw, 3rem);
  border-top: 1px solid rgba(20, 18, 16, 0.1);
  position: relative;
  overflow: hidden;
}

/* Padrão diagonal animado no footer */
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(0, 0, 0, 0.034) 49%, rgba(0, 0, 0, 0.021) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(0, 0, 0, 0.03) 49%, rgba(0, 0, 0, 0.03) 51%, transparent 52%);
  background-size: 60px 60px;
  animation: diagonalMoveFooter 20s linear infinite;
  pointer-events: none;
  opacity: 0.8;
}

@keyframes diagonalMoveFooter {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(60px, 60px);
  }
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: clamp(4rem, 6vw, 5rem);
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 280px;
}

.footer-logo {
  font-family: "Fjalla One", sans-serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 1rem;
  color: #5A504A;
  font-style: italic;
}

.footer-cta {
  flex: 0 0 auto;
  text-align: right;
}

.cta-text-footer {
  font-size: 0.95rem;
  color: #5A504A;
  margin-bottom: 1rem;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
  font-family: "Fjalla One", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.btn-footer:hover {
  background: transparent;
  border-color: #1a1a1a;
  color: #1a1a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 18, 16, 0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.footer-col h4 {
  font-family: "Fjalla One", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.8rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #1a1a1a 0%, transparent 100%);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-col ul li i {
  font-size: 1rem;
  color: #1a1a1a;
  width: 20px;
  flex-shrink: 0;
}

.footer-col a,
.footer-col span {
  color: #5A504A;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: #1a1a1a;
  transform: translateX(4px);
}

.footer-social {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.footer-social h4 {
  font-family: "Fjalla One", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5A504A;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social-link {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 18, 16, 0.06);
  border: 2px solid rgba(20, 18, 16, 0.1);
  border-radius: 50%;
  color: #1a1a1a;
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.social-whatsapp-footer::before {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.social-instagram-footer::before {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-email-footer::before {
  background: linear-gradient(135deg, #0077ff 0%, #0a40f0 100%);
}

.social-link:hover {
  transform: translateY(-6px) rotate(5deg);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(20, 18, 16, 0.15);
}

.social-link:hover::before {
  opacity: 1;
}

.social-link i {
  position: relative;
  z-index: 1;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(20, 18, 16, 0.2) 50%, transparent 100%);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.85rem;
  color: #5A504A;
}

.footer-links {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-links a {
  color: #5A504A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #1a1a1a;
}

/* ═══════════════════════════════════
       ANIMAÇÕES
    ═══════════════════════════════════ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════
       RESPONSIVO
    ═══════════════════════════════════ */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .blog-card:nth-child(1),
  .blog-card:nth-child(2),
  .blog-card:nth-child(3),
  .blog-card:nth-child(4),
  .blog-card:nth-child(5),
  .blog-card:nth-child(6) {
    grid-column: auto;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cta {
    text-align: left;
    width: 100%;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .main-socials {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}