@charset "utf-8";
/* CSS Document */

div {font-family: Montserrat,'Roboto', cursive;}
label {font-family: Montserrat,'Roboto', cursive;}
p {font-family: Montserrat,'Roboto', cursive;}
h1 {font-family: Montserrat,'Roboto', cursive;}

h3 {font-family: Montserrat,'Roboto', cursive;}
h4 {font-family: Montserrat,'Roboto', cursive;}
h5 {font-family: Montserrat,'Roboto', cursive;}

/* Css CheckBox */

/* The container */
.container-b {
	color:#727272;
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 18px;
	line-height: 30px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default checkbox */
.container-b input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark-b {
  position: absolute;
  top: 1px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 4px;
}

/* On mouse-over, add a grey background color */
.container-b:hover input ~ .checkmark-b {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container-b input:checked ~ .checkmark-b {
  background-color: #67A81F;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark-b:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container-b input:checked ~ .checkmark-b:after {
  display: block;
}

/* Style the checkmark/indicator */
.container-b .checkmark-b:after {
  left: 9px;
  top: 4px;
  width: 4px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(50deg);
  -ms-transform: rotate(50deg);
  transform: rotate(50deg);
}

/* Css CheckBox - fim*/

/* Código Postal*/
 .postal-code-container {
            display: flex;
            justify-content: center;
            font-family: 'Segoe UI', Arial, sans-serif;
			
            margin: 30px 0 45px 0;
        }

        .postal-code-input {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .postal-code1 {
            width: 100px;
            font-size: 22px;
			line-height: 38px;
            border: 2px solid #ddd;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
            outline: none;
			letter-spacing: 4px;
			color: #505050;
        }

        .postal-code1:focus {
			outline:none;
			border: 1px solid #6BA918; 
			box-shadow: 0px 0px 3px #6BA918;
			-moz-box-shadow: 0px 0px 4px #6BA918;
			-webkit-box-shadow: 0px 0px 4px #6BA918;
        }
		
        .postal-code2 {
            width: 70px;
            font-size: 22px;
			line-height: 38px;
            border: 2px solid #ddd;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s;
            outline: none;
			letter-spacing: 4px;
			color: #505050;
        }

		.postal-code1:focus,
		.postal-code2:focus {
		  outline: none;
		  border: 2px solid #6BA918;
		  box-shadow: 0 0 4px #6BA918;
		}
		
		.postal-code1::placeholder, 
		.postal-code2::placeholder{
			color: #B6B6B6; 
			opacity: 1;
		}
		
        .postal-code-input .separator {
            font-size: 22px;
            color: #ccc;
        }
/* Codigo postal- fim*/

.an-nivel-dist {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	gap: 20px; 
	padding: 20px 0;
  }

.an-modal-btn {
    padding: 12px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px;
    transition: all 0.3s ease;
  }

.an-titulo-modal {
	color: #050505;
	font-size: 22px;
	font-weight: 500;
	text-align: center;
}

  .an-modal-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }

  .an-modal {
	display: none;
    position: fixed;
    z-index: 100;  
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: an-bgFadeIn 0.5s forwards;
    background-color: rgba(0, 0, 0, 0.4);
  }

  @keyframes an-bgFadeIn {
    from { background-color: rgba(0, 0, 0, 0); }
    to { background-color: rgba(0, 0, 0, 0.4); }
  }

  .an-modal-content {
    position: relative;
    background: #fefefe;
    margin: 15vh auto;
    padding: 25px;
    width: 80%;
    max-width: 420px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    animation: an-contentFadeIn 0.5s 0.1s forwards;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: auto;
  }

  @keyframes an-contentFadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .an-modal .an-titulo-modal {
	margin-top: 0;
	color: #2c3e50;
	border-bottom: 1px solid #DCDCDC;
	padding-bottom: 10px;
  }

  .an-modal p {
    line-height: 1.6;
    color: #555;
  }

  .an-modal-close-btn {
    all: unset; 
	text-align: center;
	width: 170px;
	line-height: 36px;
    display: block;
    margin: 18px auto 10px auto;
    font-size: 16px;
	font-weight: 500;
    background: #67A81F;	
    color: white;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .an-modal-close-btn:hover {
    background-color: #FA6B4B;}

  @media (max-width: 600px) {
    .an-modal-content {
      margin: 10vh auto;
      padding: 25px;
    }
  }
