#styled_internal {
	/* Definição das variáveis */
	/* Fim - Definição das variáveis */
	/* Definição do estilo global */
	/* RESET CSS */
	/* Fim - Definição do estilo global */
	/* Inicio Header */
	/* barrinhas do menu */
	/* Inicio Footer */
	/* RESPONSIVIDADE */
    --primary-color: #2ABCAF;
    --secondary-color: #F1A085;
    --tertiary-color: #EFEFEF;
    --text-color: #252525;
    --text-color-contrast: #ffffff;
    --color-heavy: #000000;
    --color-dark: #252525;
    --color-medium: #51A29C;
    --color-light: #EFEFEF;
    --color-thing: #ffffff;
    --font-family: 'Montserrat', sans-serif, Tahoma;
    --font-size-base: 16px;
    --font-size-12px: 12px;
    --font-size-16px: 16px;
    --font-size-18px: 18px;
    --font-size-20px: 20px;
    --font-size-24px: 24px;
    --font-size-28px: 28px;
    --font-size-32px: 32px;
    --font-size-64px: 64px;
    font-family: 'Montserrat';
}
 #styled_internal * {
	 margin: 0;
	 padding: 0;
	 outline: none;
	 border: none;
	 text-decoration: none;
}
 #styled_internal html {
	 scroll-behavior: smooth;
}
 #styled_internal body {
	 font-family: var(--font-family);
	 font-size: var(--font-size-20px);
	 color: var(--text-color);
	 background-color: #fff;
}
 #styled_internal main {
	 max-width: 1920px;
	 background-color: #fff;
	 width: 100%;
	 margin: auto;
}
 #styled_internal h1 {
	 font-size: clamp(1.5rem, 4vw, 3rem);
	 font-weight: 400;
}
 #styled_internal h2 {
	 font-size: var(--font-size-32px);
	 font-weight: 700;
	 color: var(--primary-color);
}
 #styled_internal h3 {
	 font-size: var(--font-size-24px);
}
 #styled_internal p {
	 font-size: var(--font-size-20px);
	 line-height: 1.5;
}
 #styled_internal li {
	 font-size: var(--font-size-20px);
	 line-height: 1.5;
}
 #styled_internal hr {
	 border: none;
	 height: 6px;
	 background-color: #c2c2c2;
	 width: 100%;
}
 #styled_internal button {
	 cursor: pointer;
}
 #styled_internal ul {
	 list-style: none;
	 padding: 0;
	 margin: 0;
}
 #styled_internal .bullets li::before {
	 content: "•";
	 font-size: 1rem;
	 color: #000;
	 margin-right: 0.3em;
}
 #styled_internal .button {
	 background-color: var(--secondary-color);
	 padding: 0.5rem 1rem;
	 border-radius: 50px;
	 font-size: var(--font-size-24px);
	 font-weight: 700;
	 color: #fff;
}
 #styled_internal .video-container-wrapper {
	 width: 95%;
	 max-width: 1000px;
}
 #styled_internal .video-container {
	 position: relative;
	 padding-bottom: 56.25%;
	 width: 100%;
	 overflow: hidden;
	 background-color: #000;
	 border-radius: 15px;
}
 #styled_internal .video-container iframe {
	 position: absolute;
	 top: 0;
	 left: 0;
	 width: 100%;
	 height: 100%;
	 border: none;
	 border-radius: 15px;
}
 #styled_internal .image-wrapper {
	 width: 100%;
}
 #styled_internal .image-wrapper img {
	 width: 100%;
}
 #styled_internal .nowrap {
	 white-space: nowrap;
}
 #styled_internal .header {
	 background-color: var(--primary-color);
	 width: 100%;
}
 #styled_internal .container {
	 max-width: 1920px;
	 margin: 0 auto;
	 padding: 20px;
}
 #styled_internal .nav {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 color: var(--text-color-contrast);
	 font-weight: 700;
	 gap: 1.5rem;
	 width: 100%;
}
 #styled_internal .logo {
	 max-height: 80px;
	 justify-self: flex-start;
}
 #styled_internal .nav-list {
	 display: flex;
	 gap: 20px;
	 list-style: none;
	 margin: 0;
	 padding: 0;
	 font-size: var(--font-size-16px);
}
 #styled_internal .nav-list li a {
	 color: var(--text-color-contrast);
	 text-decoration: none;
	 font-weight: bold;
	 font-size: var(--font-size-16px);
	 white-space: nowrap;
}
 #styled_internal .nav-list li a:hover {
	 text-decoration: underline;
}
 #styled_internal .contact-info {
	 display: flex;
	 align-items: center;
	 color: #fff;
	 font-weight: 400;
	 font-size: var(--font-size-18px);
}
 #styled_internal .contact-info .phone-icon::before {
	 content: '';
	 display: inline-block;
	 width: 20px;
	 height: 20px;
	 background-image: url('/assets/images/icon-phone.png');
	 background-size: contain;
	 background-repeat: no-repeat;
	 margin-right: 5px;
}
 #styled_internal .contact-info-desktop {
	 position: absolute;
	 top: 1rem;
	 right: 2.5rem;
}
 #styled_internal .hamburguer {
	 display: none;
	 cursor: pointer;
	 width: 30px;
	 height: 30px;
	 position: relative;
	 background-color: transparent;
}
 #styled_internal .hamburguer span {
	 display: block;
	 width: 100%;
	 height: 4px;
	 background-color: #fff;
	 margin: 6px 0;
	 transition: 0.4s;
}
 #styled_internal .footer {
	 background-color: #60bcb3;
	 color: #fff;
	 max-width: 1920px;
	 width: 100%;
	 margin: auto;
}
 #styled_internal .footer .clock {
	 max-width: 400px;
}
 #styled_internal .footer-content {
	 display: flex;
	 justify-content: space-around;
	 align-items: center;
	 gap: 2rem;
	 padding: 2rem 1rem;
}
 #styled_internal .footer-info {
	 display: flex;
	 flex-direction: column;
}
 #styled_internal .footer-info p {
	 margin: 5px 0;
	 display: flex;
	 align-items: center;
}
 #styled_internal .whatsapp-icon::before {
	 content: '';
	 display: inline-block;
	 margin-right: 10px;
	 width: 24px;
	 height: 24px;
	 background-size: contain;
	 background-image: url('/assets/images/icon-whatsapp.png');
}
 #styled_internal .clock-icon::before {
	 content: '';
	 display: inline-block;
	 margin-right: 10px;
	 width: 24px;
	 height: 24px;
	 background-size: contain;
	 background-image: url('/assets/images/icon-clock.png');
}
 #styled_internal .footer-links ul {
	 list-style-type: none;
	 padding: 0;
}
 #styled_internal .footer-links ul li {
	 margin-bottom: 5px;
}
 #styled_internal .footer-links ul li a {
	 color: #fff;
	 text-decoration: none;
}
 #styled_internal .footer-links ul li a:hover {
	 text-decoration: underline;
}
 #styled_internal .footer-bottom {
	 background-color: #51a29c;
	 text-align: center;
	 padding: 30px 0;
}
 #styled_internal .footer-bottom p {
	 margin: 0;
	 font-size: 14px;
}
 #styled_internal .whatsapp-button {
	 position: fixed;
	 bottom: 20px;
	 left: 20px;
	 z-index: 100;
	 width: 60px;
	 height: 60px;
	 opacity: 0.9;
	 transition: opacity 0.3s ease-in-out;
	 transition: opacity 0.3s ease, visibility 0.3s ease;
}
 #styled_internal .whatsapp-button img {
	 width: 100%;
	 height: 100%;
	 object-fit: contain;
	 opacity: 0.9;
}
 #styled_internal .whatsapp-button:hover {
	 opacity: 1;
}
 #styled_internal .scroll-top-button {
	 position: fixed;
	 bottom: 20px;
	 right: 20px;
	 z-index: 100;
	 width: 60px;
	 height: 60px;
	 opacity: 0.9;
	 transition: opacity 0.3s ease-in-out;
	 transition: opacity 0.3s ease, visibility 0.3s ease;
}
 #styled_internal .scroll-top-button img {
	 width: 110%;
	 height: 103%;
	 object-fit: contain;
	 opacity: 0.9;
}
 #styled_internal .scroll-top-button:hover {
	 opacity: 1;
}
 #styled_internal .hidden {
	 display: none;
	 opacity: 0;
	 visibility: hidden;
}
 @media all and (max-width: 1024px) {
	 #styled_internal .nav {
		 justify-content: space-between;
	}
	 #styled_internal .nav-list {
		 display: none;
		 flex-direction: column;
		 align-items: flex-end;
		 position: absolute;
		 top: 110px;
		 right: 0;
		 background-color: #3dc9b3;
		 width: 100%;
		 opacity: 0.95;
		 padding: 1.5rem 2rem;
		 border-radius: 5px;
		 z-index: 10;
	}
	 #styled_internal .nav-list.active {
		 display: flex;
	}
	 #styled_internal .hamburguer {
		 display: block;
	}
	 #styled_internal .contact-info-desktop {
		 display: none;
	}
}
 @media all and (min-width: 1025px) {
	 #styled_internal .contact-info-mobile {
		 display: none;
	}
}
 @media all and (max-width: 768px) {
	 #styled_internal .footer-content {
		 flex-direction: column;
		 justify-content: center;
		 align-items: flex-start;
		 padding-left: 2rem;
	}
	 #styled_internal .footer-info {
		 order: 2;
	}
	 #styled_internal .footer-links {
		 order: 1;
	}
	 #styled_internal .whatsapp-button {
		 bottom: 15px;
		 width: 50px;
		 height: 50px;
	}
	 #styled_internal .scroll-top-button {
		 bottom: 15px;
		 width: 50px;
		 height: 50px;
	}
}
 