
/* CSS ajustado */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #343A40; /* Dark Gray for text */
    line-height: 1.6;
    background-color: #FFFFFF; /* White background */
}

/* Container for consistent width */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.container_solucao {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
    background-color: #118C7E; /* White background */
}



.container_funciona {
    max-width: 1140px;
    margin: 0 auto;
    padding: 100px 20px;
   background-color: #FFFFFF; /* White background */
}




.parallax-section {
  position: relative;
  background-image: url('espiao2.png'); /* imagem de fundo */
  background-size:auto;
  background-position: center;
  background-attachment: fixed; /* efeito parallax */
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;  
}

.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(5, 44, 26, 0.9); 
  z-index: 1;
}

.parallax-section .content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 1rem;
  max-width: 1090px;
}

.herotitle {
    text-align: center;
    font-size: 2rem;
    color: #ffff; /* Dark Blue */
    font-weight: 700;
}


.controle {
   text-align: center;
    max-width: 1140px;
    font-size: 2rem;
    color: #00000; /* Dark Blue */
    font-weight: 700;
    text-align: center;
    position: relative;
 
}
.controle p{
    max-width: 1140px;    
    text-align: center;
    font-size: 1rem;
    color: #00000; /* Dark Blue */
    font-weight: 700;
      justify-content: center;
  text-align: center;
}

*/
header.hero {
    background-color: #F8F9FA; /* Light Gray background */
    padding: 20px 0 60px 0;
    text-align: center;
     background-image: url('hero.jpg'); /* imagem de fundo */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* efeito parallax */
  height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

header nav {
    display: flex;
    margin-top: 30px;
    justify-content: center; /* Center logo for now */
    align-items: center;
    padding-bottom: 40px;
}

header .logo {
    height: 40px; /* Adjust as needed */
    width: auto;
}

.hero-content h1 {
    font-size: 2.5rem; /* Adjust size */
    color: #1E2A3B; /* Dark Blue */
    margin-bottom: 15px;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content p {
    font-size: 1.1rem;
    color: #6C757D; /* Medium Gray */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    align-self: center;
    background-color: #00A859; /* Primary Green */
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #008747; /* Darker Green */
}

.hero-image {
    margin-top: 40px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    /* Placeholder styling */
    max-height: 400px;
    background-color: #E9ECEF; /* Light placeholder color */
    border: 1px dashed #CED4DA;
    display: block;
    margin: 0 auto;
}

/* General Section Styling */
section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: #F8F9FA; /* Alternate background color */
}

section h2 {
    text-align: center;
    font-size: 2rem;
    color: #1E2A3B; /* Dark Blue */
    margin-bottom: 40px;
    font-weight: 700;
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    section h2 {
        font-size: 1.8rem;
    }
}




/* Section: Problem/Solution */
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.problem h3, .solution h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1E2A3B;
}

/* Section: Features */
.features-section {
    background-color: #F8F9FA;
    
  
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
   
    text-align: center;
}

.video-section {
    text-align: center;
    padding: 2rem 1rem;
}

.video-container-vertical {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px; /* Largura de um celular */
    aspect-ratio: 9 / 16; /* Proporção vertical estilo Shorts */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza horizontalmente */
    text-align: center; /* Alinha texto também */
}
.feature-icon {
    height: 50px;
    width: 50px;
    background-color: #00A859; /* Primary Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    align-items: center;
}

.feature-icon i {
    font-weight: 900;
    font-size: xx-large;
    color: white; /* Ou outra cor que destaque no verde */
}


.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1E2A3B;
}

/* Section: How it Works */
.how-it-works-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.step {
    position: relative;
}

.step-number {
    background-color: #00A859; /* Primary Green */
    color: #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 15px auto;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1E2A3B;
}

.how-it-works-note {
    text-align: center;
    color: #6C757D;
    margin-top: 20px;
}

/* Section: Testimonials */
.testimonials-section {
    background-color: #F8F9FA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #00A859; /* Green accent */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card .quote {
    font-style: italic;
    color: #6C757D;
    margin-bottom: 15px;
}

.testimonial-card .author {
    font-weight: 600;
    color: #1E2A3B;
}

.testimonial-card .company {
    font-size: 0.9rem;
    color: #6C757D;
}

.testimonials-section .note {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: #6C757D;
}

/* Section: Pricing */
.pricing-box {
    max-width: 450px;
    margin: 0 auto;
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 5px solid #00A859; /* Green top border */
}

.pricing-box h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1E2A3B;
}

.pricing-box .price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00A859; /* Primary Green */
    margin-bottom: 5px;
}

.pricing-box .period {
    font-size: 1rem;
    color: #6C757D;
    font-weight: 400;
}

.pricing-box .per-number {
    font-size: 0.9rem;
    color: #6C757D;
    margin-bottom: 25px;
}

.pricing-box .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}

.pricing-box .features-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.pricing-box .features-list li::before {
    content: '\2713'; /* Checkmark */
    color: #00A859; /* Primary Green */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Section: FAQ */
.faq-section {
    background-color: #F8F9FA;
    padding: 20px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #E9ECEF;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #1E2A3B;
    cursor: pointer; /* Optional: for interactive FAQ */
}

/* Section: Final CTA */
.final-cta-section {
    background-color: #1E2A3B; /* Dark Blue background */
    color: #FFFFFF;
    text-align: center;
    padding: 60px 0;
}

.final-cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 15px;
}

.final-cta-section p {
    color: #E9ECEF; /* Lighter text on dark background */
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #343A40; /* Dark Gray footer */
    color: #CED4DA; /* Light text */
    padding: 40px 0;
    text-align: center;
}

footer .logo-footer {
    height: 35px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1); /* Make logo white */
}

footer p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

footer a {
    color: #FFFFFF; /* White links */
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00A859; /* Green hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-box {
        max-width: 90%;
    }
}




/* Section: YouTube Video */
.video-section {
     background-color: #FFFFFF; /* Or keep alternating color */
}

.video-container-vertical {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 360px; /* Adjust width as needed for vertical video */
    margin: 20px auto; /* Center the container */
    /* Enforce 9:16 aspect ratio */
}

.video-container-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none; /* Remove default border */
}

