/* =========================
   VARIÁVEIS DE CORES E SOMBRAS
   ========================= */
:root {
  /* Paleta oficial */
  --primary: #e42278; /* Rosa Vibrante */
  --primary-light: #f5d3dd; /* Rosa Claro */
  --primary-dark: #ed7bab; /* Rosa Médio */
  --dark: #0d111a; /* Preto Profundo */
  --light: #f9f9f9; /* Branco Suave */

  /* Outras variáveis que podem ser úteis */
  --gray: #8a8a8a;
  --gray-light: #f8f9fa;
  --gray-dark: #343a40;
  --shadow: 0 10px 30px rgba(228, 34, 120, 0.1);
  --shadow-dark: 0 15px 40px rgba(13, 17, 26, 0.1);

  /* Transições e bordas */
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
}

/* (Opcional) Ajuste de variáveis Bootstrap se você o estiver usando */
:root {
  --bs-primary: var(--primary);
  --bs-primary-rgb: 228, 34, 120;
}

/* =========================
       TIPOGRAFIA
       ========================= */
/* Corpo do texto com Poppins Regular ou Lato Regular */
body {
  overflow: auto;
  padding-top: 76px;
  font-family: "Poppins", "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  overflow-x: hidden;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
  background-color: var(--light); /* Mantém o "Branco Suave" como fundo geral */
}

/* Títulos e Cabeçalhos com Poppins Bold ou Montserrat Bold */
h1,
h2,
h3,
h4,
h5,
h6,
.display-4,
.display-5 {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 700; /* Bold */
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--dark);
}

/* Texto de destaque (ex: .lead) com Poppins ou Lato, mas mais leve */
.lead {
  font-family: "Poppins", "Lato", sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--dark);
}

/* Fonte de Assinaturas e Detalhes (Parisienne / Dancing Script) */
.signature,
.signature * {
  font-family: "Parisienne", "Dancing Script", cursive !important;
  font-weight: 400;
}

/* =========================
       HEADER E NAVBAR
       ========================= */
header {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  height: 80px; /* Altura adequada da navbar */
  padding: 0.5rem 0; /* Ajuste de padding */
}

.navbar-brand img {
  max-height: 160px; /* Altura máxima da logo */
  width: auto; /* Mantém a proporção correta */
  object-fit: contain; /* Evita distorção */
}

.navbar-brand {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: white !important;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.nav-link {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
  position: relative;
  color: var(--dark) !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Estilos para o Modal de Login */
#loginModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 15px 40px rgba(26, 26, 46, 0.1);
}

#loginModal .modal-title {
  font-family: "Playfair Display", serif;
  color: #1a1a2e;
  font-weight: 600;
}

#loginModal .modal-body {
  padding: 1.5rem 2rem;
}

#loginModal .form-control {
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: 1px solid #e1e1e1;
  transition: all 0.3s ease;
}

#loginModal .form-control:focus {
  border-color: #e42278;
  box-shadow: 0 0 0 0.25rem rgba(228, 34, 120, 0.25);
}

#loginModal .btn-primary {
  background-color: #e42278;
  border-color: #e42278;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(228, 34, 120, 0.3);
  transition: all 0.3s ease;
}

#loginModal .btn-primary:hover {
  background-color: #ed7bab;
  border-color: #ed7bab;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 34, 120, 0.4);
}

#loginModal a {
  color: #e42278;
  transition: all 0.3s ease;
}

#loginModal a:hover {
  color: #ed7bab;
  text-decoration: underline !important;
}

#loginModal .form-check-input:checked {
  background-color: #e42278;
  border-color: #e42278;
}

#loginModal .social-login .btn {
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
}

#loginModal .social-login .btn:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
}

#login-error-message {
  font-size: 0.9rem;
  border-radius: 8px;
}

/* =========================
       CARDS
       ========================= */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--light);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.card-img-top {
  height: 240px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.3;
}

.card-text {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* =========================
       BADGES & BUTTONS
       ========================= */
.badge {
  font-family: "Poppins", "Montserrat", sans-serif;
  padding: 0.5em 1em;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.btn {
  font-family: "Poppins", "Montserrat", sans-serif;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
}


/* Botão principal usando Rosa Vibrante */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(228, 34, 120, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 34, 120, 0.4);
}

/* Botão secundário (exemplo) */
.btn-light {
  background: rgba(255, 255, 255, 0.9);
  border-color: transparent;
  color: var(--primary);
}

.btn-light:hover {
  background: var(--light);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-link {
  color: var(--gray);
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition);
}

.btn-link:hover {
  color: var(--primary);
  background-color: rgba(228, 34, 120, 0.1);
}

/* =========================
       SEÇÃO DESTAQUE (HERO)
       ========================= */

#hero {
  min-height: calc(100vh - 76px); /* ou 120vh, se for o caso */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(228, 34, 120, 0.05) 0%,
    rgba(156, 39, 176, 0.05) 100%
  );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.hero-title-img {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}
.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #fff8f8;
  position: relative;
  z-index: 2;
}

/* Make sure the background image covers the increased height */
#hero .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.btn-hero-primary {
  padding: 12px 30px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-hero-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(228, 34, 120, 0.3);
}

/* Destaque de cor */
.highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Responsivo - Todos os ajustes para mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--light);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 1rem;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .blog-sidebar {
    margin-top: 3rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 66px;
    font-size: 15px;
  }
  .display-4 {
    font-size: 2.2rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .card-img-top {
    height: 200px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .btn {
    padding: 0.625rem 1.25rem;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .page-title {
    font-size: 2rem;
  }
  .blog-post-title {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .course-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  .category-card {
    height: 160px;
  }
  .category-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 1.8rem;
  }
  .display-5 {
    font-size: 1.6rem;
  }
  .card-img-top {
    height: 180px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .page-title {
    font-size: 1.8rem;
  }
  .blog-post-img img {
    height: 220px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
}

/* Hero Section - ATUALIZADO */
#hero {
  position: relative;
  width: 100%;
  min-height: calc(120vh - 76px); /* Increased from 100vh to 120vh */
  overflow: hidden;
  padding: 60px 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
#hero .hero-bg-image {
  width: 100%;
  height: 100%; /* Em vez de 75%, se quiser cobrir tudo */
  object-fit: cover;
  object-position: center;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(228, 34, 120, 0.05) 0%,
    rgba(156, 39, 176, 0.05) 100%
  );
  z-index: 0;
}

/* Make sure the background image covers the increased height */
.hero-bg-image {
  width: 100%;
  height: 75%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  #hero {
    padding: 40px 0;
  }
}

.hero-title {
  font-family: "Dancing Script", cursive;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0d111a;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #fff8f8;
  position: relative;
  z-index: 2;
}

@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 1rem;
    text-align: center;
  }
}

.highlight {
  color: #ff4088;
  font-weight: 700;
}

.btn-hero-primary {
  padding: 12px 30px;
  background-color: #ff4088;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

@media (max-width: 767px) {
  .btn-hero-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
    margin: 0 auto;
    display: block;
    max-width: 250px;
    text-align: center;
  }
}

/* Seção de Produtos */
/* Product Card */
.product-card {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(228, 34, 120, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13, 17, 26, 0.1);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  font-family: "Montserrat", sans-serif;
  padding: 0.5em 1em;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-action-btn:hover {
  background-color: #e42278;
  color: #ffffff;
  transform: translateY(-3px);
}

.card-img-top {
  height: 240px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: #1a1a2e;
  line-height: 1.3;
}

.card-text {
  color: #8a8a8a;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.product-rating {
  display: flex;
  align-items: center;
}

.product-rating .stars {
  color: #ffc107;
  margin-right: 0.5rem;
  display: flex;
}

.product-rating .count {
  color: #8a8a8a;
  font-size: 0.9rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e42278;
  margin-bottom: 1rem;
}

.product-price .original-price {
  text-decoration: line-through;
  color: #8a8a8a;
  font-size: 1rem;
  margin-right: 0.75rem;
}

/* Filter Buttons */
.filter-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #1a1a2e;
  border-radius: 30px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: #e42278;
  color: #ffffff;
  border-color: #e42278;
}

/* Responsividade */
@media (max-width: 768px) {
  .card-img-top {
    height: 200px;
  }

  .card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .card-img-top {
    height: 180px;
  }
}
.section-title p {
  font-family: "Poppins", "Lato", sans-serif !important;
  font-weight: 400 !important;
}

.product-card .card-text,
.card-text {
  font-family: "Poppins", "Lato", sans-serif !important;
}

.product-price {
  font-family: "Poppins", "Montserrat", sans-serif !important;
  font-weight: 700 !important;
}

/* Botões de filtro */
.filter-btn {
  font-family: "Poppins", "Montserrat", sans-serif !important;
  font-weight: 500 !important;
}

/* Título principal da seção */
.section-title h2,
h2.section-title,
.container h2 {
  font-family: "Playfair Display", serif !important;
  font-weight: 700 !important;
  font-size: 2.5rem !important;
  color: #1a1a2e !important;
  text-align: center !important;
  margin-bottom: 0.5rem !important;
}

/* Subtítulo da seção */
.section-title p,
p.section-subtitle,
.container h2 + p {
  font-family: "Quicksand", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
  color: #8a8a8a !important;
  text-align: center !important;
  margin-bottom: 2rem !important;
}

/* Page Header */
.page-header {
  background-color: var(--light-gray);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 61, 127, 0.05) 0%,
    rgba(156, 39, 176, 0.05) 100%
  );
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}

@media (max-width: 991.98px) {
  .page-title {
    font-size: 2.5rem;
  }
}

/* Categorias */
.lead {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.6;
  font-size: 1.25rem;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: var(--primary);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--gray);
}

@media (max-width: 768px) {
  .card-title {
    font-size: 1.25rem;
  }
}
.card-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.3;
}

/* Product Categories */
.category-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
  transition: var(--transition);
}

.category-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem;
  color: var(--light);
}

.category-title {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.category-count {
  font-size: 0.9rem;
  opacity: 0.9;
}

.category-card:hover .category-img {
  transform: scale(1.1);
}

.category-card:hover .category-overlay {
  background: linear-gradient(
    to bottom,
    rgba(255, 61, 127, 0.4),
    rgba(156, 39, 176, 0.7)
  );
}

/* Estilos para o Carrinho de Compras */

/* Título principal */
.cart-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 2rem;
}

/* Container do carrinho */
.cart-container {
  margin-top: 2rem;
}

/* Item do carrinho */
.cart-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.cart-item:hover {
  box-shadow: 0 8px 25px rgba(228, 34, 120, 0.1);
  transform: translateY(-3px);
}

/* Imagem do produto */
.cart-item-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a8a8a;
  font-size: 2rem;
}

/* Detalhes do produto */
.cart-item-details {
  flex: 1;
  margin-right: 1.5rem;
}

.cart-item-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-family: "Montserrat", sans-serif;
  color: #8a8a8a;
  font-size: 0.9rem;
}

.current-price {
  font-weight: 600;
  color: #e42278;
}

/* Botão remover */
.cart-item-remove {
  margin-left: auto;
}

.remove-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  border: none;
  color: #8a8a8a;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.remove-btn:hover {
  background-color: #e42278;
  color: #ffffff;
}

/* Ações do carrinho */
.cart-actions {
  display: flex;
  gap: 1rem;
}

/* Resumo do pedido */
.cart-summary {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

.summary-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.summary-items {
  margin-bottom: 1.5rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.summary-item-label {
  font-family: "Montserrat", sans-serif;
  color: #8a8a8a;
}

.summary-item-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: #1a1a2e;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #e1e1e1;
  margin-bottom: 1.5rem;
}

.summary-total-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #1a1a2e;
}

.summary-total-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #e42278;
}

.summary-actions .btn {
  width: 100%;
  padding: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
}

/* Informações adicionais */
.summary-info {
  font-family: "Montserrat", sans-serif;
  color: #8a8a8a;
  font-size: 0.9rem;
}

.payment-methods h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.payment-icons {
  display: flex;
  gap: 0.75rem;
  font-size: 1.5rem;
  color: #1a1a2e;
}

.secure-checkout {
  display: flex;
  align-items: center;
  font-size: 0.85rem;
}

/* Carrinho vazio */
.empty-cart {
  text-align: center;
  padding: 3rem 0;
}

.empty-cart-icon {
  font-size: 4rem;
  color: #e1e1e1;
  margin-bottom: 1.5rem;
}

.empty-cart h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #1a1a2e;
  margin-bottom: 1rem;
}

.empty-cart p {
  font-family: "Montserrat", sans-serif;
  color: #8a8a8a;
  margin-bottom: 1.5rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
  .cart-summary {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  .cart-item {
    flex-wrap: wrap;
    padding: 1rem;
  }

  .cart-item-image {
    width: 80px;
    height: 80px;
  }

  .cart-item-details {
    flex: 1;
    margin-right: 0;
  }

  .cart-item-quantity {
    order: 3;
    margin-top: 1rem;
    margin-right: 1rem;
  }

  .cart-item-subtotal {
    order: 4;
    margin-top: 1rem;
    text-align: left;
  }

  .cart-item-remove {
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 575.98px) {
  .cart-title {
    font-size: 2rem;
  }

  .cart-actions {
    flex-direction: column;
  }

  .cart-actions .btn {
    width: 100%;
  }
}

/* Footer footer { */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: var(--light);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card,
.section-title {
  animation: fadeIn 0.6s ease-out forwards;
}

.nav-item {
  animation: slideIn 0.3s ease-out forwards;
}

h5.footer-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff !important;
}
/* Responsivo - Todos os ajustes para mobile */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--light);
    padding: 1rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-top: 1rem;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .blog-sidebar {
    margin-top: 3rem;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 66px;
    font-size: 15px;
  }
  .display-4 {
    font-size: 2.2rem;
  }
  .display-5 {
    font-size: 2rem;
  }
  .card-img-top {
    height: 200px;
  }
  .navbar {
    padding: 0.5rem 0;
  }
  .btn {
    padding: 0.625rem 1.25rem;
  }
  .card-title {
    font-size: 1.25rem;
  }
  .page-title {
    font-size: 2rem;
  }
  .blog-post-title {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .course-features {
    flex-direction: column;
    gap: 0.75rem;
  }
  .category-card {
    height: 160px;
  }
  .category-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 1.8rem;
  }
  .display-5 {
    font-size: 1.6rem;
  }
  .card-img-top {
    height: 180px;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
  .page-title {
    font-size: 1.8rem;
  }
  .blog-post-img img {
    height: 220px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
}

.checkout-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--secondary);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.checkout-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-light),
    var(--primary),
    var(--primary-light)
  );
  border-radius: 4px;
}

/* Checkout Steps */
.checkout-steps {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
  max-width: 600px;
}

.checkout-steps:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #e1e1e1;
  z-index: 1;
}

.step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e1e1e1;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  margin: 0 40px;
}

.step.active {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 5px rgba(228, 34, 120, 0.2);
}

.step.completed {
  background-color: #2ecc71;
  color: white;
}

.step-label {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition);
}

.step.active .step-label {
  color: var(--primary);
  font-weight: 600;
}

.step.completed .step-label {
  color: #2ecc71;
}

/* Checkout Card */
.checkout-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  min-height: 500px;
  display: flex;
}

.checkout-card-left {
  width: 60%;
  padding: 40px;
  position: relative;
}

.checkout-card-right {
  width: 40%;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--primary) 100%
  );
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
}

.checkout-card-right:before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(30deg);
  pointer-events: none;
}

.checkout-step {
  display: none;
}

.checkout-step.active {
  display: block;
}

.step-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-title i {
  color: var(--primary);
  font-size: 1.6rem;
  background-color: var(--primary-lighter);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Form Styles */
.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--secondary);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
  background-color: #fafafa;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(228, 34, 120, 0.1);
  outline: none;
  background-color: white;
}

.form-control::placeholder {
  color: #bbb;
  font-weight: 300;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.form-row .form-group {
  flex: 1;
}

.payment-methods {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.payment-method {
  flex: 1;
  min-width: 120px;
  padding: 20px 15px;
  border: 2px solid #e8e8e8;
  border-radius: var(--border-radius);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  background-color: #fafafa;
}

.payment-method:hover {
  border-color: var(--primary-light);
  background-color: var(--primary-lighter);
  transform: translateY(-3px);
}

.payment-method.active {
  border-color: var(--primary);
  background-color: var(--primary-lighter);
  box-shadow: 0 5px 15px rgba(228, 34, 120, 0.15);
}

.payment-method.active:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--primary);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.payment-method-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--text-light);
  transition: var(--transition);
  background-color: white;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.payment-method.active .payment-method-icon {
  color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(228, 34, 120, 0.15);
}

.payment-method-name {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
}

.payment-method.active .payment-method-name {
  color: var(--primary);
  font-weight: 600;
}

.payment-method-description {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 5px;
  line-height: 1.4;
}

.credit-card-container {
  position: relative;
  margin-bottom: 30px;
}

.credit-card {
  background: linear-gradient(135deg, #434343 0%, #000000 100%);
  border-radius: 16px;
  padding: 25px;
  color: white;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  height: 200px;
  transition: var(--transition);
}

.credit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.credit-card:before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.credit-card:after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.card-chip {
  width: 50px;
  height: 40px;
  background: linear-gradient(135deg, #dca54c 0%, #ffd700 100%);
  border-radius: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card-chip:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.card-number {
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-family: "Courier New", monospace;
}

.card-holder {
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  opacity: 0.8;
}

.card-holder-name {
  font-size: 1.1rem;
  font-weight: 500;
  margin-top: 5px;
  position: relative;
  z-index: 2;
}

.card-expiry {
  position: absolute;
  bottom: 25px;
  right: 25px;
  text-align: right;
  z-index: 2;
}

.card-expiry-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

.card-expiry-date {
  font-size: 1.1rem;
  font-weight: 500;
}

.card-brand {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 2rem;
  z-index: 2;
}

.order-summary-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: white;
  margin-bottom: 25px;
  position: relative;
}

.order-summary-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.order-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item-image {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 15px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.order-item-details {
  flex: 1;
}

.order-item-title {
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 5px;
}

.order-item-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.order-item-price {
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
}

.order-summary-details {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.order-summary-label {
  color: rgba(255, 255, 255, 0.7);
}

.order-summary-value {
  font-weight: 500;
  color: white;
}

.order-total {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px dashed rgba(255, 255, 255, 0.2);
  margin-top: 15px;
}

.order-total-label {
  font-weight: 600;
  font-size: 1.1rem;
  color: white;
}

.order-total-value {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
}

/* Navigation Buttons */

.btn-prev {
  background-color: #f5f5f5;
  color: var(--text-dark);
}

.btn-prev:hover {
  background-color: #e8e8e8;
  transform: translateX(-3px);
}

.btn-next {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 5px 15px rgba(228, 34, 120, 0.2);
}

.btn-next:hover {
  background-color: var(--primary-dark);
  transform: translateX(3px);
  box-shadow: 0 8px 20px rgba(228, 34, 120, 0.3);
}

.btn-submit {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-dark) 100%
  );
  color: white;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(228, 34, 120, 0.25);
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(228, 34, 120, 0.3);
}

/* Coupon */
.coupon-container {
  margin-top: 20px;
}

.input-group {
  display: flex;
  position: relative;
}

.input-group .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.input-group-btn {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.input-group-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Security Info */
.security-info {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.security-badge {
  display: flex;
  align-items: center;
  gap: 5px;
}

.security-badge i {
  color: white;
}

/* Responsive */
@media (max-width: 991px) {
  .checkout-card {
    flex-direction: column;
    max-width: 600px;
  }

  .checkout-card-left,
  .checkout-card-right {
    width: 100%;
  }

  .checkout-card-right {
    padding-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .checkout-steps {
    max-width: 300px;
  }

  .step {
    margin: 0 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .payment-methods {
    flex-direction: column;
  }

  .step-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-prev {
    order: 2;
  }

  .btn-next,
  .btn-submit {
    order: 1;
  }
}

/* Blog */
/* Blog Styles */
.blog-post {
  margin-bottom: 2.5rem;
}

.blog-post-img {
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.blog-post-img img {
  transition: var(--transition);
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-post:hover .blog-post-img img {
  transform: scale(1.05);
}

.blog-post-meta {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.blog-post-meta .author {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
}

.blog-post-meta .author img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

.blog-post-meta .date {
  display: flex;
  align-items: center;
}

.blog-post-meta .date i {
  margin-right: 0.5rem;
}

.blog-post-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.blog-post-title a {
  color: var(--dark);
  text-decoration: none;
}

.blog-post-title a:hover {
  color: var(--primary);
}

.blog-post-excerpt {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.blog-post-link {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.blog-post-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.blog-post-link:hover {
  color: var(--primary-dark);
}

.blog-post-link:hover i {
  transform: translateX(5px);
}

.blog-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.sidebar-widget-title {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-categories li {
  margin-bottom: 0.75rem;
}

.sidebar-categories a {
  color: var(--dark);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  transition: var(--transition);
}

.sidebar-categories a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.sidebar-categories .count {
  background-color: rgba(255, 61, 127, 0.1);
  color: var(--primary);
  border-radius: 30px;
  padding: 0.1rem 0.75rem;
  font-size: 0.8rem;
}

.popular-post {
  display: flex;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.popular-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.popular-post-img {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-right: 1rem;
}

.popular-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.popular-post:hover .popular-post-img img {
  transform: scale(1.1);
}

.popular-post-content {
  flex: 1;
}

.popular-post-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.popular-post-title a {
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
}

.popular-post-title a:hover {
  color: var(--primary);
}

.popular-post-date {
  font-size: 0.8rem;
  color: var(--gray);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  background-color: var(--light-gray);
  color: var(--gray);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.tag:hover {
  background-color: var(--primary);
  color: var(--light);
}

/* Pagination */
.pagination {
  margin-top: 3rem;
}

.page-link {
  border: none;
  color: var(--dark);
  margin: 0 0.25rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition);
}

.page-link:hover {
  background-color: var(--primary);
  color: var(--light);
}

.page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 4rem 0 2rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--light);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-light);
  transform: translateX(5px);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  color: var(--light);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-5px);
}

.copyright {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card,
.section-title {
  animation: fadeIn 0.6s ease-out forwards;
}

.nav-item {
  animation: slideIn 0.3s ease-out forwards;
}
