/** Shopify CDN: Minification failed

Line 17:14 Expected identifier but found whitespace
Line 17:16 Unexpected "{"
Line 17:25 Expected ":"
Line 17:51 Expected ":"
Line 18:17 Expected identifier but found whitespace
Line 18:19 Unexpected "{"
Line 18:28 Expected ":"
Line 18:57 Expected ":"

**/


/* CSS from section stylesheet tags */
.climaguru-grid {
  padding-top: {{ section.settings.padding_top }}px;
  padding-bottom: {{ section.settings.padding_bottom }}px;
  background-color: transparent;
  margin-bottom: 30px;
  text-align: center;
}
.climaguru-grid__title {
  font-family: Arial, sans-serif;
  font-size: 1.8em;
  color: #0c8ed1;
  margin-bottom: 30px;
}
.climaguru-grid__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 25px;
  max-width: 1200px;
  margin: 0 auto;
}
.climaguru-grid__item {
  width: 200px;
  text-align: center;
  transition: transform 0.3s ease;
}
.climaguru-grid__item img {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.climaguru-grid__item:hover img {
  transform: scale(1.05);
}
.climaguru-grid__item a {
  text-decoration: none;
  color: #0c8ed1;
  font-family: Arial, sans-serif;
  font-weight: bold;
  display: inline-block;
  transition: text-decoration 0.3s ease;
}

.climaguru-grid__item a div {
  margin-top: 15px;
}
.climaguru-grid__item:hover a {
  text-decoration: underline;
}
.climaguru-hero-banner {
  padding: 40px 20px;
  background-color: #ffffff;
  text-align: center;
  font-family: Arial, sans-serif;
}

.climaguru-hero-banner__box {
  background-color: #0288D1;
  color: #ffffff;
  padding: 40px 30px;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 15px;
}

.climaguru-hero-banner__box h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.climaguru-hero-banner__box p {
  font-size: 1.1em;
  line-height: 1.6;
}

.climaguru-hero-banner__button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #0c8ed1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.climaguru-hero-banner__button:hover {
  background-color: #007bb5;
  transform: translateY(-2px);
}
.climaguru-seo-wrapper {
  padding: 60px 20px;
  background-color: #ffffff; /* sfondo esterno */
}

.climaguru-seo {
  background-color: #f7f7f7; /* card grigia */
  padding: 40px 30px;
  border-radius: 16px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  font-family: 'Helvetica Neue', sans-serif;
}

.climaguru-seo h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.climaguru-seo p {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.climaguru-seo a {
  color: #007bb5;
  font-weight: bold;
  text-decoration: none;
}

.climaguru-seo a:hover {
  text-decoration: underline;
}
.climaguru-cta-wrapper {
  background-color: #fff;
  padding: 60px 0;
}

.climaguru-cta-container {
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 40px 30px;
  max-width: 1080px;
  margin: 0 auto;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.climaguru-cta-container h2 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.climaguru-cta-container p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.climaguru-cta-container .cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background-color: #0c8ed1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-weight: bold;
}

.climaguru-cta-container .cta-button:hover {
  background-color: #007bb5;
  transform: translateY(-2px);
  text-decoration: underline;
}