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

:root {
    --orange: #f4a460;
    --orange-light: #f5b875;
    --green: #4caf50;
    --green-dark: #388e3c;
    --beige: #f5f0e8;
    --beige-dark: #e8dfd1;
    --dark: #2c2c2c;
    --gray: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--beige);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.promo-banner {
    background-color: var(--orange);
    color: var(--dark);
    text-align: center;
    padding: 12px 20px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.promo-banner p {
    margin: 0;
    font-size: 14px;
}

.hero {
    text-align: center;
    padding: 40px 0;
    background-color: var(--beige);
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    margin: 30px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-image {
  position: relative;
  max-width: 600px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.carousel img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 16px;
  height: auto;
  object-fit: cover;
}

/* Botões do carrossel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  color: var(--dark);
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.9);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.cta-button {
    display: inline-block;
    background-color: var(--green);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    margin: 20px 0;
    align-items: center;
}

.cta-button:hover {
    background-color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-button-large {
    font-size: 1.2rem;
    padding: 20px 40px;
}

.hero-highlight {
    color: var(--green);
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
}

.examples {
    padding: 60px 0;
    background-color: var(--beige-dark);
}

.examples h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.examples .cta-button {
    display: inline-block;  /* garante que o botão seja inline para centralizar */
    margin: 20px auto;      /* centraliza horizontalmente */
    text-align: center;     /* reforço */
    display: block;         /* necessário para o margin auto funcionar */
}


.activities-grid {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.activity-card {
    background-color: var(--white);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px var(--shadow);
}

.activity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-orange {
    background-color: #ffe4cc;
    color: #d97706;
}

.activity-info {
    margin-top: 16px;
}

.activity-info p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.activity-info .icon {
    margin-right: 8px;
}

.benefits {
    padding: 60px 0;
    background-color: var(--beige);
}

.benefits h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.benefits-grid {
    display: grid;
    gap: 20px;
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
}

.check-icon {
    width: 50px;
    height: 50px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 16px;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    font-size: 1rem;
}

.pricing {
    padding: 60px 0;
    background-color: var(--beige-dark);
}

.pricing h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.pricing-grid {
    display: grid;
    gap: 24px;
}

.pricing-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
    position: relative;
    text-align: center;
}

.pricing-card-featured {
    border: 3px solid var(--green);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--green);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.old-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.installment {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.includes-title {
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--dark);
}

.includes-list {
    list-style: none;
    margin-bottom: 24px;
}

.includes-list li {
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.95rem;
}

.extras {
    text-align: center;
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 16px;
}

.testimonials {
    padding: 60px 0;
    background-color: var(--beige);
}

.testimonials h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--dark);
}

.subtitle-section {
    text-align: center;
    color: var(--gray);
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 10px var(--shadow);
}

.stars {
    font-size: 1.2rem;
    margin-bottom: 16px;
    color: #ffa500;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.85rem;
    color: var(--gray);
}

.faq {
    padding: 60px 0;
    background-color: var(--beige-dark);
}

.faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--beige);
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--gray);
    line-height: 1.6;
}

.final-cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--beige);
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.footer-links {
    margin-top: 16px;
    display: flex;
    gap: 24px;
    justify-content: center;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

#social-proof-notifications {
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background-color: var(--white);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.5s ease, slideOut 0.5s ease 4.5s;
    max-width: 320px;
}

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

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

.notification-icon {
    width: 40px;
    height: 40px;
    background-color: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.notification-content {
    flex: 1;
}

.notification-content strong {
    color: var(--dark);
    display: block;
    margin-bottom: 2px;
}

.notification-content small {
    color: var(--gray);
    font-size: 0.85rem;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background-color: var(--green);
    transform: translateY(-5px);
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1000px;
    }

    .activities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

html {
    scroll-behavior: smooth;
}
