:root {
            --rosa-bebe: #FFD6E0;
            --azul-claro: #C4E0F9;
            --amarelo-suave: #FFF5C0;
            --verde-menta: #C1F2B0;
            --lilas: #D4C4FB;
            --rosa-destaque: #FF85A2;
            --azul-destaque: #5AA9E6;
            --roxo-destaque: #9370DB;
            --azul-escuro: #2c3e50;
            --rosa-escuro: #d23669;
            --dourado: #FFD700;
        }

        /* Adicione isto no seu CSS */
img {
    pointer-events: none;     /* Desativa interações */
    user-select: none;        /* Impede seleção */
    -webkit-user-drag: none;  /* Bloqueia arrastar no Chrome/Safari */
    -khtml-user-drag: none;   /* Bloqueia arrastar no Konqueror */
    -moz-user-drag: none;     /* Bloqueia arrastar no Firefox */
    -ms-user-drag: none;      /* Bloqueia arrastar no Edge */
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            color: #333;
            line-height: 1.6;
            background-color: #fff9f9;
            overflow-x: hidden;
        }

        h1, h2, h3 {
            font-family: 'Amatic SC', cursive;
            font-weight: 700;
        }

        .handwritten {
            font-family: 'Pacifico', cursive;
        }

        /* Highlight text */
        .highlight {
            position: relative;
            display: inline-block;
            z-index: 1;
        }

        .highlight.pink::after {
            content: "";
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--rosa-bebe);
            z-index: -1;
            opacity: 0.7;
            transform: rotate(-1deg);
            border-radius: 20px;
        }

        .highlight.blue::after {
            content: "";
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--azul-claro);
            z-index: -1;
            opacity: 0.7;
            transform: rotate(1deg);
            border-radius: 20px;
        }

        .highlight.purple::after {
            content: "";
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 12px;
            background-color: var(--lilas);
            z-index: -1;
            opacity: 0.7;
            transform: rotate(-2deg);
            border-radius: 20px;
        }

        /* Glow effects */
        .glow {
            position: relative;
        }

        .glow::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: inherit;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .glow-pink::before {
            background: radial-gradient(circle, var(--rosa-destaque) 0%, transparent 70%);
            box-shadow: 0 0 30px 10px rgba(255, 133, 162, 0.4);
        }

        .glow-blue::before {
            background: radial-gradient(circle, var(--azul-destaque) 0%, transparent 70%);
            box-shadow: 0 0 30px 10px rgba(90, 169, 230, 0.4);
        }

        .glow:hover::before {
            opacity: 1;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo-text {
            font-family: 'Pacifico', cursive;
            color: var(--rosa-destaque);
            font-size: 1.8rem;
        }

        .logo-text span {
            color: var(--azul-destaque);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--rosa-destaque);
        }

        .btn {
            display: inline-block;
            background-color: var(--rosa-destaque);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            background-color: #ff6b8b;
        }

        .btn::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0) 37%,
                rgba(255, 255, 255, 0.8) 45%,
                rgba(255, 255, 255, 0) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            transition: all 0.3s;
            opacity: 0;
        }

        .btn:hover::after {
            animation: shine 1.5s ease infinite;
            opacity: 1;
        }

        @keyframes shine {
            0% {
                left: -50%;
                top: -50%;
            }
            100% {
                left: 150%;
                top: 150%;
            }
        }

        .btn-pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .btn-blue {
            background-color: var(--azul-destaque);
        }

        .btn-blue:hover {
            background-color: #3d8fd6;
        }

        .btn-purple {
            background-color: var(--roxo-destaque);
        }

        .btn-purple:hover {
            background-color: #7b5dbf;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--azul-claro) 100%);
            padding: 180px 5% 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff" fill-opacity="0.3"/><circle cx="50" cy="50" r="2" fill="%23ffffff" fill-opacity="0.3"/><circle cx="80" cy="30" r="4" fill="%23ffffff" fill-opacity="0.3"/><circle cx="70" cy="70" r="3" fill="%23ffffff" fill-opacity="0.3"/><circle cx="30" cy="80" r="2" fill="%23ffffff" fill-opacity="0.3"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            color: #333;
            line-height: 1.2;
            animation: fadeIn 1s ease-in;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 30px;
            color: #555;
            animation: fadeIn 1.5s ease-in;
        }

        .hero-image {
            max-width: 600px;
            margin: 40px auto 0;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            animation: float 6s ease-in-out infinite;
            overflow: hidden;
            position: relative;
        }

        .hero-image::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(255,255,255,0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }

        .hero-image:hover img {
            transform: scale(1.03);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        /* Underline effects */
        .underline {
            position: relative;
            display: inline-block;
        }

        .underline::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 8px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><path d="M0,5 Q25,10 50,5 T100,5" fill="none" stroke="%23FF85A2" stroke-width="2" stroke-linecap="round"/></svg>');
            background-repeat: repeat-x;
            background-size: 100px 10px;
            z-index: -1;
        }

        .underline.blue::after {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="10" viewBox="0 0 100 10"><path d="M0,5 Q25,0 50,5 T100,5" fill="none" stroke="%235AA9E6" stroke-width="2" stroke-linecap="round"/></svg>');
        }

        /* Benefits Section */
        .benefits {
            padding: 80px 5%;
            background-color: white;
            text-align: center;
            position: relative;
        }

        .benefits::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="2" fill="%23FFD6E0" fill-opacity="0.3"/><circle cx="90" cy="20" r="3" fill="%23C4E0F9" fill-opacity="0.3"/><circle cx="30" cy="80" r="2" fill="%23FFD6E0" fill-opacity="0.3"/><circle cx="70" cy="90" r="3" fill="%23C4E0F9" fill-opacity="0.3"/></svg>');
            opacity: 0.1;
            pointer-events: none;
        }

        .section-title {
            font-size: 3.5rem;
            margin-bottom: 50px;
            color: var(--roxo-destaque);
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 6px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
            border-radius: 3px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .benefit-card {
            background-color: white;
            padding: 30px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .benefit-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,214,224,0.1) 0%, rgba(196,224,249,0.1) 100%);
            z-index: -1;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }

        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--roxo-destaque);
            position: relative;
            display: inline-block;
        }

        .benefit-icon::after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255,133,162,0.2) 0%, transparent 70%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .benefit-card:hover .benefit-icon::after {
            opacity: 1;
        }

        .benefit-card h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #444;
            position: relative;
            display: inline-block;
        }

        .benefit-card h3::after {
            content: "✓";
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-color: var(--rosa-destaque);
            color: white;
            border-radius: 50%;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
            padding-bottom: 2px;
        }

        .benefit-card:nth-child(even) h3::after {
            background-color: var(--azul-destaque);
        }

        .benefit-card p {
            color: #666;
            font-size: 1rem;
        }

        /* What's Included */
        .included {
            padding: 80px 5%;
            background-color: var(--amarelo-suave);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .included::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,30 80,20" stroke="%23FFD700" stroke-width="1" stroke-opacity="0.2" fill="none"/><path d="M30,40 Q60,50 90,40" stroke="%23FFD700" stroke-width="1" stroke-opacity="0.2" fill="none"/><path d="M10,60 Q40,70 70,60" stroke="%23FFD700" stroke-width="1" stroke-opacity="0.2" fill="none"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .included .section-title {
            color: #e67e22;
        }

        .included-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 40px auto;
            position: relative;
            z-index: 1;
        }

        .included-item {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .included-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,214,224,0.1) 0%, rgba(196,224,249,0.1) 100%);
            z-index: -1;
        }

        .included-item:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }

        .included-item p{
            margin-top: 1em;
        }

        .included-item img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }

        .included-item:hover img {
            transform: scale(1.1) rotate(5deg);
        }

        .included-item h3 {
            font-size: 1.5rem;
            color: #444;
            position: relative;
            display: inline-block;
        }

        .included-item h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
            border-radius: 3px;
        }

        .included-text {
            max-width: 800px;
            margin: 40px auto 0;
            font-size: 1.2rem;
            color: #555;
            position: relative;
            z-index: 1;
        }

        /* Activities Section */
        .activities {
            padding: 80px 5%;
            background-color: var(--lilas);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .activities::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 T80,80 Q50,90 20,80 T20,20" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.2"/><path d="M30,30 Q50,20 70,30 T70,70 Q50,80 30,70 T30,30" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.2"/></svg>');
            opacity: 0.2;
            pointer-events: none;
        }

        .activities .section-title {
            color: #6a3093;
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            max-width: 1000px;
            margin: 40px auto;
            position: relative;
            z-index: 1;
        }

        .activity-card {
            background-color: white;
            padding: 25px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .activity-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212,196,251,0.1) 0%, rgba(196,224,249,0.1) 100%);
            z-index: -1;
        }

        .activity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .activity-card img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 15px;
            transition: transform 0.3s;
        }

        .activity-card:hover img {
            transform: scale(1.1) rotate(-5deg);
        }

        .activity-card h3 {
            font-size: 1.5rem;
            color: #444;
            margin-bottom: 10px;
            position: relative;
        }

        .activity-card h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
            border-radius: 3px;
        }

        .activity-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* Special Needs Section */
        .special-needs {
            padding: 80px 5%;
            background: url(Background/2.jpg) center/cover no-repeat;

            background-color: var(--verde-menta);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .special-needs::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,30 Q35,15 50,30 T80,30" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.3"/><path d="M30,60 Q45,45 60,60 T90,60" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.3"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .special-needs .section-title {
            color: #ffffff;
        }

        .special-needs-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .special-needs-content p {
            font-size: 1.2rem;
            color: #ffffff;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .needs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .need-card {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .need-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
        }

        .need-card h3 {
            font-size: 1.8rem;
            color: #444;
            margin-bottom: 15px;
        }

        .need-card p {
            color: #666;
            font-size: 1rem;
        }

        /* Pricing */
        .pricing {
            padding: 80px 5%;
            background-color: white;
            text-align: center;
            position: relative;
        }

        .pricing::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 T80,80 Q50,90 20,80 T20,20" fill="none" stroke="%23FFD6E0" stroke-width="1" stroke-opacity="0.2"/><path d="M30,30 Q50,20 70,30 T70,70 Q50,80 30,70 T30,30" fill="none" stroke="%23C4E0F9" stroke-width="1" stroke-opacity="0.2"/></svg>');
            opacity: 0.1;
            pointer-events: none;
        }

       .pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto;
    position: relative;
    z-index: 1;

    border: 2px solid gold;
    border-radius: 15px;
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.7),
        0 0 30px rgba(255, 215, 0, 0.5),
        0 0 45px rgba(255, 215, 0, 0.3);
    background: linear-gradient(145deg, #fff8dc, #ffd700);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pricing-cards:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.9),
        0 0 40px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4);
}

        .pricing-card {
            background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--azul-claro) 100%);
            padding: 40px 30px;
            border-radius: 20px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .pricing-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,10 Q50,5 70,30 T90,70 Q95,50 70,30 T10,30 Q5,50 30,70 T30,10" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.3"/></svg>');
            opacity: 0.3;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .pricing-card-image {
            width: 150px;
            height: 150px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border: 5px solid white;
        }

        .pricing-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pricing-card h3 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #333;
            position: relative;
        }

        .pricing-card h3::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
            border-radius: 3px;
        }

        .price {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--roxo-destaque);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .price::before {
            content: "";
            position: absolute;
            top: -10px;
            left: -20px;
            right: -20px;
            bottom: -10px;
            background: radial-gradient(circle, rgba(147,112,219,0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
        }

        .price span {
            font-size: 1.2rem;
            color: #666;
            text-decoration: line-through;
            display: block;
            margin-top: 5px;
        }

        .pricing-features {
            text-align: left;
            margin: 30px 0;
            padding-left: 20px;
        }

        .pricing-features li {
            margin-bottom: 15px;
            position: relative;
            list-style-type: none;
            padding-left: 30px;
            color: #555;
        }

        .pricing-features li::before {
            content: "✓";
            color: white;
            font-weight: bold;
            position: absolute;
            left: 0;
            width: 20px;
            height: 20px;
            background-color: var(--rosa-destaque);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .pricing-features li.bonus::before {
            background-color: var(--dourado);
            box-shadow: 0 0 0 2px white, 0 0 0 4px var(--dourado);
        }

        .pricing-features li:nth-child(even)::before {
            background-color: var(--azul-destaque);
        }

        /* Testimonials */
        .testimonials {
            padding: 80px 5%;
            background-color: var(--verde-menta);
            text-align: center;
            position: relative;
        }

        .testimonials::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,30 Q35,15 50,30 T80,30" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.3"/><path d="M30,60 Q45,45 60,60 T90,60" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.3"/></svg>');
            opacity: 0.3;
            pointer-events: none;
        }

        .testimonials .section-title {
            color: #27ae60;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1000px;
            margin: 40px auto;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .testimonial-card::before {
            content: "";
            font-family: Georgia, serif;
            font-size: 5rem;
            color: var(--verde-menta);
            position: absolute;
            top: 10px;
            left: 10px;
            line-height: 1;
            opacity: 0.3;
            z-index: 0;
        }

        .testimonial-card::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(193,242,176,0.1) 0%, rgba(255,214,224,0.1) 100%);
            z-index: -1;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #555;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
            border: 2px solid white;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .author-info h4 {
            font-size: 1.1rem;
            color: #333;
        }

        .author-info p {
            font-size: 0.9rem;
            color: #777;
        }

        /* Screen Addiction Section */
        .screen-addiction {
            padding: 80px 5%;
            background-color: var(--azul-escuro);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .screen-addiction::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 T80,80 Q50,90 20,80 T20,20" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1"/><path d="M30,30 Q50,20 70,30 T70,70 Q50,80 30,70 T30,30" fill="none" stroke="%23ffffff" stroke-width="1" stroke-opacity="0.1"/></svg>');
            opacity: 0.1;
            pointer-events: none;
        }

        .screen-addiction .section-title {
            color: var(--rosa-bebe);
        }

        .addiction-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .addiction-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #eee;
        }

        .addiction-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .stat-card {
            background-color: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
        }

        .stat-card h3 {
            font-size: 2.5rem;
            color: var(--rosa-bebe);
            margin-bottom: 10px;
        }

        .stat-card p {
            font-size: 1rem;
            color: #ccc;
            margin-bottom: 0;
        }

        /* Countdown */
        .countdown {
            padding: 60px 5%;
            background: linear-gradient(135deg, var(--rosa-destaque) 0%, var(--roxo-destaque) 100%);
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .countdown::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" fill-opacity="0.1"/><circle cx="50" cy="50" r="3" fill="%23ffffff" fill-opacity="0.1"/><circle cx="80" cy="30" r="2" fill="%23ffffff" fill-opacity="0.1"/><circle cx="70" cy="70" r="3" fill="%23ffffff" fill-opacity="0.1"/><circle cx="30" cy="80" r="2" fill="%23ffffff" fill-opacity="0.1"/></svg>');
            opacity: 0.2;
            pointer-events: none;
        }

        .countdown h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .countdown p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .timer-item {
            background-color: rgba(255,255,255,0.2);
            padding: 15px 20px;
            border-radius: 10px;
            min-width: 80px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.3);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .timer-number {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 5px;
        }

        .timer-label {
            font-size: 0.9rem;
            text-transform: uppercase;
            opacity: 0.8;
        }

        /* Guarantee */
        .guarantee {
            padding: 60px 5%;
            background-color: white;
            text-align: center;
            position: relative;
        }

        .guarantee-content {
            max-width: 800px;
            margin: 0 auto;
            background-color: var(--azul-claro);
            padding: 40px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.5);
        }

        .guarantee-content::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,50 Q35,20 50,50 T80,50" fill="none" stroke="%23ffffff" stroke-width="2" stroke-opacity="0.3"/></svg>');
            opacity: 0.3;
        }

        .guarantee-content::after {
            content: "";
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: radial-gradient(circle, rgba(90,169,230,0.1) 0%, transparent 70%);
            z-index: -1;
            border-radius: 30px;
        }

        .guarantee h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--roxo-destaque);
            position: relative;
            z-index: 1;
        }

        .guarantee p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: #555;
            position: relative;
            z-index: 1;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
            position: relative;
            z-index: 1;
        }

        .payment-methods img {
            height: 120px;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .payment-methods img:hover {
            opacity: 1;
        }

        /* FAQ Section */
        .faq {
            padding: 80px 5%;
            background-color: white;
            text-align: center;
            position: relative;
        }

        .faq::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 T80,80 Q50,90 20,80 T20,20" fill="none" stroke="%23FFD6E0" stroke-width="1" stroke-opacity="0.2"/><path d="M30,30 Q50,20 70,30 T70,70 Q50,80 30,70 T30,30" fill="none" stroke="%23C4E0F9" stroke-width="1" stroke-opacity="0.2"/></svg>');
            opacity: 0.1;
            pointer-events: none;
        }

        .faq .section-title {
            color: var(--roxo-destaque);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: all 0.3s;
            background-color: white;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .faq-item:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .faq-question {
            padding: 20px;
            background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--azul-claro) 100%);
            color: #333;
            font-weight: bold;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .faq-question:hover {
            background: linear-gradient(135deg, var(--rosa-destaque) 0%, var(--azul-destaque) 100%);
            color: white;
        }

        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: white;
        }

        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }

        .faq-answer p {
            color: #555;
            text-align: left;
            margin-bottom: 15px;
        }

        /* Special Offer Section */
        .special-offer {
            padding: 80px 5%;
            background: linear-gradient(135deg, var(--rosa-bebe) 0%, var(--azul-claro) 100%);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .special-offer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="3" fill="%23ffffff" fill-opacity="0.3"/><circle cx="50" cy="50" r="2" fill="%23ffffff" fill-opacity="0.3"/><circle cx="80" cy="30" r="4" fill="%23ffffff" fill-opacity="0.3"/><circle cx="70" cy="70" r="3" fill="%23ffffff" fill-opacity="0.3"/><circle cx="30" cy="80" r="2" fill="%23ffffff" fill-opacity="0.3"/></svg>');
            opacity: 0.3;
        }

        .special-offer-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .special-offer h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #333;
            position: relative;
            display: inline-block;
        }

        .special-offer h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
            border-radius: 10px;
        }

        .special-offer p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }

        .offer-boxes {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }

        .offer-box {
            background-color: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            width: 250px;
            transition: transform 0.3s;
            position: relative;
            overflow: hidden;
        }

        .offer-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--rosa-destaque), var(--azul-destaque));
        }

        .offer-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .offer-box h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--roxo-destaque);
        }

        .offer-box p {
            font-size: 1rem;
            color: #666;
            margin-bottom: 0;
        }

        /* Footer */
        footer {
            background-color: #333;
            color: white;
            padding: 60px 5% 30px;
            position: relative;
        }

        footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="30" cy="30" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="70" cy="10" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="90" cy="30" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="10" cy="70" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="30" cy="90" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="70" cy="70" r="1" fill="%23ffffff" fill-opacity="0.05"/><circle cx="90" cy="90" r="1" fill="%23ffffff" fill-opacity="0.05"/></svg>');
            opacity: 0.1;
            pointer-events: none;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Pacifico', cursive;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--rosa-bebe);
        }

        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--rosa-destaque);
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--rosa-bebe);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        /* Floating Button (Mobile) */
        .floating-btn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--rosa-destaque);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            z-index: 999;
            display: none;
            animation: pulse 2s infinite;
            transition: all 0.3s;
        }

        .floating-btn:hover {
            transform: scale(1.1);
        }

        /* Emojis floating */
        .emoji-float {
            position: absolute;
            font-size: 1.5rem;
            animation: floatEmoji 10s linear infinite;
            opacity: 0.7;
            z-index: 0;
            pointer-events: none;
        }

        .urgency{
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

            /* Carrossel */
            /* Carrossel */
            /* RESET BÁSICO */
.carrosselSec {
   padding: 20px 0;
   text-align: center;
}

.textcarro h1 {
   font-size: 2rem;
   margin-bottom: 5px;
}

.textcarro p {
   color: #666;
   margin-bottom: 20px;
}

/* ESTRUTURA PRINCIPAL */
.carrossel-container {
   position: relative;
   max-width: 400px;
   margin: 0 auto;
   overflow: hidden;
}

.carrossel-wrapper {
   width: 100%;
   position: relative;
   padding-bottom: 133%; /* Proporção 3:4 */
   overflow: hidden;
   border-radius: 12px;
   box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.carrossel-track {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   display: flex;
   transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.carrossel-slide {
   min-width: 100%;
   height: 100%;
   position: relative;
}

.carrossel-slide img {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 12px;
   transition: transform 0.3s ease;
}

/* CONTROLES DE NAVEGAÇÃO */
.carrossel-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 40px;
   height: 40px;
   background: rgba(255, 255, 255, 0.205);
   border: none;
   border-radius: 50%;
   color: #333;
   font-size: 1rem;
   cursor: pointer;
   z-index: 10;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s ease;
}

.carrossel-arrow {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.carrossel-arrow:focus,
.carrossel-arrow:active {
    outline: none;
    box-shadow: none;
}

.carrossel-arrow:hover {
  background: rgba(255, 255, 255, 0.582);
}

.carrossel-prev {
   left: 15px;
}

.carrossel-next {
   right: 15px;
}

/* INDICADORES (DOTS) */
.carrossel-dots {
   position: absolute;
   bottom: 15px;
   left: 0;
   right: 0;
   display: flex;
   justify-content: center;
   gap: 8px;
   z-index: 10;
}

.carrossel-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: rgba(255,255,255,0.5);
   cursor: pointer;
   transition: all 0.3s ease;
}

.carrossel-dot.active {
   background: rgba(255,255,255,0.9);
   transform: scale(1.2);
}

/* RESPONSIVO */
@media (max-width: 500px) {
   .carrossel-container {
      max-width: 90%;
   }
   
   .carrossel-arrow {
      width: 35px;
      height: 35px;
   }
}
            /* Carrossel */

        @keyframes floatEmoji {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 15px 3%;
            }

            .logo-text {
                font-size: 1.5rem;
            }

            nav {
                display: none;
            }

            .hero {
                padding: 150px 3% 80px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }

            .pricing-card {
                max-width: 100%;
            }

            .offer-boxes {
                flex-direction: column;
                align-items: center;
            }

            .offer-box {
                width: 100%;
                max-width: 350px;
            }

            .floating-btn {
                display: flex;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .btn {
                padding: 10px 20px;
            }

            .timer {
                gap: 10px;
            }

            .timer-item {
                min-width: 60px;
                padding: 10px 15px;
            }

            .timer-number {
                font-size: 1.8rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        