/* CSS for section section:header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
}
header .container {
  display: flex;
  align-items: center; /* centraliza verticalmente */
}

/* Empurra o menu para a direita */
.main-nav {
  margin-right: auto; 
}

/* Exibe os itens do menu em linha */
.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  margin-left: 50px;
}

.main-nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s;
}
.main-nav a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
  .main-nav {
    display: none; /* Simple hide for mobile, could be a burger menu */
  }
}

/* CSS for section section:hero */ 
.hero-section {
  position: relative;
  padding-top: 150px;
  padding-bottom: 80px;
  background-color: var(--primary-color);

  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; 
  background-image: url('images/381d4b6c358bc717b12ba724ea15ff792ef9c9f0-2.png'); 
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.hero-content-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top:-100px;
  
}
.hero-text-content {
  flex: 1;
  color: var(--text-light);
}
.hero-brand-logo {
  width: 183px;
  height: auto;
  margin-bottom: 26px;
}
.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 26px;
}
.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  max-width: 365px;
}
.hero-product-image-container {
  flex: 1;
  position: relative;
}
.hero-product-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 649px;
    margin-left: auto;
}
.hero-product-image {
    width: 100%;
    height: auto;
}
.hero-features-container {
  position: relative;
  z-index: 2;
  margin-top: 100px;
}
.hero-features-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.feature-card {
  background-color: var(--bg-light);
  border-radius: 20px;
  box-shadow: 0px 4px 4px -1px rgba(12, 12, 13, 0.05), 0px 4px 4px -1px rgba(12, 12, 13, 0.1);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(12, 12, 13, 0.1);
}
.feature-card img {
  height: 30px;
  width: auto;
}

@media (max-width: 992px) {
    .hero-content-container {
        flex-direction: column;
        text-align: center;
		margin-top:-100px;
    }
    .hero-text-content {
        order: 2;
    }
    .hero-product-image-container {
        order: 1;
        margin-bottom: 40px;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* CSS for section section:solutions */
.solutions-section {
  padding: 80px 0;
}
.solutions-text {
  max-width: 380px;
  margin-left:150px;
}

.solutions-eyebrow {
  color: var(--primary-color);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 27px;
  margin-bottom: 5px;
}
.solutions-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 15px;
}
.solutions-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
}
.solutions-carousel-mask {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.solutions-carousel-track {
  display: flex;
  gap: 30px;
  animation: scroll 10s linear infinite;
}
.solutions-carousel-track img {
  height: 280px;
  width: auto;
  border-radius: 15px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 992px) {
    .solutions-text {
        text-align: center;
        margin: 0 auto 40px auto;
    }
}

/* CSS for section section:pillars */
.pillars-section {
  background-color: var(--bg-light);
}
.pillars-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 80px;
  line-height: 1.2;
  letter-spacing: -2.1px;
  color: var(--secondary-color);
  justify-items: center;  /* centraliza itens dentro de cada célula */
}
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centraliza as linhas */
  gap: 2rem; /* espaçamento entre itens */
}

.pillar-item {
  flex: 0 1 calc(30% - 2rem); /* largura ajustável */
  max-width: 200px; /* limita item grande */
  text-align: center;
}


.pillar-item img {
  width: 50px;
  margin-bottom: 10px;
}

.pillar-item p {
  text-align: center;
  font-weight: bold;
  font-size:12px;
}




@media (max-width: 992px) {
    .pillars-title-container {
        text-align: center;
    }
    .pillars-title {
        font-size: 48px;
    }
}

/* CSS for section section:advantages */
.advantages-section {
  position: relative;
  background-image: url('images/481c4d65a96bdccc47f719e1d83cd541d8d12d14.png');
  background-size: cover;
  background-position: center;
}
.advantages-image-container {
  position: relative;
  height: 400px;
  width: 100%;
}
.advantages-image-container img {
  position: absolute;
  height: 370px;
  width: auto;
}
.power-bank-img-1 {
  top: 0;
  left: 0;
  z-index: 2;
}
.power-bank-img-2 {
  top: 46px;
  left: 121px;
  z-index: 1;
}
.advantages-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 60px;
  line-height: 1.2;
  letter-spacing: -2.1px;
  color: var(--secondary-color);
  margin-bottom: 40px;
}
.advantages-list {
  display: flex;
  gap: 30px;
}
.advantage-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.advantage-item span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--secondary-color);
}
.advantage-item img {
  height: 4px;
  width: 100%;
}
@media (max-width: 992px) {
    .advantages-image-container {
        height: 370px;
        margin-bottom: 40px;
    }
    .power-bank-img-1, .power-bank-img-2 {
        left: 50%;
        transform: translateX(-50%);
    }
    .power-bank-img-2 {
        left: calc(50% + 60px);
    }
    .advantages-text-container {
        text-align: center;
    }
    .advantages-list {
        justify-content: center;
    }
}

/* CSS for section section:how-it-works */
.how-it-works-section {
  background-color: var(--bg-light);
}
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}
.how-it-works-card {
  background-color: var(--bg-light-gray);
  border-radius: 15px;
}
.card-header {
  background-color: var(--bg-light);
  border-radius: 34px;
  box-shadow: 0px 10px 10px -3.75px rgba(0, 0, 0, 0.03);
  padding: 4px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  width: fit-content;
  margin: 15px auto;
}
.card-content {
  display: flex;
  gap: 20px;
  padding: 0 25px 25px 25px;
  align-items: flex-start;
}
.card-content img {
  width: 120px;
  height: auto;
  border-radius: 10px;
  box-shadow: 5px 12px 13px -3.75px rgba(153, 122, 54, 0.15);
}
.steps h4 {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  margin-top: 10px;
}
.steps p {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.32px;
}
.steps .num {
  color: var(--primary-color);
  font-weight: 700;
}
.payment-logos {
  text-align: center;
}
.payment-logos img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .card-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* CSS for section section:partnership */
.partnership-section {
  padding: 80px 0;
}
.partnership-title-container {
  background-image: url('images/b1b3ec7be46a90eadd29ab2b9a775f22b6f14347.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 40px;
}
.partnership-title {
  color: #e34c00;
  font-weight: 600;
  font-size: 27px;
}
.partnership-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}
.step-item {
  text-align: center;
}
.step-image {
  width: 162px;
  height: auto;
  border-radius: 15px;
  margin-bottom: 20px;
}
.step-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #3b3b3b;
}
.step-icon {
  height: 25px;
  width: auto;
}
.step-arrow {
  margin-top: 110px;
  width: 45px;
  height: auto;
}
@media (max-width: 768px) {
    .partnership-steps {
        flex-direction: column;
        align-items: center;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 0;
    }
}

/* CSS for section section:partners */
.partners-section {
  padding: 80px 0;
}
.partners-title {
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -2.1px;
}
.partners-title .highlight {
  color: var(--primary-color);
}
.partners-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partners-track {
  display: flex;
  width: calc(200px * 22); /* Adjust based on image width and count */
  animation: marquee-scroll 40s linear infinite;
}
.partners-track img {
  width: auto;
  height: 50px;
  margin: 0 45px;
  border-radius: 10px;
  box-shadow: 5px 7px 6px -4px rgba(0, 0, 0, 0.08);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
    .partners-title {
        font-size: 48px;
    }
}

/* CSS for section section:stats */
.stats-section {
  padding: 80px 0;
}
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.stat-item {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 30px;
}
.stat-item:last-child {
  border-bottom: none;
}
.stat-item h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 37px;
  color: var(--primary-color);
  line-height: 1.4;
}
.stat-item p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
}
.stats-map-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map-image {
  max-width: 100%;
  height: auto;
}
.map-pin {
  position: absolute;
  width: 43px;
  height: auto;
}
.pin-1 {
  top: 65%;
  left: 70%;
}
.pin-2 {
  top: 58%;
  left: 82%;
}
@media (max-width: 992px) {
    .stats-list {
        order: 2;
    }
    .stats-map-container {
        order: 1;
        margin-bottom: 40px;
    }
}

/* CSS for section section:gallery */
.gallery-section {
  padding: 80px 0;
}
.gallery-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.gallery-track {
  display: flex;
  gap: 20px;
  animation: gallery-scroll 60s linear infinite;
}
.gallery-track img {
  height: 312px;
  width: auto;
  border-radius: 15px;
}
@keyframes gallery-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* CSS for section section:testimonials */
.testimonials-section {
  padding: 80px 0 120px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background-color: var(--bg-light);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05);
}
.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.user-info span {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary-color);
}
.stars {
  margin-bottom: 22px;
}
.testimonial-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.6;
  color: var(--text-gray);
}

/* CSS for section section:contact */
.contact-section {
  background-image: url('images/081d13f33900421b906a15f629019b2f182ba573.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--text-light);
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.contact-info h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 14px;
}
.contact-info > p {
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 22px;
}
.contact-info hr {
  border: none;
  height: 1px;
  background-color: var(--text-light);
  margin-bottom: 20px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.location p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
}
.contact-form-wrapper {
  background-color: rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  padding: 32px;
}
.contact-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  flex: 1;
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--text-light);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.61);
}
.submit-btn {
  width: 100%;
  background-color: var(--bg-light);
  border: none;
  border-radius: 24px;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--text-dark);
  position: relative;
}
.submit-btn span {
  flex-grow: 1;
  text-align: center;
  padding-left: 40px; /* space for icon */
}
.arrow-icon-container {
  position: absolute;
  right: 4px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow-icon-container img {
  width: 22px;
  height: 22px;
  transform: rotate(-45deg);
}
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
		margin-top:50px;
    }
    .contact-info {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .contact-form .form-row {
        flex-direction: column;
    }
}

/* CSS for section section:footer */
.site-footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 40px 0;
}
.footer-container {
  display: flex;
  gap: 80px;
}
.footer-links h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-links a {
  color: #999999;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--text-light);
}
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 60px;
    right: 2%;
    background-color: #fff;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
}

