/* ================================================
   Efficience Energia Solar — Main Stylesheet
   ================================================ */

:root {
  --white: #ffffff;
  --dark-blue: #0c3472;
  --primary-blue: #0055a6;
  --light-blue: #0059a6;
  --green: #a6ce39;
  --light-green: #a9cb40;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #ced4da;
  --gray-600: #6c757d;
  --gray-800: #343a40;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
  line-height: 1.2;
  font-weight: 700;
}
h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}
p {
  color: var(--gray-600);
}
a {
  text-decoration: none;
  color: inherit;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 50%,
    var(--light-blue) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5rem 0;
}
.section-alt {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header p {
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
}

.tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--light-green));
  color: var(--dark-blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 85, 166, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 85, 166, 0.45);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--light-green));
  color: var(--dark-blue);
  box-shadow: 0 4px 20px rgba(166, 206, 57, 0.4);
}
.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(166, 206, 57, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

/* ── Header / Nav ── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  transition: var(--transition);
  padding: 1rem 0;
}
#header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}
#header.scrolled .nav-link {
  color: var(--gray-800);
}
#header.scrolled .nav-link:hover {
  color: var(--primary-blue);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 52px;
  width: auto;
  display: block;
}

.logo .logo-color {
  display: none;
}
#header.scrolled .logo .logo-white {
  display: none;
}
#header.scrolled .logo .logo-color {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: var(--transition);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
#header.scrolled .hamburger span {
  background: var(--gray-800);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(12, 52, 114, 0.92) 0%,
      rgba(0, 85, 166, 0.85) 60%,
      rgba(166, 206, 57, 0.15) 100%
    ),
    url("../img/background-hero-mobile.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
  max-width: 680px;
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(166, 206, 57, 0.25);
  border: 1px solid rgba(166, 206, 57, 0.5);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-tag svg {
  width: 14px;
  height: 14px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero-content h1 span {
  color: var(--green);
}
.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}
.stat {
  color: var(--white);
}
.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
.stat strong span {
  color: var(--green);
}
.stat small {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  display: block;
  margin-top: 0.25rem;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-content h3 {
  color: var(--dark-blue);
  margin-bottom: 0.6rem;
}

.service-card-content p {
  flex-grow: 1;
  font-size: 0.93rem;
}

.service-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--green), var(--light-green));
  color: var(--dark-blue);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-top: 1rem;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-badge strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
}
.about-badge span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-text h2 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}
.about-text p {
  margin-bottom: 1rem;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.mvv-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  border-left: 3px solid var(--green);
}
.mvv-card h4 {
  color: var(--primary-blue);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.mvv-card p {
  font-size: 0.87rem;
  color: var(--gray-800);
}

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.why-item {
  padding: 2rem 1rem;
}
.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(0, 85, 166, 0.3);
}
.why-item h3 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.why-item p {
  font-size: 0.88rem;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #f59e0b;
  font-size: 1.2rem;
}
.testimonial-text {
  font-style: italic;
  color: var(--gray-800);
  font-size: 0.95rem;
  flex-grow: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author strong {
  display: block;
  color: var(--dark-blue);
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* ── CTA Band ── */
#cta-band {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 100%
  );
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}
#cta-band h2 {
  color: var(--white);
  margin-bottom: 0.75rem;
}
#cta-band p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}
.contact-info p {
  margin-bottom: 2rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--white);
}
.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-600);
  margin-bottom: 0.2rem;
}
.contact-item-text a,
.contact-item-text span {
  color: var(--dark-blue);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-item-text a:hover {
  color: var(--primary-blue);
}

/* Contact Map */
.contact-map {
  width: 100%;
  min-height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border: 0;
}

/* ── Footer ── */
#footer {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img {
  height: 46px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--green);
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-link:hover {
  background: var(--green);
  color: var(--dark-blue);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--green);
}

.footer-bottom.footer-bottom-simple {
  border-top: none;
  padding: 2rem 0;
}

/* ── WhatsApp Float ── */
#whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}
.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  font-size: 1.6rem;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}
.whatsapp-tooltip {
  background: var(--gray-800);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  white-space: nowrap;
}
#whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.8),
      0 0 0 12px rgba(37, 211, 102, 0.12);
  }
}

/* ── Cookie Banner ── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(12, 52, 114, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(0);
  transition: transform 0.5s ease;
}
#cookie-banner.hidden {
  transform: translateY(100%);
}
.cookie-text {
  flex: 1;
  min-width: 260px;
}
.cookie-text p {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-text a {
  color: var(--green);
  font-weight: 600;
}
.cookie-text a:hover {
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.btn-cookie-accept {
  background: var(--green);
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  background: var(--light-green);
  transform: translateY(-1px);
}
.btn-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Inner pages ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
  padding: 8rem 0 4rem;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  color: var(--white);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.75rem;
}

.page-content {
  max-width: 820px;
  margin: 4rem auto;
  padding: 0 1.5rem 4rem;
}
.page-content h2 {
  color: var(--dark-blue);
  margin: 2.5rem 0 0.75rem;
  font-size: 1.3rem;
}
.page-content h3 {
  color: var(--primary-blue);
  margin: 1.75rem 0 0.5rem;
  font-size: 1.1rem;
}
.page-content p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.page-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content ul li {
  font-size: 0.95rem;
  color: var(--gray-600);
  margin-bottom: 0.4rem;
}
.page-content a {
  color: var(--primary-blue);
  font-weight: 500;
}
.page-content a:hover {
  text-decoration: underline;
}

.mt-2rem {
  margin-top: 2rem;
}

/* ── Mobile menu overlay (outside header stacking context) ── */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark-blue);
  z-index: 1100;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
#mobile-menu.open {
  display: flex;
}
#mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.mobile-nav-link {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  transition: var(--transition);
}
.mobile-nav-link:hover {
  color: var(--green);
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-badge {
    right: 1rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  /* Esconde a nav do desktop; o mobile-menu cuida do mobile */
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1200;
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }
}

/* Garante que o #mobile-menu não apareça no desktop */
@media (min-width: 769px) {
  #mobile-menu {
    display: none !important;
  }
  #hero {
    background-image:
      linear-gradient(
        135deg,
        rgba(12, 52, 114, 0.92) 0%,
        rgba(0, 85, 166, 0.85) 60%,
        rgba(166, 206, 57, 0.15) 100%
      ),
      url("../img/background-hero-desktop.png");
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
