/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f2f2f2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

h2,
h4,
h3 h5,
h6 {
  color: #1c1c1c;
  font-family: "Poppins", sans-serif;
}

p {
  font-family: "Funnel Display", sans-serif;
  color: #1c1c1c;
}
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 100px;
}

@media (max-width: 1300px) and (min-width: 1200px) {
  .container {
    margin: 0 auto;
    padding: 0 20px;
  }
}
/* Solar Hero Section */
.solar-hero {
  padding: 80px 0;
}

.solar-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solar-hero-left h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 20px;
  top: 0;
}

.hero-description {
  font-size: 20px;
  line-height: 31px;
  margin-bottom: 30px;
}

.hero-cta {
  display: flex;
  gap: 30px;
}

.hero-cta-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #dc6339;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta-primary:hover {
  background-color: #e2e2e2;
  transform: translateY(-2px);
  color: #333;
}

.hero-cta-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #e2e2e2;
  color: #1C1C1C;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background-color: #dc6339;
  color: white;
  transform: translateY(-2px);
}

.solar-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

/* Solar Why Choose Section */
.why-choose-section {
  padding: 80px 0;
}

.why-choose-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: start;
}

.why-choose-title h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 120%;
}

.why-choose-subtitle p {
  font-size: 20px;
  line-height: normal;
  padding-top: 10px;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  padding: 40px 0;
  border-bottom: 1px solid #dc6339;
}

.feature-icon {
  margin: 0 0 20px 0;
}

.feature-icon img,
.feature-icon svg {
  width: 40px;
  height: 40px;
}

.feature-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-content ul {
  list-style-type: none;
}

.feature-content li,
.feature-content p {
  font-size: 18px;
  line-height: 25px;
}

.feature-content ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.feature-content ul li::before {
  content: "•";
  color: #1c1c1c;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 18px;
}

/* Estilo do cartão CTA */
.cta-card {
  display: flex;
  align-items: end;
  justify-content: end;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #dc6339;
  color: #ffffff;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
  width: 100%;
  height: 200px;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #c7562f;
}

.cta-button svg {
  stroke: #ffffff;
  margin-bottom: 15px;
  width: 50px;
  height: 50px;
  top: 0;
}

.cta-button span {
  font-size: 32px;
  margin-right: 10px;
  font-family: 'Poppins', sans-serif;
}

/* Testimonial Section */
.testimonial {
  padding: 60px 0;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  background-color: #ffffff;
  padding: 6px 15px;
  border-radius: 48px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 24px;
  gap: 10px;
	
	font-size: 20px;
  font-weight: 600;
  color: #1e1e1e;
}

.testimonial-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #232323;
  margin: 0;
}

.testimonial-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: stretch;
  background: #DC6339;
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(20,20,40,0.10);
  overflow: hidden;
  min-height: 320px;
  margin-top: 0;
}

.testimonial-image {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  background: #FFFFFF;
  border-radius: 30px;
  overflow: hidden;
  padding: 0;
  margin: 0;
  grid-row: 1 / -1;
  grid-column: 1 / 2;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: none;
  border: none;
  display: block;
}

.testimonial-text {
  grid-column: 2 / 3;
  grid-row: 1 / -1;
  flex: 1;
  padding: 56px 60px 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  color: #FFFFFF;
}

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 70px;
  height: 70px;
  color: #bdb7e3;
  opacity: 0.7;
}

.testimonial-quote blockquote {
   font-family: 'Funnel Display', sans-serif; 
    font-weight: 500;
    font-size: 19px;
    line-height: 28px;
    margin: 0;
    max-width: 80%;
}

.testimonial-client-info h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 4px 0;
  margin-top: 40px;
  color: #FFFFFF;
}

.testimonial-client-info p {
   font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    opacity: 0.85;
    color: #FFFFFF;
}
/* Solar Advanced Solutions Section */
.solar-advanced-solutions {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.solar-advanced-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.solar-advanced-title h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 120%;
  flex: 1;
}

.solar-advanced-subtitle {
  font-size: 20px;
  line-height: normal;
  flex: 1;
}

.solar-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 30px;
}

.solar-solution-item {
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  border: 1px solid #dc6339;
  transition: all 0.3s ease;
}

.solar-solution-item:hover {
  border-color: #dc6339;
  transform: translateY(-5px);
}

.solar-solution-item h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.solar-solution-item p {
  font-size: 16px;
  line-height: normal;
}

.solar-equipment-image {
  text-align: center;
}

.solar-equipment-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Solar Sectors Section */
.solar-sectors {
  background-color: #f2f2f2;
}

.solar-sectors-title {
  margin-bottom: 60px;
}

.solar-sectors-title h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 132%;
  margin-bottom: 20px;
  max-width: 800px;
}

.solar-sectors-title p {
  font-size: 20px;
  font-weight: 400;
  max-width: 700px;
  line-height: normal;
}

.solar-sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.solar-sector-card {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  max-width: 420px;
}

.solar-sector-card:hover {
  transform: translateY(-5px);
}

.solar-sector-image {
  height: 200px;
  overflow: hidden;
}

.solar-sector-image img {
  width: 100%;
  height: 100%;
  padding: 20px;
}

.solar-sector-card h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  margin: 20px 20px 10px;
}

.sector-details {
  padding: 0 20px 20px;
}

.sector-details p {
  font-size: 18px;
  line-height: 25px;
  margin-bottom: 10px;
}

.sector-details p strong {
  color: #1c1c1c;
  font-weight: 600;
}

/* Solar Final CTA Section */
.solar-final-cta {
  padding: 80px 0;
  background-color: #f2f2f2;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.final-cta-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.final-cta-text h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 120%;
}

.final-cta-text p {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 30px;
}

.final-cta-buttons {
  display: flex;
  gap: 15px;
}

.final-cta-primary {
  display: inline-flex;
  justify-content: center;
  background-color: #dc6339;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.final-cta-primary:hover {
  background-color: #e2e2e2;
  transform: translateY(-2px);
  color: #333;
}

.final-cta-secondary {
  display: inline-flex;
  justify-content: center;
  background-color: #e2e2e2;
  color: #1C1C1C;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.final-cta-secondary:hover {
  background-color: #dc6339;
  transform: translateY(-2px);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    margin: 0 auto;
    padding: 0 20px;
  }
  .solar-hero {
    padding: 30px 0;
  }
  .solar-hero-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .solar-hero-left {
    display: contents;
  }

  .solar-hero-left h1 {
    order: 1;
    font-size: 30px;
    font-weight: 600;
  }

   .hero-cta {
    order: 3;
    flex-direction: column;
    gap: 10px;
  }

  .solar-hero-right {
    order: 2;
  }


  .solar-why-header {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solar-features-grid {
    grid-template-columns: 1fr;
  }

  .solar-solutions-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 10px;
    padding: 20px;
  }

  .solar-solution-item {
    flex: 0 0 80%;
    scroll-snap-align: center;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    border: 1px solid #dc6339;
    transition: all 0.3s ease;
  }

  .solar-solutions-grid::-webkit-scrollbar {
    display: none;
  }

  .solar-sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .solar-hero-left h1 {
    text-align: center;
  }
  .hero-description {
    order: 1;
    text-align: center;
  }
  .solar-why-left h2 {
    font-size: 32px;
    text-align: center;
  }
  .why-choose-title h2 {
    font-size: 32px;
    text-align: center;
  }
  .solar-why-right p {
    text-align: center;
  }
  .solar-advanced-title {
    flex-direction: column;
  }
  .solar-advanced-title h2 {
    font-size: 32px;
    text-align: center;
  }
  .solar-advanced-subtitle {
    text-align: center;
  }
  .solar-sectors-title h2 {
    font-size: 32px;
    text-align: center;
  }
  .solar-sectors-title p {
    text-align: center;
  }
  .final-cta-text h2 {
    font-size: 32px;
    text-align: center;
  }
  .final-cta-text p {
    text-align: center;
  }
  .why-choose-header {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .why-choose-subtitle p {
    padding-top: 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  .feature-card {
    padding: 30px 0;
  }
  .cta-button {
    display: none;
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .final-cta-content {
    grid-template-columns: 1fr; /* empilha os elementos */
  }

  /* Garante que o texto venha antes e a imagem depois */
  .final-cta-text {
    order: 1;
  }

  .final-cta-image {
    order: 2;
  }

  .testimonial {
    display: none;
  }

  .solar-sectors-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px 20px;
    -webkit-overflow-scrolling: touch;
  }

  .solar-sector-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    max-width: none;
  }

  .solar-sectors-grid::-webkit-scrollbar {
    display: none;
  }
  h2 {
    font-size: 32px;
  }
  .solar-advanced-solutions {
    padding: 30px 0;
  }
  .solar-final-cta {
    padding: 30px 0;
  }
}
@media (max-width: 480px) {

  .solar-solutions-grid {
    grid-template-columns: 1fr;
  }

  .solar-sectors-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-buttons {
    flex-direction: column;
  }
}
/* =============================
   RESPONSIVIDADE PARA TABLET
   Mantém layout de desktop, mas ajusta tamanhos
   ============================= */
@media (max-width: 1024px) and (min-width: 769px) {
  .container {
    padding: 0 40px;
  }

  /* Ajustes gerais de fonte */
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  p, li {
    font-size: 16px;
    line-height: 26px;
  }

  /* Hero Section */
  .solar-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .solar-hero-left h1 {
    font-size: 30px;
  }
  .hero-description {
    font-size: 16px;
    line-height: 120%;
  }

  /* Why Choose */
  .why-choose-header {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .why-choose-title h2 {
    font-size: 36px;
  }
  .why-choose-subtitle p {
    font-size: 18px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
  }

  /* Advanced Solutions */
  .solar-advanced-title h2 {
    font-size: 36px;
  }
  .solar-advanced-subtitle {
    font-size: 18px;
  }
  .solar-solutions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Sectors */
  .solar-sectors-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  .solar-sector-card h3 {
    font-size: 22px;
  }
  .sector-details p {
    font-size: 16px;
  }

  /* CTA Final */
  .final-cta-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .final-cta-text h2 {
    font-size: 30px;
  }
  .final-cta-text p {
    font-size: 16px;
    line-height: 120%;
  }

  /* Testimonial */
  .testimonial-content {
    grid-template-columns: 1fr 1.5fr;
    min-height: 280px;
  }
  .testimonial-text {
    padding: 40px;
  }
  .testimonial-quote blockquote {
    font-size: 18px;
    line-height: 26px;
  }

  /* Ajustes finos de espaçamento */
  section {
    padding: 60px 0;
  }
}
