:root {
	--primary: #c00000;
	--primary-dark: #9a0000;
	--accent: #d4af37;
	--purple: #4a1a4a;
	--purple-dark: #2a0a2a;
	--bg: #ffffff;
	--bg-alt: #f8f8f8;
	--text: #2d1a2d;
	--text-muted: #333333; /* CORRIGIDO: era #ffffff (branco), agora é cinza escuro */
	--border: #e0e0e0;
	--shadow: rgba(0, 0, 0, 0.1);
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	color: var(--text);
	background-color: var(--bg);
	line-height: 1.6;
	overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'VERDANA', serif;	font-weight: 700;
	line-height: 1.2;
}
.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1rem;
}
@media (min-width: 640px) {
	.container {
		padding: 0 1.5rem;
	}
}
@media (min-width: 1024px) {
	.container {
		padding: 0 2rem;
	}
}
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 2px 8px var(--shadow);
}
.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	gap: 1rem;
}
@media (min-width: 768px) {
	.header-content {
		height: 96px;
	}
}
.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	text-decoration: none;
	padding: 0.5rem;
	border-radius: 0.5rem;
	transition: background-color 0.2s;
}
.logo:hover {
	background-color: rgba(0, 0, 0, 0.03);
}
.logo-icon {
	width: 40px;
	height: 40px;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media (min-width: 768px) {
	.logo-icon {
		width: 48px;
		height: 48px;
	}
}
.logo-text {
	display: none;
}
@media (min-width: 640px) {
	.logo-text {
		display: block;
	}
}
.logo-title {
	font-family: 'Cinzel Decorative', serif;
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--text);
	line-height: 1.2;
}
@media (min-width: 768px) {
	.logo-title {
		font-size: 1.25rem;
	}
}
.logo-subtitle {
	font-size: 0.75rem;
	color: #666666; /* CORRIGIDO: agora é cinza médio */
	line-height: 1.2;
}
@media (min-width: 768px) {
	.logo-subtitle {
		font-size: 0.875rem;
	}
}
.mobile-menu-toggle {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}
@media (min-width: 768px) {
	.mobile-menu-toggle {
		display: none;
	}
}
.mobile-menu-toggle span {
	width: 24px;
	height: 2px;
	background: var(--text);
	transition: all 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
}
.nav-desktop {
	display: none;
	align-items: center;
	gap: 0.25rem;
}
@media (min-width: 768px) {
	.nav-desktop {
		display: flex;
	}
}
.nav-desktop a {
	padding: 0.5rem 1rem;
	color: var(--text);
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	border-radius: 0.5rem;
	transition: background-color 0.2s;
}
.nav-desktop a:hover {
	background-color: rgba(0, 0, 0, 0.03);
}
.nav-mobile {
	display: none;
	flex-direction: column;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 4px 8px var(--shadow);
}
.nav-mobile.active {
	display: flex;
}
.nav-mobile a {
	padding: 1rem 1.5rem;
	color: var(--text);
	text-decoration: none;
	font-weight: 500;
	border-bottom: 1px solid var(--border);
	transition: background-color 0.2s;
}
.nav-mobile a:hover {
	background-color: var(--bg-alt);
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border: none;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
}
.btn-primary {
	background: var(--primary);
	color: white;
}
.btn-primary svg {
	color: white;
}
.btn-primary:hover {
	background: var(--primary-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(192, 0, 0, 0.3);
}
.btn-secondary {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
}
.btn-secondary:hover {
	background: var(--primary);
	color: white;
}
.btn-hero {
	padding: 1rem 2rem;
	font-size: 1rem;
	background: var(--primary);
	color: white;
}
.btn-hero .whatsapp-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
}
@media (min-width: 768px) {
	.btn-hero {
		padding: 1.25rem 2rem;
		font-size: 1.125rem;
	}
}
.btn-hero:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(192, 0, 0, 0.4);
}
.whatsapp-btn span {
	display: none;
}
.whatsapp-btn .whatsapp-icon {
	width: 20px;
	height: 20px;
	object-fit: contain;
}
@media (min-width: 640px) {
	.whatsapp-btn span {
		display: inline;
	}
}
main {
	padding-top: 0px;
}
@media (min-width: 768px) {
	main {
		padding-top: 1px;
	}
}
.hero {
	min-height: 500px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
	padding: 4rem 0;
}
.hero-images {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}
.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}
.hero-bg-image-overlay {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	object-fit: cover;
	opacity: 1;
}
@media (max-width: 768px) {
	.hero-bg-image-overlay {
		width: 100%;
		opacity: 0.15;
	}
}
@media (min-width: 768px) {
	.hero {
		min-height: 600px;
		padding: 5rem 0;
	}
}
@media (min-width: 1024px) {
	.hero {
		padding: 3rem 0;
	}
}
.hero-content {
	text-align: center;
	position: relative;
	z-index: 2;
}
.hero h1 {
	font-size: 2rem;
color: #FFC0CB;
	margin-bottom: 1rem;
-webkit-text-stroke: 1px #000000;text-shadow: 8px 1px 4px #000000;}
.hero h2 {
	font-size: 2rem;
color: #FFEE8C;
	margin-bottom: 0.5rem;
-webkit-text-stroke: 1px #000000;text-shadow: 8px 1px 4px #000000;}
@media (min-width: 640px) {
	.hero h1 {
		font-size: 2rem;
	}
}
@media (min-width: 768px) {
	.hero h1 {
		font-size: 2.75rem;
	}
}
@media (min-width: 1024px) {
	.hero h1 {
		font-size: 2.75rem;
	}
}
.hero p {
font-size: 1.5rem;clor:#000000;	max-width: 48rem;
	margin: 0 auto 2rem;
	line-height: 1.7;
  -webkit-text-stroke: 0.5px #FFFFFF;  
}
.typewriter-text {
font-size: 2.5rem;clor:#000000;	max-width: 48rem;color: #B3EBF2;
	font-weight: 600;
	min-height: 2rem;
	display: block;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.typewriter-text .cursor {
	animation: blink 0.7s infinite;
color:#ED30CF;	margin-left: 2px;
}
@keyframes blink {
	0%, 50% {
		opacity: 1;
	}
	51%, 100% {
		opacity: 0;
	}
}
@media (min-width: 768px) {
	.typewriter-text {
		font-size: 1.5rem;
	}
}
@media (min-width: 768px) {
	.hero p {
		font-size: 1.125rem;
	}
}
@media (min-width: 1024px) {
	.hero p {
		font-size: 1.25rem;
	}
}
.hero-mascot {
	margin: 0;
	display: flex;
	justify-content: center;
}
.hero-mascot img {
	object-fit: contain;
	animation: float 3s ease-in-out infinite;
	width: 80px; /* CORRIGIDO: tamanho logo no mobile */
	height: 80px;
}
@media (min-width: 768px) {
	.hero-mascot img {
		width: 120px; /* Maior no tablet */
		height: 120px;
	}
}
@media (min-width: 1024px) {
	.hero-mascot img {
		width: 150px; /* Maior no desktop */
		height: 150px;
	}
}
@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}
.hero-cta {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}
.section-header {
	text-align: center;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.section-header {
		margin-bottom: 4rem;
	}
}
.section-header h2 {
	font-size: 1.875rem;
	color: var(--text);
	margin-bottom: 1rem;
}
@media (min-width: 768px) {
	.section-header h2 {
		font-size: 2.25rem;
	}
}
@media (min-width: 1024px) {
	.section-header h2 {
		font-size: 3rem;
	}
}
.section-header p {
	font-size: 1rem;
	color: var(--text-muted); /* CORRIGIDO: agora usa #333333 */
	max-width: 42rem;
	margin: 0 auto;
}
@media (min-width: 768px) {
	.section-header p {
		font-size: 1.125rem;
	}
}
.services {
	padding: 4rem 0;
	background: var(--bg);
}
@media (min-width: 768px) {
	.services {
		padding: 5rem 0;
	}
}
@media (min-width: 1024px) {
	.services {
		padding: 6rem 0;
	}
}
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}
.service-card {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 1rem;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s;
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px var(--shadow);
}
.service-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}
.service-image {
	width: 100%;
	height: 200px;
	margin-bottom: 1.5rem;
	border-radius: 0.75rem;
	overflow: hidden;
	background: var(--bg-alt);
}
.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s;
}
.service-card:hover .service-image img {
	transform: scale(1.05);
}
.service-card h3 {
	font-size: 1.25rem;
	color: var(--text);
	margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
	.service-card h3 {
		font-size: 1.5rem;
	}
}
.service-card p {
	font-size: 0.875rem;
	color: var(--text-muted); /* CORRIGIDO: agora usa #333333 */
	margin-bottom: 1.5rem;
	line-height: 1.6;
}
@media (min-width: 768px) {
	.service-card p {
		font-size: 1rem;
	}
}
.essence {
	padding: 4rem 0;
	background: var(--bg-alt);
}
@media (min-width: 768px) {
	.essence {
		padding: 5rem 0;
	}
}
@media (min-width: 1024px) {
	.essence {
		padding: 6rem 0;
	}
}
.essence-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
@media (min-width: 768px) {
	.essence-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.essence-card p {
	font-size: 0.875rem;
	color: var(--text-muted); /* CORRIGIDO: agora usa #333333 */
	line-height: 1.7;
}
@media (min-width: 768px) {
	.essence-card {
		padding: 2rem;
	}
}
@media (min-width: 768px) {
	.essence-card p {
		font-size: 1rem;
	}
}
.essence-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(192, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}
.essence-icon svg {
	color: var(--primary);
}
.essence-card:nth-child(2) .essence-icon {
	background: rgba(212, 175, 55, 0.1);
}
.essence-card:nth-child(2) .essence-icon svg {
	color: var(--accent);
}
.essence-card:nth-child(3) .essence-icon {
	background: rgba(74, 26, 74, 0.1);
}
.essence-card:nth-child(3) .essence-icon svg {
	color: var(--purple);
}
.essence-card h3 {
	font-size: 1.25rem;
	color: var(--text);
	margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
	.essence-card h3 {
		font-size: 1.5rem;
	}
}
.values-list p {
	margin-bottom: 0.75rem;
}
.values-list p:last-child {
	margin-bottom: 0;
}
.values-list strong {
	color: var(--text);
}
.contact {
	padding: 4rem 0;
	background: var(--bg);
}
@media (min-width: 768px) {
	.contact {
		padding: 5rem 0;
	}
}
@media (min-width: 1024px) {
	.contact {
		padding: 6rem 0;
	}
}
.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	max-width: 56rem;
	margin: 0 auto 3rem;
}
@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}
.contact-card {
	text-align: center;
}
.contact-icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: rgba(192, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}
.contact-icon svg {
	color: var(--primary);
}
.contact-card:nth-child(2) .contact-icon {
	background: rgba(212, 175, 55, 0.1);
}
.contact-card:nth-child(2) .contact-icon svg {
	color: var(--accent);
}
.contact-card:nth-child(3) .contact-icon {
	background: rgba(74, 26, 74, 0.1);
}
.contact-card:nth-child(3) .contact-icon svg {
	color: var(--purple);
}
.contact-card h3 {
	font-size: 1.125rem;
	color: var(--text);
	margin-bottom: 0.5rem;
}
.contact-card p,
.contact-card a {
	font-size: 0.875rem;
	color: var(--text-muted); /* CORRIGIDO: agora usa #333333 */
	text-decoration: none;
}
.contact-card a:hover {
	color: var(--primary);
	text-decoration: underline;
}
.map-container {
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 4px 16px var(--shadow);
}
.map-container iframe {
	display: block;
}
footer {
	background: var(--purple-dark);
	color: white;
	padding: 3rem 0;
}
@media (min-width: 768px) {
	footer {
		padding: 4rem 0;
	}
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
}
@media (min-width: 1024px) {
	.footer-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.footer-col h3 {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}
.footer-col p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.7;
}
.footer-col ul {
	list-style: none;
}
.footer-col ul li {
	margin-bottom: 0.5rem;
}
.footer-col a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.875rem;
	transition: color 0.2s;
}
.footer-col a:hover {
	color: white;
}
.social-links {
	display: flex;
	gap: 1rem;
}
.social-links a {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.social-links a:hover {
	background: rgba(255, 255, 255, 0.2);
}
.footer-bottom {
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}
.footer-bottom p {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 0.5rem;
}
.footer-bottom p:last-child {
	margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
	*,*::before,*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
/* SECTION BACKGROUND */
#calc-ps-wrapper {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(90deg, #4a1a4a, #9a0000, #c00000);
    display: flex;
    justify-content: center;
}

/* CARD BRANCO */
#calc-ps-wrapper .calc-ps-card {
    width: 100%;
    max-width: 760px;
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
    animation: fadePS 0.6s ease-out;
}

@keyframes fadePS {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* TÍTULO */
#calc-ps-wrapper .calc-ps-card h1 {
    font-size: 34px;
    text-align: center;
    font-weight: 900;
    color: #4a1a4a;
    margin-bottom: 10px;
}

#calc-ps-wrapper .calc-ps-card p {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

/* ÍCONES + TÍTULOS */
#calc-ps-wrapper .ps-title {
    margin: 25px 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #4a1a4a;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* GRID */
#calc-ps-wrapper .ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 700px) {
    #calc-ps-wrapper .ps-grid {
        grid-template-columns: 1fr;
    }
}

/* INPUTS */
#calc-ps-wrapper input,
#calc-ps-wrapper select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    border: 2px solid #b39ddb;
    transition: 0.2s;
}

#calc-ps-wrapper input:focus,
#calc-ps-wrapper select:focus {
    border-color: #6a1b9a;
    box-shadow: 0 0 8px rgba(106,27,154,0.3);
    outline: none;
}

/* CHECKBOX */
#calc-ps-wrapper .check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

#calc-ps-wrapper .check label {
    font-size: 15px;
}

/* BOTÃO */
#calc-ps-wrapper button {
    width: 100%;
    padding: 16px;
    background: #4a1a4a;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.25s;
}

#calc-ps-wrapper button:hover {
    background: #9a0000;
    transform: scale(1.03);
}

/* RESULTADO */
#calc-ps-wrapper #resultado {
    text-align: center;
    margin-top: 40px;
}

#calc-ps-wrapper .preco-final {
    font-size: 32px;
    font-weight: 900;
    color: #9a0000;
}

#calc-ps-wrapper .preco-unitario {
    font-size: 20px;
    margin-top: 5px;
}
/* ================================
   CORREÇÃO GERAL PARA CALCULADORA
   ================================ */

#calculadora-ps-section {
    margin-top: 60px !important;
}

/* Força centralização */
.calc-container {
    margin: 0 auto !important;
    max-width: 680px !important;
}

/* Remove estilos globais do header */
#calculadora-ps-section h1,
#calculadora-ps-section p,
#calculadora-ps-section label {
    all: unset;
    font-family: 'Inter', sans-serif;
    display: block;
}

#calculadora-ps-section h1 {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #4a1a4a !important;
    text-align: center !important;
    margin-bottom: 5px !important;
}

#calculadora-ps-section p {
    font-size: 15px !important;
    color: #555 !important;
    text-align: center !important;
    margin-bottom: 25px !important;
}

/* Inputs */
#calculadora-ps-section input,
#calculadora-ps-section select {
    border: 2px solid #b39ddb !important;
    background: #fff !important;
    border-radius: 10px !important;
    padding: 12px !important;
    width: 100% !important;
    font-size: 15px !important;
    color: #333 !important;
}

/* Label para inputs */
#calculadora-ps-section label {
    margin-top: 10px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #4a1a4a !important;
}

/* SEÇÃO TÍTULO */
.section-title {
    margin: 25px 0 10px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    color: #4a1a4a !important;
    display: flex !important;
    align-items: center;
    gap: 8px;
}

/* GRID de 2 colunas */
.grid-2 {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

@media(max-width: 720px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }
}

/* ACABAMENTOS */
.acabamentos-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px 25px !important;
    margin-top: 15px !important;
}

.checkbox-group {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.checkbox-group label {
    all: unset !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    color: #333 !important;
    cursor: pointer;
}

@media(max-width: 720px) {
    .acabamentos-grid {
        grid-template-columns: 1fr !important;
    }
}

/* BOTÃO */
#calculadora-ps-section button {
    width: 100% !important;
    padding: 15px !important;
    margin-top: 25px !important;
    background: #4a1a4a !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: bold !important;
    border: none !important;
    cursor: pointer;
    transition: 0.2s;
}

#calculadora-ps-section button:hover {
    background: #9a0000 !important;
    transform: scale(1.03);
}

/* RESULTADOS */
#resultado .preco-final {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #9a0000 !important;
}

#resultado .preco-unitario {
    font-size: 18px !important;
    margin-top: 8px !important;
}
#calculadora-ps-section {
    width: 100%;
    padding: 60px 0;
    background: linear-gradient(90deg, #4a1a4a, #9a0000, #c00000);
    display: flex;
    justify-content: center;
}

.calc-container {
    width: 100%;
    max-width: 760px;
    background: #fff;
    padding: 45px;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    animation: fadePS 0.6s ease-out;
}

@keyframes fadePS {
    from {opacity: 0; transform: translateY(20px);}
    to   {opacity: 1; transform: translateY(0);}
}

.calc-container h1 {
    font-size: 34px;
    text-align: center;
    font-weight: 900;
    color: #4a1a4a;
    margin-bottom: 10px;
}

.calc-container p {
    text-align: center;
    font-size: 15px;
    color: #555;
    margin-bottom: 30px;
}

.section-title {
    margin: 25px 0 10px;
    font-size: 18px;
    font-weight: 800;
    color: #4a1a4a;
    display: flex;
    align-items: center;
    gap: 8px;
}

input, select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-size: 15px;
    border: 2px solid #b39ddb;
    transition: 0.2s;
}

input:focus, select:focus {
    border-color: #6a1b9a;
    box-shadow: 0 0 8px rgba(106,27,154,0.3);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

button {
    width: 100%;
    padding: 16px;
    background: #4a1a4a;
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.25s;
}

button:hover {
    background: #9a0000;
    transform: scale(1.03);
}

#resultado {
    text-align: center;
    margin-top: 30px;
}

.preco-final {
    font-size: 32px;
    font-weight: 900;
    color: #9a0000;
}

.preco-unitario {
    font-size: 20px;
    margin-top: 5px;
}
