/**
 * ============================================
 * STYLES.CSS - TraceTrash Landing Page
 * ============================================
 * Estilos personalizados con diseño moderno
 * y técnicas avanzadas de UI/UX
 * ============================================
 */

/* ============================================
   VARIABLES CSS Y CONFIGURACIÓN GLOBAL
   ============================================ */
:root {
  /* Colores principales */
  --primary-color: #4caf50;
  --primary-dark: #2d7a3e;
  --primary-light: #81c784;

  /* Colores secundarios */
  --secondary-color: #2196f3;
  --success-color: #4caf50;
  --warning-color: #ff9800;
  --danger-color: #f44336;
  --info-color: #00bcd4;

  /* Colores neutros */
  --dark: #1a1a1a;
  --gray-900: #212529;
  --gray-800: #343a40;
  --gray-700: #495057;
  --gray-600: #6c757d;
  --gray-500: #adb5bd;
  --gray-400: #ced4da;
  --gray-300: #dee2e6;
  --gray-200: #e9ecef;
  --gray-100: #f8f9fa;
  --white: #ffffff;

  /* Gradientes */
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(45, 122, 62, 0.9) 0%,
    rgba(33, 150, 243, 0.8) 100%
  );

  /* Sombras */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

  /* Transiciones */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Espaciado */
  --section-padding: 100px 0;

  /* Tipografía */
  --font-primary:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  --font-heading: "Inter", var(--font-primary);
}

/* ============================================
   ESTILOS GLOBALES Y RESET
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  overflow-x: hidden;
}

/* Tipografía mejorada */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

/* Utilidades */
.section-padding {
  padding: var(--section-padding);
}

.bg-light {
  background: rgba(248, 249, 250, 0.95) !important;
}

/* ============================================
   NAVEGACIÓN
   ============================================ */
.navbar {
  padding: 0.75rem 0;
  transition: all var(--transition-base);
  background: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(10px);
}

.navbar.navbar-scrolled {
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white) !important;
}

.navbar-logo {
  height: 40px;
  width: auto;
  transition: var(--transition-base);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.05);
}

.navbar-brand i {
  font-size: 2rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

.navbar-nav .btn-primary {
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.5rem 1.5rem !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    var(--gradient-overlay),
    url("https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&h=1080&fit=crop")
      center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  padding-bottom: 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--transition-base);
}

.hero-buttons .btn-primary {
  background: var(--primary-color);
  border: none;
  box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Estadísticas del Hero */
.hero-stats {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Imagen Hero con animación flotante */
.hero-image {
  position: relative;
}

.mockup-float {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator a {
  color: var(--white);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ============================================
   SECCIONES GENERALES
   ============================================ */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-800);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  font-weight: 500;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  height: 100%;
  border: 2px solid transparent;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--white);
}

.feature-icon.bg-primary {
  background: var(--gradient-primary);
}
.feature-icon.bg-success {
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
}
.feature-icon.bg-warning {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}
.feature-icon.bg-danger {
  background: linear-gradient(135deg, #f44336 0%, #c62828 100%);
}
.feature-icon.bg-info {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}
.feature-icon.bg-purple {
  background: linear-gradient(135deg, #9c27b0 0%, #6a1b9a 100%);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.feature-description {
  color: var(--gray-800);
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================
   BENEFITS SECTION
   ============================================ */
.benefits-tabs .nav-pills {
  background: var(--gray-100);
  padding: 0.5rem;
  border-radius: 50px;
}

.benefits-tabs .nav-link {
  border-radius: 50px;
  padding: 1rem 2rem;
  color: var(--gray-700);
  font-weight: 600;
  transition: var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.benefits-tabs .nav-link i {
  font-size: 1.5rem;
}

.benefits-tabs .nav-link:hover {
  color: var(--primary-color);
}

.benefits-tabs .nav-link.active {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.benefits-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.benefits-list i {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-list strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.benefits-list p {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ============================================
   DEMO SECTION
   ============================================ */
.carousel-item {
  padding: 2rem 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 1.5rem;
}

.demo-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.demo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.demo-features i {
  color: var(--primary-light);
  font-size: 1.25rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
}

.author-info {
  text-align: left;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.author-title {
  color: var(--gray-600);
  font-size: 0.875rem;
  margin-bottom: 0;
}

#testimonialsCarousel .carousel-control-prev,
#testimonialsCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

#testimonialsCarousel .carousel-control-prev {
  left: -25px;
}

#testimonialsCarousel .carousel-control-next {
  right: -25px;
}

#testimonialsCarousel .carousel-control-prev i,
#testimonialsCarousel .carousel-control-next i {
  font-size: 1.5rem;
  color: var(--white);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background:
    var(--gradient-overlay),
    url("https://images.unsplash.com/photo-1523821741446-edb2b68bb7a0?w=1920&h=600&fit=crop")
      center/cover fixed no-repeat;
  padding: 120px 0;
  color: var(--white);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons .btn {
  margin: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-instructions {
  max-width: 600px;
  margin: 0 auto;
}

.download-instructions ol {
  text-align: left;
  line-height: 2;
  font-size: 1rem;
}

.download-instructions ol li {
  margin-bottom: 0.5rem;
}

.download-instructions strong {
  color: var(--white);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-form-wrapper {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--gray-300);
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.15);
}

.contact-form .form-floating > label {
  color: var(--gray-600);
}

.contact-info-card {
  text-align: center;
  padding: 2rem;
  background: var(--gray-100);
  border-radius: 15px;
  transition: var(--transition-base);
}

.contact-info-card:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.contact-info-card:hover .contact-icon {
  background: var(--white);
  color: var(--primary-color);
}

.contact-info-card h4 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  margin-bottom: 0;
}

.contact-info-card a {
  color: inherit;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: var(--gray-400);
  padding: 4rem 0 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand i {
  font-size: 2rem;
  color: var(--primary-color);
}

.footer-description {
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-400);
  transition: var(--transition-base);
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-divider {
  border-color: var(--gray-800);
  margin: 2rem 0;
}

.footer-copyright {
  color: var(--gray-500);
  margin-bottom: 0;
}

.footer-copyright a {
  color: var(--primary-color);
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablets */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .hero-stats {
    margin-top: 3rem;
  }

  .benefits-tabs .nav-link span {
    display: none;
  }

  #testimonialsCarousel .carousel-control-prev,
  #testimonialsCarousel .carousel-control-next {
    display: none;
  }

  .navbar-collapse {
    background: rgba(26, 26, 46, 0.98);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
  }
}

/* Mobile */
@media (max-width: 767px) {
  :root {
    --section-padding: 60px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-section .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .hero-title {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    padding-top: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    line-height: 1.5;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    margin: 0;
  }

  .hero-stats {
    margin-top: 2.5rem;
    padding-top: 2rem;
  }

  .stat-number {
    font-size: 1.85rem;
    margin-bottom: 0.25rem;
  }

  .stat-label {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .hero-image {
    margin-top: 2.5rem;
  }

  .mockup-float {
    max-width: 260px;
    margin: 0 auto;
    display: block;
  }

  .section-title {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
  }

  .feature-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.25rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
  }

  .feature-title {
    font-size: 1.1rem;
  }

  .feature-text {
    font-size: 0.9rem;
  }

  .benefits-tabs .nav-pills {
    flex-direction: column;
    gap: 0.5rem;
  }

  .benefits-tabs .nav-link {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 0.9rem;
  }

  .benefits-tabs .tab-content {
    padding: 2rem 0;
  }

  .benefits-tabs .tab-content img {
    margin-bottom: 1.5rem;
  }

  .benefits-list li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }

  .demo-section .carousel-item img {
    margin-bottom: 1.5rem;
  }

  .demo-features {
    font-size: 0.9rem;
  }

  .cta-section {
    padding: 60px 0;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .cta-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
  }

  .author-image {
    width: 50px;
    height: 50px;
  }

  .author-name {
    font-size: 1rem;
  }

  .author-title {
    font-size: 0.8rem;
  }

  .contact-form-wrapper {
    padding: 2rem 1rem;
  }

  .contact-info {
    margin-bottom: 2rem;
  }

  .contact-info-item {
    padding: 1rem;
  }

  .footer-section {
    padding: 40px 0 20px;
  }

  .footer-section h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-section ul li {
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile */
@media (max-width: 575px) {
  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 1.65rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.88rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .navbar-logo {
    height: 35px;
  }

  .stat-item {
    margin-bottom: 1rem;
  }

  .stat-number {
    font-size: 1.65rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .benefits-tabs .nav-link {
    padding: 0.75rem;
    font-size: 0.85rem;
  }

  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }
}

/* ============================================
   ANIMACIONES ADICIONALES
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ============================================
   UTILIDADES
   ============================================ */
.bg-gradient-primary {
  background: var(--gradient-primary);
}

.text-primary-custom {
  color: var(--primary-color);
}

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Loading spinner */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}
