/* styles.css */
.gradient-bg {
    background: linear-gradient(135deg, #F26031, #EB372F);
    color: white;
    transition: transform 0.3s ease-in-out;
    height: 89px;
}


.logo-container {
    position: absolute;
    top: -23px;
    left: 15px;
    z-index: 1030;
    height: 158px;
    display: flex;
    align-items: center;
}
.logo {
    max-height: 100%;
    width: auto;
}
.navbar {
   
    padding-top: 0;
    padding-bottom: 0;
    height: 89px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}
.navbar-nav .nav-link {
    color: #fff;
    margin: 52px;
    font-size: 18px;
    font-weight: 600;
}
.navbar-toggler {
    background-color: #FF6347;
    border: none;
    padding: 10px;
    margin-right: 15px;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.banner {
    position: relative;
    background-image: url('./../src/banner-lauch.jpg');
    background-size: cover;
    background-position: center;
    min-height: 675px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.1));
}

.banner-content {
    position: relative;
    z-index: 1;
    color: black;   
    padding: 30px;
    border-radius: 10px;
    width: 602px;
    margin: 0 auto;
    text-align: center;
}

.banner-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 2.5rem;
    margin-bottom: 2rem;
  
    font-weight: 600;
}

.banner-email-pro{
    font-weight:700;
    color: #ff6347;
}
.cta-button {
    background-color: #FF6347;
  color: white;
  border: none;
  padding: 15px 10px;
  font-size: 1.8rem;
  transition: background-color 0.3s ease;
  display: block;
  width: 224px;
  margin: auto;
  border-radius: 53px;
}

.cta-button:hover {
    background-color: #ff4500;
}

.features-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.feature-item {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    height: 195px;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item img{
    width: 100px;
}

.how-work{
    margin-bottom: 3em;
    text-align: center;
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
   
}

.how-work p{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 1em;
}

.drag-drop {
    background-color: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
   
}

.drag-drop p{
    margin: 0 auto;
    padding: 20px;    
    background: #ff6347;
    color: #fff;
    font-size: 19px;
    font-weight: 600;
    max-width: 600px;
    border-radius: 20px;
    margin-bottom: 2em;
}

.drag-drop img{
width: 100%;
}
.pos-solution-section {
    background-color: #ff6347;
    color: white;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.pos-solution-section::before,
.pos-solution-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.pos-solution-section::before {
    top: -100px;
    right: -100px;
}

.pos-solution-section::after {
    bottom: -100px;
    left: -100px;
}

.solution-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.solution-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-light {
    background-color: white;
    color: #1a1a1a;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.video-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.video-section h2 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.banner-section h2{
   font-weight: 600;
}

.banner-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.banner-content-product {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
   
    color: #fff;
    padding: 20px;
    border-radius: 10px;
}

.banner-content-product h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-content-product p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    width: 100%;
}

.btn-primary:hover {
    background-color: #0056b3;
}

.offer {
    background-color: #fff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.offer ul {
    list-style-type: none;
    padding: 0;
}

.offer li {
    margin-bottom: 5px;
    color: #555;
    list-style-type: none;
}

.urgency {
    font-weight: bold;
    color: #ff6347;
    font-size: 16px;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6347;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #ff4500;
}

.hero-content{
    margin: 0 auto;
    position: relative;
    left: 50%;
}

.hero-content h2{
    color: #000;

}

.toast-body{
    color: #000 !important;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: #000;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}


.container-fluid {
    height: 67px;
}

.faq-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}

.faq-container {
    width: 60%;
    margin: 0 auto;
}

.accordion-item {
    background-color: white;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.accordion-button {
    background-color: white;
    color: #333;
    font-weight: bold;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: #FF6347;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 15px 20px;
}

.contact {

    padding: 50px 0;
}

.elegant-footer {
    background-color: #081828;
    color: #ffffff;
    padding: 60px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
    min-width: 200px;
}

.footer-section:last-child {
    margin-right: 0;
}

.footer-section h3 {
    color: #28a745;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background-color: #28a745;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: #ffffff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #28a745;
}

.footer-section.links ul {
    list-style: none;
    padding: 0;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: #28a745;
}

.footer-section.contactFooter p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-section.contactFooter i {
    margin-right: 10px;
    color: #28a745;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 991px) {

    .logo-container {      
        left: 149px !important;       
    }
    .navbar-collapse {
        background-color: rgba(38, 57, 77, 0.95);
        position: absolute;
        top: 89px;
        left: 0;
        right: 0;
        padding: 15px;
        border-radius: 0 0 10px 10px;
    }
    .navbar-nav .nav-link {
        margin: 10px 0;
        text-align: center;
    }

    .feature-item{
        height: 220px;
    }
    .hero-content{
        position: relative;
        left: 0 !important;
    }
}

/* Estilos responsivos para telas menores */
@media (max-width: 768px) {
    .faq-container {
        width: 90%;
    }
    .logo-container {
        position: absolute;
      top: -24px;
      left: 20px;
      z-index: 1030;
      height: 150px;
      display: flex;
      align-items: center;
    }
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-right: 0;
        margin-bottom: 30px;
    }
}