/* ===============================
   RESET & BASE STYLES
================================= */

.titlebots{
        color: #454545c2;
    font-weight: bolder;
    font-size: 1.48em;
    letter-spacing: -6px;
    margin-left: -6px;
}

/* ===============================
   CONTAINERS
================================= */
.macrobots_container {
  margin: auto;
  padding: 1rem;
}

#rotating-bg-front-page {
    top: -0.5em;
    opacity: 0.8 !important;
}



/* ===============================
   HERO SECTION
================================= */
.macrobots_hero {
  text-align: center;
}
.macrobots_hero h1 {
    line-height: 1em;
}

h2{
    text-align: center;
}

/* ===============================
   BOTS SECTION
================================= */
.macrobots_bots {
  background: white;
}
.macrobots_bots_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.macrobots_bot_card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}
.macrobots_shadow {
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.macrobots_hover-float:hover {
  transform: translateY(-8px);
}

/* ===============================
   BENEFITS SECTION
================================= */
.macrobots_benefits {
  text-align: center;
}
.macrobots_benefits_list {
  list-style: none;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    display: table;
    font-size: 1.1em;
    padding: 1em 2em;
    background: #ffffff8f;
    border-radius: 20px;
}
.macrobots_benefits_list li {
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.macrobots_benefits_list li::before {
  content: "✔";
  color: #4f46e5;
  position: absolute;
  left: 0;
}

/* ===============================
   CTA SECTION
================================= */
.macrobots_cta {
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}
.macrobots_btn {
    display: inline-block;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none !important;
    font-weight: bold;
    transition: all 0.3s ease, transform 0.2s ease !important;
}
.macrobots_btn:hover {
  background: #e5e7eb;
  transform: scale(1.05);
}

/* ===============================
   ANIMATIONS
================================= */
.macrobots_fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-in-out;
}
.macrobots_fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.macrobots_slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-in-out;
}
.macrobots_slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}
