/* Reset e base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Container personalizado */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container-custom {
    padding: 0 2rem;
  }
}

/* Navbar styles */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
  padding: 3rem 0;
  transition: all 0.3s ease;
}

.navbar .container-custom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 120px;
  max-height: 120px;
}

.desktop-menu {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-menu {
    display: flex;
  }
}

.nav-link {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0088CC;
}

.mobile-menu-button {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu-button button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-cta {
  margin-top: 1rem;
  width: 100%;
}

/* Botão primário */
.btn-primary {
  background: linear-gradient(135deg, #0088CC, #005fa3);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #005fa3, #0088CC);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-outline {
  background: transparent;
  color: #0088CC;
  border: 2px solid #0088CC;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.btn-outline:hover {
  background: #0088CC;
  color: white;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #0088CC, #005fa3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero section */
.hero {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    gap: 1rem;
  }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0088CC;
  margin-bottom: 0.25rem;
}

.stat-description {
  font-size: 0.875rem;
  color: #64748b;
}

.stat-divider {
  height: 2.5rem;
  width: 1px;
  background: #e2e8f0;
}

/* Hero image */
.hero-image-container {
  position: relative;
}

.image-glow {
  position: absolute;
  inset: -0.125rem;
  background: linear-gradient(to right, #0088CC, #333);
  border-radius: 1rem;
  filter: blur(8px);
  opacity: 0.2;
}

.image-wrapper {
  background: white;
  padding: 0.25rem;
  border-radius: 1rem;
  position: relative;
  z-index: 10;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.review-card {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: linear-gradient(135deg, #0088CC, #333);
  padding: 1rem;
  border-radius: 0.5rem;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  z-index: 20;
  max-width: 18rem;
}

.review-text {
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.review-author {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Background blobs */
.bg-blob {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(3rem);
}

.bg-blob.top-right {
  top: -6rem;
  right: -6rem;
  background: rgba(0, 136, 204, 0.1);
}

.bg-blob.bottom-left {
  bottom: -8rem;
  left: -8rem;
  background: rgba(0, 136, 204, 0.05);
}

/* Sections */
.section-padding {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-description {
  color: #64748b;
}

/* Features */
.features {
  padding: 4rem 0;
  background: rgba(0, 136, 204, 0.03);
}

.features-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(0, 136, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #0088CC;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: #64748b;
  font-size: 0.875rem;
}

/* Eco feature */
.eco-feature {
  padding: 2rem;
  background: rgba(0, 136, 204, 0.05);
  border: 1px solid rgba(0, 136, 204, 0.2);
  border-radius: 0.75rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .eco-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.eco-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eco-description {
  color: #64748b;
  margin-bottom: 1.5rem;
}

.eco-list {
  list-style: none;
  padding: 0;
}

.eco-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.eco-list-item svg {
  color: #0088CC;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.eco-image-container {
  position: relative;
}

.eco-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 136, 204, 0.1), rgba(0, 136, 204, 0.05));
  border-radius: 0.75rem;
  filter: blur(1rem);
  opacity: 0.6;
}

.eco-image {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 10;
}

/* How it works */
.how-it-works {
  padding: 4rem 0;
}

.steps-container {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: rgba(0, 136, 204, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0088CC;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #64748b;
}

.video-button-container {
  text-align: center;
}

/* Testimonials */
.testimonials {
  padding: 4rem 0;
  background: linear-gradient(to bottom, white, rgba(0, 136, 204, 0.05));
}

.testimonials-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.ratings {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  margin-bottom: 1rem;
  font-style: italic;
  color: #374151;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: #0088CC;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-position {
  font-size: 0.875rem;
  color: #64748b;
}

.testimonials-cta {
  background: rgba(0, 136, 204, 0.05);
  border: 1px solid rgba(0, 136, 204, 0.1);
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
}

.testimonials-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonials-cta-description {
  color: #64748b;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

/* Pricing */
.pricing {
  padding: 1rem 0;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pricing-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.pricing-header {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #0088CC;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: #64748b;
}

.pricing-features {
  padding: 1.5rem;
}

.pricing-features-list {
  list-style: none;
  padding: 0;
}

.pricing-features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.feature-included svg {
  color: #0088CC;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.pricing-button {
  width: 100%;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: block;
}

.pricing-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.pricing-note {
  text-align: center;
  margin-top: 3rem;
}

.pricing-disclaimer {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}

.pricing-contact {
  font-size: 0.875rem;
  color: #0088CC;
}

.pricing-link {
  color: #0088CC;
  text-decoration: underline;
}

/* FAQ */
.faq {
  padding: 4rem 0;
  background: rgba(64, 748, 180, 0.03);
}

.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion {
  background: white;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.accordion-button:hover {
  background: #f8fafc;
}

.accordion-button[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}

.accordion-icon {
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content.show {
  max-height: 200px;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: #64748b;
}

.faq-support {
  text-align: center;
  margin-top: 3rem;
}

.faq-support-text {
  color: #64748b;
  margin-bottom: 1rem;
}

/* CTA */
.cta {
  padding: 4rem 0;
  background: linear-gradient(to right, #333, #0088CC);
  color: white;
  text-align: center;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.25rem;
  }
}

.cta-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-button {
  background: white;
  color: #0088CC;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: rgba(0, 136, 204, 0.05);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.footer-brand {
  grid-column: span 2;
}

@media (min-width: 768px) {
  .footer-brand {
    grid-column: span 1;
  }
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(0, 136, 204, 0.8);
}

.footer-menu {
  list-style: none;
  padding: 0;
}

.footer-menu li {
  margin-bottom: 0.5rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: #9ca3af;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.legal-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: white;
}

/* Utility classes */
.pulse {
  animation: pulse 1s ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-divider {
    width: 100%;
    height: 1px;
  }
  
  .review-card {
    position: static;
    margin-top: 1rem;
    max-width: 100%;
  }
}

/* Remove H1 styles específicos se existirem */
h1.titulo.cor-secundaria {
  display: none !important;
}

.titulo.cor-secundaria {
  display: none !important;
}
