:root {
	--primary-dark: #1a365d;
	--primary-medium: #2c5282;
	--primary-light: #4299e1;
	--section-bg: #c6d9e9;
	--gradient: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 50%, var(--primary-light) 100%);
	--white: #ffffff;
	--light-gray: #f8f9fa;
	--dark-gray: #343a40;
	--transition: all 0.3s ease;
	--header-height: 80px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body {
	background-color: var(--light-gray);
	color: var(--dark-gray);
	line-height: 1.6;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
header {
	height: var(--header-height);
	background: linear-gradient(90deg,
			var(--primary-dark) 0%,
			rgba(42, 82, 130, 0.9) 50%,
			var(--primary-dark) 100%);
	box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
}

header:hover {
	background: var(--primary-dark) !important;
}

header::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,
			rgba(255, 255, 255, 0.1) 0%,
			rgba(255, 255, 255, 0.05) 50%,
			rgba(255, 255, 255, 0.1) 100%);
	pointer-events: none;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	position: relative;
}

.logo img {
	padding-top: 10px;
	padding-left: 20px;
	height: 70px;
	width: auto;
	max-width: 240px;
	transition: var(--transition);
}

.logo img:hover {
	opacity: 0.9;
}

/* Navigation */
nav {
	display: block;
}

.nav-links {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-links li {
	margin: 0 15px;
}

.nav-links a {
	color: var(--white);
	font-weight: 500;
	text-decoration: none;
	padding: 5px 0;
	position: relative;
	transition: var(--transition);
}

.nav-links a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary-light);
	transition: var(--transition);
}

.nav-links a:hover::after {
	width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	padding: 10px;
	z-index: 1002;
}

/* Mobile Overlay */
.mobile-overlay {
	display: none;
	position: fixed;
	top: var(--header-height);
	left: 0;
	width: 100%;
	height: calc(100vh - var(--header-height));
	background: rgba(0, 0, 0, 0.5);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.mobile-overlay.active {
	display: block;
	opacity: 1;
}

/* Hero Section */
.hero {
	padding: 90px 0 80px;
	background: var(--gradient);
	color: var(--white);
	position: relative;
	overflow: hidden;
	max-height: 380px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
	opacity: 0.2;
}

.hero-content {
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-text {
	flex: 1;
	padding-right: 40px;
}

.hero-image {
	flex: 1;
	text-align: right;
}

.hero-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-text .cta-button {
	pointer-events: auto;
	cursor: pointer;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	font-weight: 700;
}

.subtitle {
	font-size: 1.2rem;
	margin-bottom: 30px;
	opacity: 0.9;
}

.cta-button {
	position: relative;
	cursor: pointer;
	z-index: 15;
	/* Garante que o botão esteja acima de outros elementos */

	display: inline-block;
	background: var(--white);
	color: var(--primary-dark);
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	pointer-events: auto !important;
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Page Navigation */
.page-nav {
	position: sticky;
	top: 80px;
	height: 180px;
	overflow: hidden;
	z-index: 100;
	background: var(--white);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

	/* position: sticky;
    top: 80px;
    height: 180px;
    overflow: hidden;
    z-index: 100;
    background: var(--white);

	padding: 0;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
}

.banner-carousel {
	position: relative;
	height: 100%;
}

.banner-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s ease;
	background-size: cover;
	background-position: center;
	pointer-events: none;

	/* position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    background-size: cover;
    background-position: center;
    display: flex;
    pointer-events: none; */
}

* Ajuste para o container do banner */ .banner-slide .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* Centraliza verticalmente */
	align-items: flex-start;
	/* Alinha à esquerda */
	padding-left: 40px;
	/* Espaçamento da esquerda */
	max-width: 1200px;
	margin: 0 auto;
	position: relative;

	/* height: 100%;
    display: flex;
    justify-content: flex-start; 
    padding-left: 20px; Adiciona padding à esquerda*/
}

.banner-slide.active {
	opacity: 1;
	z-index: 1;
}

.banner-slide:nth-child(1) {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
}

.banner-slide:nth-child(2) {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
}

.banner-slide:nth-child(3) {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
}

/* .banner-slide::before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
} */

/* Remove qualquer sobreposição acidental */
.banner-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	/* Mantém o fundo atrás do conteúdo */
	pointer-events: none;
	/* Permite cliques nos elementos acima */
}

.banner-content {
	position: relative;
	z-index: 2;
	color: white;
	max-width: 700px;
	text-align: left;
	/* Garante alinhamento à esquerda */
	pointer-events: auto;

	/* position: relative;
    z-index: 2;
    color: white;
    max-width: 600px;
    padding: 20px;
    pointer-events: auto;
    margin-left: 20px; 
    text-align: left; 
    top: 50%;
    transform: translateY(-50%); */
}

.banner-content h2 {
	font-size: 1.5rem;
	margin-top: 10px;
	margin-bottom: 10px;
	font-weight: 700;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
	text-align: left;

	/* font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
	text-align: left; Garante alinhamento à esquerda */
}

.banner-content p {
	font-size: 1.1rem;
	margin-bottom: 10px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
	text-align: left;

	/* font-size: 1.1rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
	text-align: left;  */
}

.carousel-controls {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
	z-index: 10;
}

.carousel-prev,
.carousel-next {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 20;
	/* Garante que os botões ficarão acima dos slides */
	pointer-events: all;
	/* Garante que os botões são clicáveis */
	background: rgba(255, 255, 255, 0.3);
	border: none;
	color: white;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-prev:hover,
.carousel-next:hover {
	background: var(--primary-light);
	transform: scale(1.1);
}

.carousel-dots {
	display: flex;
	gap: 8px;
	background: rgba(0, 0, 0, 0.3);
	padding: 6px 10px;
	border-radius: 20px;
}

.carousel-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
	transition: all 0.3s ease;
}

.carousel-dot.active {
	background: var(--primary-light);
	transform: scale(1.2);
}

/* Sections */
.section {
	position: relative;
	overflow: hidden;
	padding: 80px 0;
	background-color: var(--section-bg);
	scroll-margin-top: 100px;
}

.section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.05;
	z-index: -1;
	background-repeat: repeat;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	color: var(--primary-dark);
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--primary-light);
}

/* Services Grid */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(2px);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: var(--transition);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	background: var(--gradient);
	color: var(--white);
	padding: 25px;
	text-align: center;
	font-size: 2rem;
}

.service-content {
	padding: 25px;
}

.service-content h3 {
	color: var(--primary-dark);
	margin-bottom: 15px;
}

/* Diferenciais Section */
.diferenciais {
	background: var(--gradient);
	color: var(--white);
}

.diferenciais .section-title {
	color: var(--white);
}

.diferenciais .section-title::after {
	background: var(--white);
}

.diferenciais-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.diferencial-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	padding: 30px;
	border-radius: 8px;
	text-align: center;
	transition: var(--transition);
}

.diferencial-card:hover {
	transform: scale(1.05);
	background: rgba(255, 255, 255, 0.15);
}

.diferencial-card i {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--white);
}

/* Footer */
footer {
	background: var(--primary-dark);
	color: var(--white);
	padding: 50px 0 20px;
	text-align: center;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
	margin-bottom: 30px;
	padding: 0 20px;
}

.footer-column h3 {
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--primary-light);
}

.contact-info {
	list-style: none;
}

.contact-info li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
}

.contact-info i {
	margin-right: 10px;
	color: var(--primary-light);
}

.social-links {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin: 0 10px;
	color: var(--white);
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary-light);
	transform: translateY(-3px);
}

.copyright {
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	opacity: 0.8;
}

.footer-logo {
	height: 60px;
	margin-bottom: 15px;
	filter: brightness(0) invert(1);
}

/***************************************************/
* Modal Styles */

/* Garantir que nada sobreponha o modal */
body.modal-open {
	overflow: hidden;
	height: 100vh;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	/* Valor extremamente alto */
	overflow-y: auto;
	/* Permite scroll se necessário */

	align-items: center;
	justify-content: center;
	animation: fadeIn 0.3s ease;
}

.modal-content {
	position: relative;
	margin: 2% auto;
	/* Centraliza verticalmente */
	max-height: 90vh;
	overflow-y: auto;

	background-color: white;
	width: 90%;
	max-width: 600px;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
	transform: translateY(20px);
	opacity: 0;
	animation: slideUp 0.4s ease forwards;
}

.modal-header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: linear-gradient(135deg, #2c3e50, #4a6491);
	padding: 20px 30px;

	color: white;
	text-align: center;
}

.modal-header .modal-logo {
	height: 50px;
	margin-bottom: 15px;
}

.modal-header h2 {
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.modal-header p {
	opacity: 0.9;
	font-size: 1rem;
}

.modal-body {
	padding: 20px 30px;
	max-height: 60vh;
	overflow-y: auto;
}

.modal-body::-webkit-scrollbar {
	width: 8px;
}

.modal-body::-webkit-scrollbar-thumb {
	background: #2c3e50;
	border-radius: 4px;
}

.close-modal {
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 24px;
	color: white;
	cursor: pointer;
	transition: all 0.3s ease;
	background: rgba(255, 255, 255, 0.1);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.close-modal:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

/* Form Styles */
.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #2c3e50;
	font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background-color: #f0f8ff;
	/* Azul claro suave para todos os campos */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	border-color: #3498db;
	outline: none;
	box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
	background-color: white;
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

/* .radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
} */

/* Container principal */
.phone-container {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

/* Campo de telefone */
.phone-input {
	flex: 1;
	min-width: 180px;
	max-width: 200px;
	/* Largura máxima para o formato */
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 6px;
	background-color: #f0f8ff;
}

/* Container do WhatsApp */
.whatsapp-container {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-left: 10px;
	flex-shrink: 0;
}

/* Ícone do WhatsApp */
.whatsapp-container i {
	color: #25D366;
	font-size: 24px;
}

/* Checkbox personalizado */
.whatsapp-container label {
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	white-space: nowrap;
}

.whatsapp-container input[type="checkbox"] {
	/* margin-top: 5px; */
	width: 16px;
	height: 16px;
	cursor: pointer;
}

.whatsapp-container label {
	margin-top: 10px;
}

/* .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-weight: normal;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
} */

/* Botões no Rodapé */
.form-footer {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin-top: 30px;
}

.cancel-button {
	background: #e74c3c;
	color: white;
	padding: 12px 25px;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-button {
	background: #2ecc71;
	/* Verde de sucesso */
	color: white;
	padding: 12px 25px;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-button {
	font-weight: 600;
	font-size: 1rem;
	box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
	position: relative;
	overflow: hidden;
	min-width: 180px;
}

.submit-button:hover {
	background: #022b13;
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.submit-button:disabled {
	background: #95a5a6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.button-text {
	position: relative;
	z-index: 1;
}

.loading-spinner {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 20px;
	border: 3px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	border-top-color: white;
	animation: spin 1s ease-in-out infinite;
}

/* Confirmation Modal */
.confirmation-modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 1000;
	align-items: center;
	justify-content: center;
}

.confirmation-content {
	background-color: white;
	width: 90%;
	max-width: 500px;
	border-radius: 10px;
	overflow: hidden;
	text-align: center;
	padding: 30px;
	animation: fadeInUp 0.4s ease;
}

.confirmation-header {
	margin-bottom: 20px;
}

.confirmation-header i {
	font-size: 60px;
	color: #2ecc71;
	margin-bottom: 15px;
}

.confirmation-header h2 {
	color: #2c3e50;
	font-size: 1.8rem;
}

.confirmation-body {
	margin-bottom: 25px;
}

.confirmation-body p {
	margin-bottom: 10px;
	color: #7f8c8d;
}

.confirmation-button {
	background: #3498db;
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}

.confirmation-button:hover {
	background: #2980b9;
	transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes fadeInUp {
	from {
		transform: translateY(20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes spin {
	to {
		transform: translate(-50%, -50%) rotate(360deg);
	}
}

/***************************************************/

@media (max-width: 992px) {
	.hero-content {
		flex-direction: column;
	}

	.hero-text {
		padding-right: 0;
		margin-bottom: 40px;
		text-align: center;
	}

	.hero-image {
		text-align: center;
	}

	h1 {
		font-size: 2rem;
	}

	.nav-links {
		flex-wrap: wrap;
	}

	.nav-links li {
		margin: 5px 10px;
	}
}

@media (max-width: 768px) {
	.hero {
	 	padding: 80px 0 60px;
		min-height: 430px; 
	}

	.section {
		padding: 60px 0;
	}

	.service-card {
		max-width: 350px;
		margin: 0 auto;
	}

	/* Menu Mobile */
	.mobile-menu-toggle {
		display: block;
	}

	nav {
		order: 3;
		width: 100%;
		flex: 0 0 100%;
	}

	.nav-links {
		display: none;
		flex-direction: column;
		position: fixed;
		top: var(--header-height);
		right: 0;
		width: 70%;
		max-width: 300px;
		height: calc(100vh - var(--header-height));
		background: var(--primary-dark);
		padding: 20px;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
		z-index: 1001;
		transform: translateX(100%);
		transition: transform 0.3s ease;
	}

	.nav-links.active {
		display: flex;
		transform: translateX(0);
	}

	.nav-links li {
		margin: 15px 0;
		text-align: right;
	}

	.nav-links a {
		padding: 10px 0;
		font-size: 1.1rem;
	}

	.nav-links a::after {
		display: none;
	}

	.service-card {
		backdrop-filter: none;
		background: var(--white);
	}

	.hero-text .cta-button {
		padding-top: 5px;
		margin-top: 0;
		/* Ajuste conforme necessário */
		margin-bottom: 60px;
		/* Ajuste conforme necessário */
	}

	.carousel-controls {
		bottom: 15px;
		right: 15px;
	}

	.carousel-dots {
		display: none;
	}

	.modal-content {
		width: 95%;
	}

	.radio-group {
		flex-direction: column;
		gap: 10px;
	}

	.modal-header {
		padding: 20px;
	}

	.modal-body {
		padding: 20px;
	}

	.page-nav {
		height: 240px;
		padding: 0;
	}

	/* .banner-slide {
		padding: 15px;
	} */

	.banner-content h2 {
		font-size: 1.4rem;
		line-height: 1.1;
		margin-bottom: 10px;
	}

	.banner-content p {
		font-size: 1rem;
		margin-bottom: 15px;
	}

	/* Ajuste dos botões CTA */
	.cta-button {
		padding: 10px 20px;
		font-size: 0.9rem;
		margin: 10px 0;
	}

	/* Garante que os botões não fiquem truncados */
	/* .banner-content,
	.hero-text {
		display: flex;
		flex-direction: column;
		justify-content: center;
		min-height: calc(100vh - 150px);  
	} */
}

@media screen and (max-height: 700px) {
  .hero-text, .banner-content {
    padding-bottom: 30px;
  }
  
  .hero-text h1 {
    font-size: 1.6rem !important;
  }
}

@media (max-width: 480px) {
	.phone-container {
		flex-direction: column;
		align-items: flex-start;
		flex-wrap: wrap;
		/* Permite quebra em telas muito pequenas */
	}

	.phone-input {
		flex: 1 1 100%;
		/* Ocupa toda a largura */
		margin-bottom: 10px;
	}

	.whatsapp-container {
		margin-left: 0;
		margin-top: 8px;
	}

	.page-nav {
		height: 220px;
	}
}

/* @supports (padding: max(0px)) {
  .hero, .page-nav {
    padding-left: max(15px, env(safe-area-inset-left));
    padding-right: max(15px, env(safe-area-inset-right));
  }
  
  .hero-content, .banner-content {
    padding-bottom: max(20px, env(safe-area-inset-bottom));
  }
} */