:root {
    --yellow: #F3C74B;
    --coral: #D76A4B;
    --leaf: #6E9E7D;
    --teal: #3D7F83;
    --house: #3E7161;
    --neutral: #F6F3EF;
}

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

body {
    font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--neutral);
    color: var(--teal);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

.page-wrapper {
    overflow-x: hidden;
}

header.hero {
    position: relative;
    padding: 96px 24px 72px;
    background: linear-gradient(135deg, rgba(243, 199, 75, 0.3), rgba(110, 158, 125, 0.35));
    overflow: hidden;
}

.hero-content {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-logo img {
    max-width: 180px;
    height: auto;
}

.hero-header {
    width: 100%;
}

.hero-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.hero-header .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: var(--leaf);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-header h1 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--teal);
    margin-bottom: 0;
    line-height: 1.2;
}

.hero-copy p.lead {
    font-size: 1.1rem;
    color: var(--house);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-primary {
    background: linear-gradient(135deg, var(--teal), var(--house));
    color: #fff;
    box-shadow: 0 14px 30px rgba(61, 127, 131, 0.25);
}

.cta-secondary {
    background-color: rgba(243, 199, 75, 0.2);
    color: var(--teal);
    border: 2px solid rgba(243, 199, 75, 0.4);
}

.cta-primary:hover,
.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(62, 113, 97, 0.2);
}

.hero-card {
    position: relative;
    padding: 32px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(61, 127, 131, 0.15);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 16px;
    border-radius: 22px;
    border: 2px dashed rgba(62, 113, 97, 0.25);
    pointer-events: none;
}

.hero-card h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.6rem;
    color: var(--house);
    margin-bottom: 16px;
}

.hero-card ul {
    list-style: none;
    display: grid;
    gap: 16px;
}

.hero-card li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--teal);
    font-weight: 600;
}

.hero-card li span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(243, 199, 75, 0.28);
    color: var(--coral);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    line-height: 1;
    text-align: center;
}

section {
    padding: 80px 24px;
}

.section-heading {
    max-width: 960px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--house);
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--teal);
    max-width: 620px;
    margin: 0 auto;
}

.products-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    padding: 20px 0;
}

.product-card {
    background: #fff;
    border-radius: 24px;
    border: 2px solid rgba(62, 113, 97, 0.15);
    box-shadow: 0 18px 40px rgba(61, 127, 131, 0.12);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
}

.product-card .product-content {
    padding: 10px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 18px;
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    max-height: 300px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.product-card .tag {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    border-radius: 999px;
    background-color: var(--coral);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 10;
    transform-origin: top right;
}

.product-card .tag-popular {
    background-color: #D76A4B;
    color: #fff;
}

.product-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--house);
    font-size: 1.5rem;
}

.product-card p.description {
    color: var(--teal);
}

.product-includes {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

.product-includes li {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--house);
    font-weight: 600;
}

.product-includes li::before {
    content: "❤";
    color: var(--leaf);
    font-size: 1.1rem;
}

.price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 8px;
}

.price-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-box .price-old {
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    color: var(--teal);
    font-weight: 400;
    text-decoration: line-through;
    opacity: 0.7;
}

.price-box .price {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.8rem;
    color: var(--coral);
    font-weight: 700;
}

.cta-link {
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--teal), var(--house));
    color: white;
    font-weight: 600;
    transition: transform 0.2s ease;
}

.cta-link:hover {
    transform: translateY(-2px);
}

.ribbon {
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 48px;
    padding: 12px 24px;
    border-radius: 18px;
    background: rgba(94, 144, 122, 0.12);
    color: var(--house);
    font-weight: 600;
    width: fit-content;
}

.experience-steps {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.step-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(62, 113, 97, 0.18);
    display: grid;
    gap: 12px;
}

.step-card .step-number {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: rgba(215, 106, 75, 0.15);
    color: var(--coral);
    font-family: 'Quicksand', sans-serif;
    display: grid;
    place-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.step-card h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--house);
    font-size: 1.2rem;
}

.testimonials {
    background: linear-gradient(120deg, rgba(243, 199, 75, 0.3), rgba(110, 158, 125, 0.35));
}

.testimonials-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonial-card {
    background: rgba(246, 243, 239, 0.8);
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(62, 113, 97, 0.25);
    display: grid;
    gap: 14px;
}

.testimonial-card .quote {
    color: var(--house);
    font-weight: 600;
    font-size: 1.05rem;
}

.testimonial-card .author {
    color: var(--teal);
    font-size: 0.95rem;
}

.faq-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    border: 1px solid rgba(62, 113, 97, 0.12);
}

.faq-item h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--house);
    margin-bottom: 8px;
}

.contact-section {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 24px;
}

.contact-section h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: var(--house);
    margin-bottom: 12px;
}

.contact-section p {
    color: var(--teal);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp svg {
    flex-shrink: 0;
}

.cta-banner {
    background: linear-gradient(135deg, rgba(61, 127, 131, 0.9), rgba(62, 113, 97, 0.95));
    border-radius: 30px;
    padding: 48px 32px;
    color: #fff;
    max-width: 1050px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 18px 38px rgba(62, 113, 97, 0.3);
}

.cta-banner h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 12px;
}

.cta-banner p {
    max-width: 560px;
    margin: 0 auto 26px;
    color: rgba(255, 255, 255, 0.86);
}

.cta-banner .cta-secondary {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--house);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-banner .cta-secondary:hover {
    background-color: #fff;
    box-shadow: 0 18px 36px rgba(255, 255, 255, 0.2);
}

footer {
    padding: 40px 24px 32px;
    background-color: #fff;
    border-top: 1px solid rgba(62, 113, 97, 0.1);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    gap: 14px;
    align-items: center;
}

.footer-logo img {
    width: 52px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.footer-social {
    display: flex;
    gap: 18px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(62, 113, 97, 0.12);
    color: var(--house);
    display: grid;
    place-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-3px);
    background-color: rgba(215, 106, 75, 0.18);
}

.footer-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    text-align: right;
}

.footer-cnpj,
.footer-payment {
    font-size: 0.875rem;
    color: var(--teal);
    margin: 0;
}

.footer-payment {
    font-weight: 600;
    color: var(--leaf);
}

@media (max-width: 768px) {
    header.hero {
        padding-top: 72px;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-card {
        order: -1;
    }

    .price-box {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .price-wrapper {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-info {
        align-items: flex-start;
        width: 100%;
    }

    .footer-details {
        align-items: flex-start;
        text-align: left;
    }
}

/* Videos Section */
.videos-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.videos-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 32px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.video-wrapper {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(61, 127, 131, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    width: calc(50% - 16px);
    max-width: 360px;
    min-width: 280px;
}

.video-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(61, 127, 131, 0.15);
}

.video-wrapper h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--teal);
    margin-bottom: 16px;
    text-align: center;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    background-color: #000;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: contain;
}

@media (max-width: 900px) {
    .videos-grid {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .video-wrapper {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 768px) {
    .videos-section {
        padding: 60px 20px;
    }

    .videos-grid {
        gap: 28px;
    }

    .video-wrapper {
        padding: 16px;
        max-width: 100%;
    }

    .video-wrapper h3 {
        font-size: 1.25rem;
        margin-bottom: 14px;
    }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes heroBackgroundPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes heroShimmer {
    0%, 100% {
        opacity: 0.9;
        transform: translateX(0) translateY(0);
    }
    33% {
        opacity: 0.7;
        transform: translateX(20px) translateY(-20px);
    }
    66% {
        opacity: 0.8;
        transform: translateX(-20px) translateY(20px);
    }
}

@keyframes heroBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateY(-10px) scale(1.02);
    }
    20%, 40%, 60%, 80% {
        transform: translateY(0) scale(1);
    }
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.8);
    }
    60% {
        transform: translateX(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroZoomIn {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-5deg);
    }
    50% {
        transform: scale(1.1) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Classes de animação */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* Animações no Hero - Mais Impactantes */
.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-header .badge {
    animation: heroBounce 1.2s ease-out 0.2s both, pulse 3s ease-in-out infinite 1.5s;
    display: inline-block;
    transform-origin: center;
}

.hero-header h1 {
    animation: heroSlideIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
    transform-origin: left center;
    position: relative;
}

.hero-header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--coral), var(--yellow));
    border-radius: 2px;
    animation: heroUnderline 1s ease-out 1.2s both;
}

.hero-copy p.lead {
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
}

.hero-actions {
    animation: fadeInUp 0.8s ease-out 0.8s both;
    position: relative;
}

.hero-actions .cta-primary {
    animation: heroBounce 0.8s ease-out 1s both;
    position: relative;
    overflow: hidden;
}

.hero-card {
    animation: heroZoomIn 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s both;
    position: relative;
    z-index: 2;
    transform-origin: center;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(243, 199, 75, 0.3), rgba(110, 158, 125, 0.3));
    opacity: 0;
    z-index: -1;
    filter: blur(20px);
    animation: heroCardGlow 3s ease-in-out infinite 1.5s;
}

.hero-card li {
    animation: slideInRight 0.6s ease-out both;
}

.hero-card li:nth-child(1) {
    animation-delay: 0.9s;
}

.hero-card li:nth-child(2) {
    animation-delay: 1s;
}

.hero-card li:nth-child(3) {
    animation-delay: 1.1s;
}

.hero-card li span {
    animation: pulse 2s ease-in-out infinite, float 3s ease-in-out infinite;
    animation-delay: 1.3s, 1.5s;
}

@keyframes heroUnderline {
    to {
        width: 100%;
    }
}


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

/* Animações em Cards de Produto */
.product-card {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    animation: fadeInUp 0.6s ease-out both;
    transform-origin: center;
    will-change: transform;
}

.product-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(61, 127, 131, 0.3);
    z-index: 10;
    position: relative;
}

.product-card .tag {
    animation: pulse 2s ease-in-out infinite;
    transition: transform 0.3s ease;
    transform-origin: top right;
}

.product-card:hover .tag {
    transform: scale(1.1) rotate(5deg);
    transform-origin: top right;
}

/* Animações em Step Cards */
.step-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(61, 127, 131, 0.15);
}

.step-card .step-number {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.step-card:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    background-color: rgba(215, 106, 75, 0.25);
}

/* Animações em Testimonials */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(61, 127, 131, 0.15);
}

/* Animações em FAQ */
.faq-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: fadeInUp 0.5s ease-out both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(61, 127, 131, 0.12);
    background-color: rgba(246, 243, 239, 0.8);
}

/* Animações em Botões */
.cta-primary,
.cta-secondary,
.cta-link {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-primary::before,
.cta-secondary::before,
.cta-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before,
.cta-secondary:hover::before,
.cta-link:hover::before {
    left: 100%;
}

.cta-primary:hover,
.cta-secondary:hover,
.cta-link:hover {
    transform: translateY(-4px) scale(1.02);
}

.cta-whatsapp {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.cta-whatsapp:hover::before {
    left: 100%;
}

.cta-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
}

.cta-whatsapp svg {
    transition: transform 0.3s ease;
}

.cta-whatsapp:hover svg {
    transform: rotate(15deg) scale(1.1);
}

/* Animações em Vídeos */
.video-wrapper {
    animation: fadeInUp 0.6s ease-out both;
}

.video-wrapper:nth-child(1) {
    animation-delay: 0.1s;
}

.video-wrapper:nth-child(2) {
    animation-delay: 0.2s;
}

.video-wrapper video {
    transition: transform 0.3s ease;
}

.video-wrapper:hover video {
    transform: scale(1.02);
}

/* Animações em Section Headings */
.section-heading h2 {
    animation: fadeInUp 0.6s ease-out both;
}

.section-heading p {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Animações em Ribbon */
.ribbon {
    animation: fadeInUp 0.6s ease-out both;
    display: flex;
}

/* Animações em CTA Banner */
.cta-banner {
    animation: scaleIn 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.cta-banner h2,
.cta-banner p {
    position: relative;
    z-index: 1;
}

/* Animações em Footer */
.footer-social a {
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-5px) rotate(5deg);
    background-color: rgba(215, 106, 75, 0.25);
}

.footer-social a svg {
    transition: transform 0.3s ease;
}

.footer-social a:hover svg {
    transform: scale(1.2);
}

/* Animações em Product Includes */
.product-includes li::before {
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

.product-includes li {
    transition: transform 0.2s ease, padding-left 0.2s ease;
}

.product-includes li:hover {
    transform: translateX(5px);
    padding-left: 5px;
}

/* Animação de loading suave */
@keyframes skeleton {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Animação para emojis */
.product-card .tag {
    display: inline-block;
}

/* Animação de entrada suave para toda a página */
.page-wrapper {
    animation: fadeIn 0.5s ease-out;
}

/* Animação para imagens */
.product-image {
    transition: transform 0.5s ease, opacity 0.3s ease;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .cta-primary,
    .cta-secondary,
    .cta-link {
        transition: none;
    }

    .video-wrapper {
        transition: none;
    }
}

/* Newsletter Modal */
.newsletter-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.newsletter-modal.active {
    opacity: 1;
    visibility: visible;
}

.newsletter-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.newsletter-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    z-index: 10001;
    margin: auto;
}

.newsletter-modal.active .newsletter-modal-content {
    transform: scale(1) translateY(0);
}

.newsletter-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--teal);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
    border-radius: 50%;
}

.newsletter-modal-close:hover {
    color: var(--coral);
    transform: rotate(90deg);
}

.newsletter-modal-body {
    text-align: center;
}

.newsletter-modal-body h2 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--teal);
    margin-bottom: 16px;
    line-height: 1.2;
}

.newsletter-modal-body p {
    font-size: 1.1rem;
    color: var(--house);
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-form input[type="email"],
.newsletter-form input[type="tel"] {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: 'Nunito', sans-serif;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    color: var(--house);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.newsletter-form input[type="email"]:focus,
.newsletter-form input[type="tel"]:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(61, 127, 131, 0.1);
}

.newsletter-form input[type="email"]:disabled,
.newsletter-form input[type="tel"]:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

.newsletter-submit-btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, var(--teal) 0%, var(--house) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    outline: none;
}

.newsletter-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(61, 127, 131, 0.3);
}

.newsletter-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.newsletter-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.newsletter-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.newsletter-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .newsletter-modal-content {
        padding: 30px 24px;
        width: 95%;
    }
    
    .newsletter-modal-body h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-modal-body p {
        font-size: 1rem;
    }
    
    .newsletter-form input[type="email"],
    .newsletter-form input[type="tel"],
    .newsletter-submit-btn {
        padding: 14px 18px;
        font-size: 1rem;
    }
}