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

        :root {
            --gradient: linear-gradient(45deg, #ff3366, #ff6b6b, #4834d4, #686de0);
            --glass-bg: rgba(255, 255, 255, 0.05);
            --border: 1px solid rgba(255, 255, 255, 0.1);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

            --bg-color: #0d0b1a;
              --primary-color: #9969ff;
              --secondary-color: #ff69a1;
              --text-color: #ffffff;
              --card-back: linear-gradient(45deg, #4a0e77, #650d6d);
              --card-front: linear-gradient(135deg, #2b2f66, #1c1647);
              --card-hover: #764ba2;
        }

 
        body {
            font-family: "Cormorant Garamond", serif;
            background-color: var(--bg-color);
            background-image: radial-gradient(circle, #1a1333 0%, #0d0b1a 100%);
            color: var(--text-color);
            min-height: 100vh;
            overflow-x: hidden;
        }


        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.2rem 5%;
            backdrop-filter: blur(12px);
            background: var(--glass-bg);
            border-bottom: var(--border);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow);
        }

        .navbar.scrolled {
            padding: 0.8rem 5%;
            background: rgba(10, 10, 10, 0.95);
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 8s linear infinite;
            background-size: 300%;
            letter-spacing: -0.5px;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            background-size: 300%;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
        }

        .nav-links a:hover::before,
        .nav-links a:hover::after {
            width: 100%;
            animation: gradient 8s linear infinite;
        }

        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            width: 40px;
            height: 40px;
            position: relative;
            z-index: 1001;
            transition: background-color 0.3s ease;
        }

        .mobile-nav-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .mobile-nav-toggle .bar {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 2px;
            background: white;
            transition: all 0.4s ease;
        }

        .mobile-nav-toggle .bar:nth-child(1) { top: 14px; }
        .mobile-nav-toggle .bar:nth-child(2) { top: 19px; }
        .mobile-nav-toggle .bar:nth-child(3) { top: 24px; }

        @keyframes gradient {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

      
            @media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .section-description {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .card {
        width: 130px;
        height: 230px;
    }

    .card-symbol {
        font-size: 2.5rem;
    }

    .message-card {
        padding: 1rem;
    }

    .message-title {
        font-size: 1.8rem;
    }

    .message-text {
        font-size: 1.3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        max-width: 300px;
        margin: 0 auto;
    }

    .about-text {
        text-align: center;
    }

    .about-signature {
        margin-left: auto;
        margin-right: auto;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1rem; /* ou 2rem, escolha um e mantenha */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.99), rgba(20, 20, 20, 0.99));
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        padding: 2rem;
        backdrop-filter: blur(10px);
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03));
        pointer-events: none;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active a {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .nav-links a:nth-child(5) { transition-delay: 0.5s; }

    .mobile-nav-toggle {
        display: block;
    }

    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translate(-50%, 5px) rotate(45deg);
        width: 24px;
    }

    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translate(-50%, -5px) rotate(-45deg);
        width: 24px;
    }

    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
    }

    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}
            .section-title {
                font-size: 3rem;
            }

            .section-description {
                font-size: 1rem;
                padding: 0 1rem;
            }
 section {
            min-height: 100vh;
            padding: 7% 5% 7%;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

         section:nth-child(even) {
            background: var(--section-bg);
        }

         .section-title {
            font-size: 8vw;
            font-weight: 800;
            margin-bottom: 2rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient 8s linear infinite;
            background-size: 300%;
            line-height: 1.1;
            text-transform: uppercase;
            letter-spacing: -2px;
        }

        .section-description {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            opacity: 0.9;
            color: white;
            text-align: center;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            position: relative;
        }

        header {
            text-align: center;
            margin-bottom: 3rem;
            margin-top: 10rem;
            position: relative;
            z-index: 2;
        }

        h1 {
            font-family: "Cinzel", serif;
            font-size: 3rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(
                to right,
                var(--primary-color),
                var(--secondary-color)
            );
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 10px rgba(153, 105, 255, 0.3);
        }


.subtitle {
	font-size: 1.2rem;
	opacity: 0.8;
	max-width: 600px;
	margin: 0 auto;
}

.card-table {
	perspective: 1000px;
	margin-bottom: 2rem;
	min-height: 400px;
	z-index: 2;
	position: relative;
}

.cards-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	min-height: 350px;
	padding: 1rem;

}


.card {
	width: 100%;
    height: 100%;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 1s, filter 0.5s;
	cursor: pointer;
	filter: brightness(0.9);
    aspect-ratio: 2/3; /* Proporção padrão de cartas de tarô */

}


.card:hover {
	filter: brightness(1.2) drop-shadow(0 0 15px rgba(153, 105, 255, 0.6));
	transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

.card-face {
	width: 100%;
	height: 100%;
	position: absolute;
	backface-visibility: hidden;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	overflow: hidden;
}

.card-back {
	background: var(--card-back);
	border: 3px solid rgba(255, 255, 255, 0.1);
}

.card-front {
	background: var(--card-front);
	transform: rotateY(180deg);
	padding: 1rem;
	text-align: center;
	border: 3px solid rgba(153, 105, 255, 0.3);
}

.card-symbol {
	font-size: 3rem;
	margin-bottom: 1rem;
	opacity: 0.9;
}

.card-title {
	font-family: "Cinzel", serif;
	font-size: 1.2rem;
	margin-bottom: 0.5rem;
	background: linear-gradient(
		to right,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.card-desc {
	font-size: 0.9rem;
	opacity: 0.7;
}

.card.flipped {
	transform: rotateY(180deg);
	pointer-events: none;
}

.card-back:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0 L60 40 L100 50 L60 60 L50 100 L40 60 L0 50 L40 40 Z' fill='rgba(255, 255, 255, 0.2)'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0.5;
}

.card-back:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-image: repeating-linear-gradient(
		45deg,
		rgba(255, 255, 255, 0.05) 0,
		rgba(255, 255, 255, 0.05) 1px,
		transparent 1px,
		transparent 10px
	);
	border-radius: 15px;
}

.message-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s;
	z-index: 10;
}

.message-container.visible {
	opacity: 1;
	pointer-events: all;
}

.message-card {
	width: 90%;
	max-width: 500px;
	background: rgba(30, 25, 50, 0.95);
	backdrop-filter: blur(10px);
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(153, 105, 255, 0.3);
	text-align: center;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
	transform: translateY(30px);
	opacity: 0;
	transition: transform 0.8s, opacity 0.8s;
}

.message-container.visible .message-card {
	transform: translateY(0);
	opacity: 1;
}

.message-title {
	font-family: "Cinzel", serif;
	font-size: 2.2rem;
	margin-bottom: 1.5rem;
	background: linear-gradient(
		to right,
		var(--primary-color),
		var(--secondary-color)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.message-text {
	font-size: 1.6rem;
	line-height: 1.6;
	margin-bottom: 2rem;
}

    button {
	background: linear-gradient(
		45deg,
		var(--primary-color),
		var(--secondary-color)
	);
	color: white;
	border: none;
	padding: 0.8rem 2rem;
	font-family: "Cinzel", serif;
	font-size: 1rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: 0 5px 15px rgba(153, 105, 255, 0.4);
}

button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(153, 105, 255, 0.6);
}


canvas {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	pointer-events: none;
}

/* Seções melhoradas */
        .section-content {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            position: relative;
            z-index: 1;
        }


.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.section-card {
    background: rgba(30, 25, 50, 0.5);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(153, 105, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(153, 105, 255, 0.2);
    border-color: rgba(153, 105, 255, 0.4);
}

.section-card-title {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-card-text {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-item {
    margin-bottom: 2rem;
}

.price-card {
    background: rgba(30, 25, 50, 0.7);
    border-radius: 20px;
    padding: 2rem;
     position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(153, 105, 255, 0.2);
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    z-index: 1;
}


.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(153, 105, 255, 0.2);
    border-color: rgba(153, 105, 255, 0.5);
}


.price-title {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 1rem 0;
    color: var(--secondary-color);
}

.price-features {
    list-style: none;
    margin: 1.5rem 0;
}

.price-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-features li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.contact-form {
    max-width: 764px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* Rodapé */
footer {
    background: rgba(10, 8, 20, 0.9);
    padding: 3rem 5%;
    text-align: center;
    border-top: 1px solid rgba(153, 105, 255, 0.2);
    position: relative;
    z-index: 2;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.footer-column h3 {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-column p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.footer-links a:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    opacity: 0;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 2rem;
}

.footer-links a:hover:before {
    opacity: 1;
    left: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(153, 105, 255, 0.2);
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s;

    text-decoration: none;
    border-bottom: none;
}


.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsividade */

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    .cards-container {
        gap: 1rem;
    }

    .card {
        width: 110px;
        height: 190px;
    }

    .card-symbol {
        font-size: 2rem;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-desc {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Special Animation Elements */
.magical-sparkle {
	position: absolute;
	width: 5px;
	height: 5px;
	background: white;
	border-radius: 50%;
	pointer-events: none;
	z-index: 100;
	animation: sparkle 1s forwards;
}

@keyframes sparkle {
	0% {
		transform: scale(0) rotate(0deg);
		opacity: 1;
	}
	100% {
		transform: scale(1.5) rotate(90deg);
		opacity: 0;
	}
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: rotate(-5deg);
    border: 8px solid rgba(153, 105, 255, 0.3);
    transition: all 0.9s ease;
}

.about-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(153, 105, 255, 0.2);
    border-color: rgba(153, 105, 255, 0.5);

}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(0.3) contrast(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(153, 105, 255, 0.1), rgba(255, 105, 161, 0.1));
    z-index: 1;
}

.about-text {
    position: relative;
    z-index: 2;
    text-align: left;
}

.about-title {
    font-family: "Cinzel", serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-align: justify;
}



.about-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(248, 225, 150, 0.596);
    border-radius: 50%;
    animation: twinkle 3s infinite alternate;
}

@keyframes twinkle {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}



@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

@media (max-width: 928px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        max-width: 350px;
        margin: 0 auto;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-signature {
        margin-left: auto;
        margin-right: auto;
    }
        .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }

}

.mensagem-sucesso {
  font-family: "Cormorant Garamond", serif;
  color: var(--text-color);
  background: var(--glass-bg);
  box-shadow: var(--shadow);
  background-image: var(--card-front);
  padding: 20px 30px;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-size: 1.5rem;
  animation: fadeIn 0.8s ease-in-out;
  backdrop-filter: blur(8px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(30, 25, 50, 0.7);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(153, 105, 255, 0.2);
    transition: all 0.5s ease;
    backdrop-filter: blur(5px);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(153, 105, 255, 0.2);
    border-color: rgba(153, 105, 255, 0.5);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(153, 105, 255, 0.05));
    z-index: -1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    font-family: "Cinzel", serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.8rem;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
}

.service-cta {
    margin-top: 2rem;
}

.service-orb {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(153,105,255,0.2) 0%, rgba(153,105,255,0) 70%);
    filter: blur(10px);
    z-index: -1;
    animation: pulse 8s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.service-card:nth-child(1) .service-orb {
    top: -30px;
    right: -30px;
    background: radial-gradient(circle, rgba(153,105,255,0.3) 0%, rgba(153,105,255,0) 70%);
}

.service-card:nth-child(2) .service-orb {
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle, rgba(255,105,161,0.3) 0%, rgba(255,105,161,0) 70%);
}

.service-card:nth-child(3) .service-orb {
    top: -20px;
    left: -20px;
    background: radial-gradient(circle, rgba(105,180,255,0.3) 0%, rgba(105,180,255,0) 70%);
}

.message-container .message-card {
    transition: all 0.5s ease;
}

.card.bloqueado {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(0.8);
    position: relative;
}

.card.bloqueado::after {
    content: 'Volte em 1 hora';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.card.bloqueado {
    pointer-events: none;
    opacity: 0.5;
    filter: grayscale(0.8);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

#contador-tempo {
    font-family: monospace;
    color: var(--secondary-color);
    font-size: 1.2em;
}

/* Estilo base (será sobrescrito para mobile) */
#cards-container {
    display: grid;
    width: 100%;
    gap: 8px;
    padding: 8px;
    box-sizing: border-box; /* Importante para cálculos precisos */
}

/* Apenas para mobile */
.mobile-view #cards-container {
    grid-template-columns: repeat(3, 1fr);
    padding: 5px;
}

.mobile-view .card {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 2/3 !important;
}

#cards-container.mobile-view {
    grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
}

/* Layout para desktop */
#cards-container:not(.mobile-view) {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

@media (max-width: 350px) {
    #cards-container.mobile-view {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }
}

/* Ajustes para telas maiores */
@media (min-width: 600px) {
    #cards-container:not(.mobile-view) {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}