
html {
	scroll-behavior: smooth; /* Ativa a rolagem suave */
}

section {
	scroll-snap-align: start; /* Para um efeito de snap */
	scroll-behavior: smooth;
}

.gradient-overlay {
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.feature-list ul {
	list-style-type: none;
	padding: 0;
	margin-top: 1rem;
}

.feature-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
}

.feature-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #13a4ec;
	font-weight: bold;
}

.feature-list b {
	color: #111827;
}

.dark .feature-list b {
	color: #f3f4f6;
}

#cadastroForm, #contatoForm {
	max-width: 600px;
	margin: 5px auto;
	margin-top: 30px;
	background: #fff;
	padding: 20px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	border-radius: 15px;
}

#cadastro, #demonstracao {
    scroll-margin-top: 4rem; /* Adjust this value (e.g., 5rem) to be slightly more than the height of your fixed header (which is around 4rem, given the py-4 class on the header container) */
}


.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	color: #00549D;
}

.form-group .input-ddi {
	width: 50px;
}

.form-group #numero, #estado {
	width: 100px;
}


.form-group input, .form-group textarea, .form-group select {
	width: 100%;
	padding: 8px;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 15px;
}

.button-container {
	display: flex;
	justify-content: left;
}

.tituloForm {
	display: flex;
	justify-content: center;
}

.button-container button {
	font-size: 16px;
	width: 150px;
	padding: 7px 0;
	border-radius: 15px;
	border: 1px solid #808080;
	color: #808080;
	background-color: #eaeaea;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.button-container button:hover {
	border: 1px solid #00549D;
}

/* Modal styles */
.modal-contrato {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}

.modal-content-contrato {
	background-color: #fff;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 95%;
	max-width: 1000px;
	border-radius: 10px;
	text-align: left;
	max-height: calc(100vh - 50px);
	overflow-y: auto;
}

.modal-content {
	background-color: #fff;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	height: 200px;
	max-width: 600px;
	border-radius: 10px;
	text-align: center;
}

.confirm, .cancel {
	border: 1px solid #808080;
	color: #808080;
	float: center;
	margin-left: 10px;
	cursor: pointer;
	padding: 10px;
	border-radius: 15px;
	font-size: 16px;
	font-weight: normal;
}

.closeContrato, .close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	margin-left: 10px;
	cursor: pointer;
}

.closeContrato:hover, .close:hover, .close:focus, .confirm:hover,
	.confirm:focus, .cancel:hover, .cancel:focus {
	color: black;
	text-decoration: none;
}


.success {
	color: #28a745;
}

.error {
	color: #dc3545;
}

.input-ddi::-webkit-outer-spin-button,
.input-ddi::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.form-mesmalinha {
	display: flex;
}

#termo {
	display: none;
}

/* NOVO: Estilo para o grupo de radio buttons inline */
.radio-options-inline {
    display: flex; /* Coloca os filhos (input e span) na mesma linha */
    align-items: center; /* Alinha verticalmente */
    margin-top: 5px; /* Pequeno espaçamento do label superior */
    justify-content: center;
}

.radio-options-left {
	justify-content: flex-start;
}

/* Garante que o input radio não ocupe 100% da largura, mas apenas o necessário */
.radio-options-inline input[type="radio"] {
    width: auto !important; 
    margin: 0;
    margin-right: 5px; /* Espaçamento entre o radio e o texto */
}

/* Ajusta o texto da opção de rádio */
.radio-options-inline span {
    display: inline-block;
    color: #333; /* Cor mais escura para o texto da opção, se necessário */
    font-weight: normal;
    margin-right: 20px; /* Espaçamento após o texto da opção */
}

.modal-contato-site {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.5);
}


.modal-content-contato-site {
	background-color: #fff;
	margin: 15% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	height: 200px;
	max-width: 600px;
	border-radius: 10px;
	text-align: center;
}
.confirm-contato-site, .cancel-contato-site {
	border: 1px solid #808080;
	color: #808080;
	float: center;
	margin-left: 10px;
	cursor: pointer;
	padding: 10px;
	border-radius: 15px;
	font-size: 16px;
	font-weight: normal;
}

.close-contato-site {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
	margin-left: 10px;
	cursor: pointer;
}