@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #4CAF50;
    --secondary-color: #FFC107;
    --text-color: #333;
    --bg-color: #f9f9f9;
    --white: #fff;
    --h2: #FF8E0D;
    --p: #666;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-image: linear-gradient(to top, #cbd3cc, #cde0cf);
    color: var(--text-color);
    width: 100%;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-1{
    width: 40px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.propangada h2 {
  text-align: center;
}


nav ul li a:hover {
    color: var(--primary-color);
}

.btn {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.container-plus {
    margin-top: -80px;
}

.btn:hover {
    background-color: var(--h2);
}

.hero {
    padding: 100px 0;
    text-align: center;
}

.hero-text {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.hero img {
    margin-top: 20px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    animation: slideInFromLeft 1s forwards;
}

.main-title span {
    color: var(--h2);
}

.subtitle {
    font-size: 20px;
    color: var(--p);
    margin-bottom: 40px;
    animation: slideInFromRight 1s forwards;
}



/* Animation for images */
.image-animate {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: scale(0.85) translateY(20px);
}

.image-animate.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: image-pop-in 1.5s ease-out forwards;
}

@keyframes image-pop-in {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.download-buttons {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-right: 80px;
}
.download-buttons-2 {
    display: flex;
    align-items: center; 
    justify-content: center; 
    gap: 20px;
    margin-top: 20px;
}




.btn-store {
    display: flex;
    align-items: center;
    padding: 10px 10px;
    border-radius: 5px;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-store:hover {
    transform: translateY(-5px);
}

.btn-store img {
    display: flex;
    width: 150px;
}

.how-it-works, .why-choose {
    padding: 80px 0;
    text-align: center;
    margin-top: -40px;
}

.hero-image {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    margin-right: 120px  
}


.container-2 h2{
    color: #d17b19;
    margin-top: 30px;
}

.porqueescolher h2{
    color: #1a1a1a;
}
.porqueescolher h2 strong{
    color: var(--primary-color);
}


h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    margin-top: 100px;
    color: var(--h2);
}

.appauaua{
    box-shadow: var(--text-color);
}

.color{
    color: var(--white);
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    margin-top: 40px ;

}

.card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    transition: background 0.8s transform 0.8s;
    box-shadow: 1px 1px 20px #afcfb33a, 1px 1px 20px #82cc88; 
    transform: translateY(-10px); 
}

.card img {
    margin-bottom: 20px;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.carousel {
    padding: 40px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    padding: 20px;
    font-style: italic;
}

.carousel-slide.active {
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: var(--white);
}

.faq {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    background-color: var(--white);
    padding: 20px;
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 24px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    padding: 0 20px;
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
}

.final-cta {
    padding: 40px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

footer{
    padding: 20px 20px;
    text-align: center;
    font-weight: 600;
    font-size: px;
    
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInFromRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
    }

    .hero-text {
        padding: 0 20px;
    }

    .main-title {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }
}

/* Card Animation */
.card.hidden {
    opacity: 0;
    transition: all 20s ease-in-out;
}

.card.hidden.slide-in-left {
    transform: translateX(-100%);
}

.card.hidden.slide-in-right {
    transform: translateX(100%);
}

.card.visible {
    opacity: 1;
    transform: translateX(0);
}

.main-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(-20px);
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-out;
}

.main-title .word.visible {
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-and-image .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 40px 20px;
    margin-top: -100px;
}

.text-and-image .text-block {
    flex: 1;
    margin-top: -200px;
    margin-left: 50px;
}
.text-block p {
    font-weight: 400;
    font-size: 20px;
    color: #666;
}

.text-and-image .image-block {
    flex: 1;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    .text-and-image .container {
        flex-direction: column;
        text-align: center;
    }

    .text-and-image .text-block {
        margin-bottom: 2rem;
        margin-top: -50px;
    }

    .download-buttons{
        display: none;
        
       
    }
}
