/**
* Template Name: DevFolio
* Template URL: https://bootstrapmade.com/devfolio-bootstrap-portfolio-html-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff;
    /* Background color for the entire website, including individual sections */
    --default-color: #4e4e4e;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #0a090f;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #0078ff;
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff;
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff;
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #ffffff;
    /* The default color of the main navmenu links */
    --nav-hover-color: #ffffff;
    /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff;
    /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff;
    /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #212529;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #0078ff;
    /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #f9f9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #0078ff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #3393ff;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

html {overflow-x: hidden;}

body, html {
  height: 100%;
  margin: 0;
}

body {
    color: var(--default-color);
    font-family: var(--default-font);
    background:
        url(../../cortes/bg-pequeno.png) no-repeat, 
        url(../../cortes/bg-medio.png) no-repeat, 
        url(../../cortes/bg-grande.png) no-repeat; 
    background-position:
        right 40%, 
        right center, 
        left 80%; 
    background-size:
        185px 173px, 
        407px 629px, 
        421px 483px; 
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/


.header {
    --background-color: #fff;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
    box-shadow: 1px 1px 26px rgb(30, 38, 43);
}

.header .logo {
    line-height: 1;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        font-size: 15px;
        padding: 0 2px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: var(--nav-hover-color);
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #333;
    background-color: #fff;
    font-size: 14px;
    padding: 40px 0;
    position: relative;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .social-links {
    margin-top: 20px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0 5px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    color: var(--default-color);
    border-color: var(--default-color);
}

.footer .credits {
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
}

.footer .credits a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

#preloader:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid #ffffff;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}


/* HORARIOS TOPO */

.horariosTopo {
    display: none;
}


/* HERO - VIDEO GRANDE DA HOME */

.heroContainer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

#hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
 height: 86vh;
}


.heroConteudo {
	position: relative;
    z-index: 999999999999;
	clip-path: polygon(-50% 50%, 50% 100%, 150% 50%, 50% 0); 
    text-align: center;
    color: #fff;
    width: 243px;
    height: 275px;
	opacity:0.4;
	background-color: rgba(0, 0, 0, 0.2);
	will-change: clip-path, transform;
	top:-14px;
}

#hero video {
	position:absolute;
    width: 100%;
    height:100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.8;
}



.cta-button {
    position: absolute;
    bottom: 90px;
    display: block;
    padding: 0.5rem 1rem;
    background: #00b92e;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    width: 147px;
    margin: 0 auto;
    text-align: center;
    text-decoration: none;
}

.hero .cta-button:hover {
    background: #00d736;
    color: #fff;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
}

.hero p {
    margin: -81px 0 0 0;
    font-size: 36px;
    font-weight: 600;
}

.hero p span {
    letter-spacing: 1px;
}

.typed {
    line-height: 1.5;
    white-space: pre-wrap;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {font-size: 1.6rem;}
}


/* MENU PRINCIPAL */


.menuPrincipal {
    position: sticky;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: #fff;
}

.header-container {
    position: relative;
    padding: 10px 20px;
    width: 100vw;
    height: 94px;
}

.header-container::after {
  content: '';
  position: absolute;
  width: 98%;
  height: 144px;
  background:
rgba(0, 0, 0, 0.8);
  border-radius:
50%;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  filter: blur(11px);
}

.bg-fala {
    display: none;
}

.logo {
    display: inline-block;
}

.logo img {
    width: 241px;
    height: auto;
    margin: 0.6rem 0 0 0;
}

.tel {
    position: absolute;
    top: 94px;
    left: 0;
    width: 100vw;
    padding: 8px 20px;
    text-align: center;
    background: rgba(0, 51, 153, 1);
	z-index: 9;
}

.tel a {
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    background: url(../ico-whatsapp.svg) no-repeat;
    background-position: right center;
    background-size: 20px;
    padding-right: 28px;
    display: inline-block;
}


.iconesTopo {
    display: none;
}


.menu {
    position: absolute;
    top: 22%;
    right: 0;
    display: block;
    --t: 24px;
    --c: #808080;
    height: var(--t);
    aspect-ratio: 1;
    border: none;
    padding: 0;
    border-inline: calc(var(--t) / 2) solid #0000;
    box-sizing: content-box;
    --_g1: linear-gradient(var(--c) 20%, #0000 0 80%, var(--c) 0) no-repeat content-box border-box;
    --_g2: radial-gradient(circle closest-side at 50% 12.5%, var(--c) 95%, #0000) repeat-y content-box border-box;
    background:
        var(--_g2) left var(--_p, 0px) top,
        var(--_g1) left calc(var(--t) / 10 + var(--_p, 0px)) top,
        var(--_g2) right var(--_p, 0px) top,
        var(--_g1) right calc(var(--t) / 10 + var(--_p, 0px)) top;
    background-size: 20% 80%, 40% 100%;
    transform: translateY(-50%);
    clip-path: inset(0 25%);
    -webkit-mask: linear-gradient(90deg, #0000, #000 25% 75%, #0000);
    cursor: pointer;
    transition:
        background-position 0.3s var(--_t, 0.3s),
        clip-path 0s var(--_t, 0.6s);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    z-index: 9;
}

.menu:before,
.menu:after {
    content: "";
    position: absolute;
    border-radius: var(--t);
    inset: 40% 0;
    background: var(--c);
    transition: transform 0.3s calc(0.3s - var(--_t, 0.3s));
}

.menu:checked {
    clip-path: inset(0);
    --_p: calc(-1 * var(--t));
    --_t: 0s;
}

.menu:checked:before {
    transform: rotate(45deg);
}

.menu:checked:after {
    transform: rotate(-45deg);
}

.menu:focus-visible {
    clip-path: none;
    -webkit-mask: none;
    border: none;
    outline: 2px solid var(--c);
    outline-offset: 5px;
}

/* MENU PRINCIPAL */

.menuPrincipal-links {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background: #000;
    position: absolute;
    top: 134px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 998;
    transition: all 0.4s ease;
}

.menuPrincipal-links.openGlaux {
    height: 100vh; 
    opacity: 0.95;
    visibility: visible;
    padding: 20px;
	margin-top: -2.5rem;
}

.menuPrincipal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.menuPrincipal-links li {
    position: relative;
    padding: 0 .5em .25em;
    cursor: pointer;
    line-height: 2.6rem;
    display: block;
    width: fit-content;
}

.menuPrincipal-links {
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    background: #000;
    position: absolute;
    top: 134px;
    left: 0;
    width: 100%;
    padding: 0 20px;
    z-index: 998;
    transition: all 0.4s ease;
}

.menuPrincipal-links.openGlaux {
    height: 100vh; 
    opacity: 0.95;
    visibility: visible;
    padding: 70px;
	margin-top: -2.5rem;
}

.menuPrincipal-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #fff;
}

.menuPrincipal-links li {
    position: relative;
    padding: 0 .5em .25em;
    cursor: pointer;
    line-height: 2.6rem;
    display: block;
    width: fit-content;
}

.menuPrincipal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
	height: 32px;
}

.menuPrincipal-links a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #00cfff;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out;
}

.menuPrincipal-links a:hover::before,
.menuPrincipal-links a.active::before {
    visibility: visible;
    transform: scaleX(1);
}

.menuPrincipal-links a.active::before {
    visibility: visible;
    transform: scaleX(1);
}

.menuPrincipal-links.hovering-some-link a.active::before {
    visibility: hidden;
    transform: scaleX(0);
}




/* SEÇÃO SOBRE MIM */

#sobre-mim {display: inline-block;}

#sobre-mim .conteudo {
  width: 70%;
  height: auto;
  margin: 2rem auto;
}

.limite-titulo h1 {
  font-size: 1.3rem;
  margin-left: 3rem;
  font-weight: bold;
  color: #039;
  width: auto;
  display: inline-block;
  line-height: 3rem;
  padding:0 0.5rem;
}


hr.horizontal {
	width: 100vw;
	position: absolute;
	margin-top:-2rem;
	z-index:-1;
	background-color: #003399;
	height: 3px;
	border: none;
	opacity: 1;
	left: 186px;
}

.limite-titulo {position: relative;}

.img-poligonal {
  display: none;
}

.img-quadrada {
position: relative;
margin:2rem auto;
display: block;
width: 300px;
height:auto;
}


/* SEÇÃO ATENDIMENTOS */

#atendimentos {
	background-color: rgba(0,51,153, 0.4) !important;
	  border-radius: 8px;
}

#atendimentos .limite-titulo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  top: 2rem;
left: 1.5rem;
}

#atendimentos .limite-titulo h1 {
	position: relative;
	top: -5rem;
	left:-1.8rem;
  writing-mode: vertical-rl; 
  text-orientation: mixed;
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

#atendimentos .limite-titulo .vertical {
  width: 2px;
  height: 100vh;
background: linear-gradient(to bottom, #fff 0%, transparent 100%);

  border: none;
  margin: 1rem 0;
  top: -5rem;
  position: relative;
  opacity: 1 !important;
}

#atendimentos  {
  background-color: #039;
  padding: 2rem 1rem 4rem 1rem;
  position: relative; 
}

#atendimentos .card-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-left: 3rem; 
}

#atendimentos .card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: transparent !important;
  border: none !important;
  height: 370px;
}

#atendimentos .card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  height: 370px;
}

#atendimentos .card figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
  height: 370px;
 }

#atendimentos .card figure:hover img {transform: scale(1.1);}

#atendimentos .card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  padding: 0 1rem 0 2rem;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 70%, transparent 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;    
  justify-content: center;
}


#atendimentos .card figcaption h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #27B054;
  margin: 0 0 -0.5rem 0;
}

#atendimentos .card figcaption hr {
  border: none;
  height: 0.6rem;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #27B054 0%, #27B054 50%, rgba(39, 176, 84, 0) 100%);
  width: 100%;
  position: relative;
  left: -1rem;
}

#atendimentos .card figcaption p {
  margin: 1rem 0 2rem 0;
  font-size: 1.1rem;
}

#atendimentos .card figcaption a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  width: 140px;
  background: #208A43 url(../ico-whatsapp.svg) no-repeat;
  background-position: 100px center;
  background-size: 20px;
  padding-right: 8px;
  display: inline-block;
}

#atendimentos .card figcaption a:hover {
  color: #fff;
  background: #27B054 url(../ico-whatsapp.svg) no-repeat;
  background-position: 100px center;
  background-size: 20px;
}


@media (min-width: 601px) {	
	  
  #atendimentos {
  position: relative; 
    left: 50%; 
    right: 50%; 
    margin-left: -50vw; 
    margin-right: -50vw; 
    width: 100vw;	
  }
  
    #atendimentos .limite-titulo .vertical {
    height: 150px !important;
    top: -1rem !important;
  }
		
  #atendimentos .card-container {
	width: 340px;
	margin:0 auto;	
  }

  #atendimentos .limite-titulo {
    top: 3rem;
    left: 2rem;
  }

  #atendimentos .limite-titulo h1 {
    top: 0;
  }

.menuPrincipal-links {padding: 200px 200px;}

.img-alternar {
	filter: invert(50%);
	width: 30px;
    height: 30px;
}
  
}

@media (min-width: 1200px) {
  .card-container {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 5rem;
  }


   #atendimentos .limite-titulo {
    top: 4rem;
    left: 3rem;
  }

    #atendimentos .limite-titulo h1 {
    font-size: 1.3rem;
  }

   #atendimentos .limite-titulo .vertical {
    height: 200px;
  }
}

/* DEPOIMENTOS */

#depoimentos {position: relative;}

.depoimentos hr {left: 222px;}

#depoimentos .limite-titulo {margin: 2rem 0 3rem 0; position: absolute;}
#depoimentos hr.horizontal {left: 212px;}
#depoimentos .image-container {margin-bottom: -2rem;}

.testimonial-container {
  width: 87%;
  max-width: 56rem;
  padding: 2rem;
  margin: 4rem auto;
}
.testimonial-grid {
  display: grid;
  gap: 5rem;
}
.image-container {
  position: relative;
  width: 100%;
  height: 24rem;
  perspective: 1000px;
}
.testimonial-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.5rem;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 0.25rem;
}
.designation {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 2rem;
}
.quote {
  font-size: 1.125rem;
  color: #4b5563;
  line-height: 1.75;
}
.arrow-buttons {
  display: flex;
  gap: 1rem;
  padding-top: 3rem;
}
.arrow-button {
  width: 30px;
  height: 30px;
  display: block;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-sizing: border-box; 
  -webkit-appearance: none; 
  appearance: none;
  color: #000;
  font-weight: bold;
  font-size: 1.4rem;
  border:0;
  background: transparent;
}
.arrow-button:hover {
 color:#333;
}
.arrow-button svg {
	display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  fill: #f1f1f7;
  transition: transform 0.3s;
}
.arrow-button:hover svg {
  fill: #ffffff;
}
.prev-button:hover svg {
  transform: rotate(-12deg);
}
.next-button:hover svg {
  transform: rotate(12deg);
}


@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
  .arrow-buttons {
    padding-top: 0;
  }
}

/* CONTATO */

#contato {
	position: relative;
	background: #3e3e3e;
	padding: 4rem 0 4rem 3rem;
left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;	
}

#contato .tel {
  position: relative;
  top: 0;
  left: 0;
  width: auto;
  padding:0;
  text-align: left;
  background:transparent;
  line-height: 5rem;
}

.limite-contato {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
    flex-wrap: wrap;

}

.horariosFooter strong {display:block;}

.coluna {
  flex: 1 1 100%; 
  color: #fff;  
}

#contato .limite-titulo {
	position: absolute;
	left: 1rem;
}

#contato .limite-titulo h1 {
	position: relative;
	top: -5rem;
	left:-1.8rem;
  writing-mode: vertical-rl; 
  text-orientation: mixed;
  font-size: 1.3rem;
  color: #fff;
  margin: 0;
}

#contato .limite-titulo .vertical {
  width: 2px;
  height: 345px;
background: linear-gradient(to bottom, white 0%, transparent 100%);

  border: none;
  margin: 1rem 0;
  top: -5rem;
  position: relative;
  opacity: 1 !important;
}

.coluna-1 {
  position: relative;
  margin: -3rem 0 2rem 1rem;
}


/* FOOTER */

footer .logo {
  position: relative;
  width:241px;
  margin:0 auto 4.5rem auto;  
  display: block !important;	
}

footer {
    background:
        url(../../cortes/bg-pequeno.png) no-repeat, 
        url(../../cortes/bg-medio.png) no-repeat, 
        url(../../cortes/bg-grande.png) no-repeat; 
    background-position:
        right 40%, 
        right center, 
        left 80%; 
    background-size:
        185px 173px, 
        407px 629px, 
        421px 483px; 
		
}

address a {color: #fff !important;}
address a:hover {text-decoration: underline !important;}

footer p {color: #333;}
footer q {quotes: none;}

footer q::before,
footer q::after {content: '';}	
	


.frase {
position: relative; 
width: 173px;
height: 192px;
margin: 0 auto;
display: block;	
background: url(../../cortes/footer-detalhe.svg) no-repeat;
background-position:  100% 10%; 
background-size: cover;
text-align: right;
padding-right: 29px;
padding-top: 3px;
font-size: 0.9rem;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .container {
    background-color: var(--surface-color);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.about .skills-content h5 {
    font-size: 18px;
    font-weight: 700;
    margin: 30px 0 15px 0;
}

.about .progress {
    height: 36px;
    display: block;
    background: none;
    border-radius: 0;
    margin-top: 15px;
}

.about .progress .skill {
    color: var(--default-color);
    padding: 0;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    display: block;
    font-weight: 600;
    font-family: var(--heading-font);
}

.about .progress .skill .val {
    float: right;
    font-style: normal;
}

.about .progress-bar-wrap {
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    height: 10px;
}

.about .progress-bar {
    width: 1px;
    height: 10px;
    transition: 0.9s;
    background-color: var(--accent-color);
}

.about .about-me h4 {
    font-size: 28px;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about .about-me h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 64px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
    margin: auto;
}

.about .about-me p {
    font-size: 18px;
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
}

.resume .resume-item {
    padding: 0 0 20px 20px;
    margin-top: -2px;
    border-left: 2px solid var(--accent-color);
    position: relative;
}

.resume .resume-item h4 {
    line-height: 18px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 10px;
}

.resume .resume-item h5 {
    font-size: 16px;
    padding: 5px 15px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 10px;
}

.resume .resume-item ul {
    padding-left: 20px;
}

.resume .resume-item ul li {
    padding-bottom: 10px;
}

.resume .resume-item:last-child {
    padding-bottom: 0;
}

.resume .resume-item::before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50px;
    left: -9px;
    top: 0;
    background: var(--background-color);
    border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
    background-color: var(--surface-color);
    box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
    padding: 60px 30px;
    transition: all ease-in-out 0.3s;
    border-radius: 18px;
    border-bottom: 5px solid var(--surface-color);
    height: 100%;
}

.services .service-item .icon {
    color: var(--contrast-color);
    background: var(--accent-color);
    margin: 0;
    width: 64px;
    height: 64px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out 0.3s;
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
    transition: ease-in-out 0.3s;
}

.services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

@media (min-width: 1365px) {
    .services .service-item:hover {
        transform: translateY(-10px);
        border-color: var(--accent-color);
    }

    .services .service-item:hover h3 {
        color: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    position: relative;
    padding: 120px 0;
}

.stats img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.stats:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 40%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.stats .container {
    position: relative;
    z-index: 3;
}

.stats .stats-item {
    padding: 30px;
    width: 100%;
}

.stats .stats-item span {
    font-size: 48px;
    display: block;
    color: var(--default-color);
    font-weight: 700;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
    font-weight: 700;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    margin: 0 10px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio .portfolio-item {
    position: relative;
}

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    background: color-mix(in srgb, var(--background-color), transparent 10%);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
    position: absolute;
    right: 50px;
    font-size: 24px;
    top: calc(50% - 14px);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: 0.3s;
    line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
    color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
    right: 14px;
    font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
    opacity: 1;
    bottom: 20px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    border-bottom: 1px dashed color-mix(in srgb, var(--default-color), transparent 60%);
    width: 100%;
    height: 100%;
    padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.pricing .pricing-item h4 {
    margin: 0;
    font-size: 18px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
    font-weight: 400;
    font-size: 34px;
}

.faq .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    position: relative;
}

.testimonials:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.testimonials .testimonials-bg {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.testimonials .container {
    position: relative;
    z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
    width: 100px;
    border-radius: 50%;
    border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
    margin: 0 auto;
}

.testimonials .testimonial-item h3 {
    font-size: 20px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
    font-size: 14px;
    margin: 0 0 15px 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
    font-style: italic;
    margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 50%);
    opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--default-color);
    opacity: 1;
}

@media (min-width: 992px) {
    .testimonials .testimonial-item p {
        width: 80%;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.contact .info-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
    margin-right: 15px;
}

.contact .info-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 2px 0;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.contact .info-item:hover i {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.contact .php-email-form {
    background-color: var(--surface-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

@media (max-width: 575px) {
    .contact .php-email-form {
        padding: 20px;
    }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
    font-size: 14px;
    padding: 10px 15px;
    box-shadow: none;
    border-radius: 0;
    color: var(--default-color);
    background-color: color-mix(in srgb, var(--background-color), transparent 50%);
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
    color: var(--contrast-color);
    background: var(--accent-color);
    border: 0;
    padding: 10px 30px;
    transition: 0.4s;
    border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .swiper-wrapper {
    height: auto;
}

.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}

.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 575px) {

    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}

.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    bottom: 0;
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 14px;
}

.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50px;
    transition: 0.3s;
}

.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
}

.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    margin-bottom: 50px;
}

.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid var(--background-color);
    float: left;
    margin: 0 10px 0 0;
}

.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}

.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    font-size: 26px;
    line-height: 0;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}

.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}

.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}


/* REGRA ESPECÍFICA PARA O iOS */



@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-touch-callout: none) {
	  
   .heroConteudo {
	   position: relative;
	   top: 90%;
	   clip-path: none;
	   background-color: transparent;
	   width: 90%;
	   margin: 0 auto;
   }
   
   .heroConteudo br {display:none;}
   
  }
}


@media (min-width: 320px) {
	
.cta-button {bottom: 60px;}
	
.limite-titulo {margin:3rem 0 -3rem 0;}
#atendimentos .limite-titulo { top: 3rem;}
#atendimentos .limite-titulo .vertical {height: 500px;}
#atendimentos .card figcaption hr {
  left: -2rem;
}

.iconesTopo {
    top: -1rem;
    display: block;
    position: relative;
    left: 89%;
}
.iconesTopo img {
  width: 20px;
  height: 20px;
}
.img-alternar {filter: invert(50%);}

#atendimentos .card figcaption {background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 100%, transparent 100%);}
.content {position: relative; margin-top: 4rem;}

#contato .limite-titulo h1 {top: -2.4rem;}
#contato .limite-titulo .vertical {top: -3rem;}

}

@media (min-width: 360px) {
	
	#atendimentos .limite-titulo h1 {top: -1rem;}
	
	.limite-titulo { margin: 1rem 0 -3rem 0; }
	
	#atendimentos .limite-titulo .vertical {height: 500px; top: -1rem;}
	
	  .depoimentos { margin:4rem 0 -3rem 0;}
	
	.header-container {height: 133px;}
		
	.heroConteudo {
		width: 300px;
		height: 343px;
	}
	
	.cta-button {bottom: 91px;}
	
	.logo img {
  width: 250px;
  height: auto;
  margin:1.2rem 0 0 0;
  }
  
    .iconesTopo img {
    width: 25px;
    height: 25px;
  }
  
    .iconesTopo {left: 86%;}

  .menu {
    position: absolute;
    top: 22px;
    right: 1rem;
  }
  
  .menuPrincipal-links.openGlaux {margin-top: 1.3rem;}

.tel {top: 114px;}

}

@media (min-width: 390px) {

#atendimentos .card figcaption {bottom: 0; height: 100% !important;}
#atendimentos .card {height: auto !important;}
#atendimentos .card figure {height: auto !important;}
#atendimentos .card figure img {height: 100% !important;}	
.testimonial-container {width: 86%;}
#contato .limite-titulo h1 {top: -3rem;}
#contato .limite-titulo .vertical {top: -3rem;}
footer .logo {left: -0.5rem;}

}



@media (min-width: 601px) {
	
#sobre-mim {
	position: relative;
	width: 100vw;
	left: 0;
	margin-left: -31px;
	margin-top: -5.5rem;  
}
#sobre-mim .conteudo {
	width: 89%;
	height: auto;
	margin:-0.4rem auto 2rem auto;
	text-align: justify;
}
#sobre-mim hr {
	width: 52%;
	position: relative;
	right: -12rem;
	left: initial;
}

.limite-titulo {
  left: 26%;
  margin:0 0 5rem 0;
}
	
.img-poligonal {
      position: relative;
      width: 50%;
      height: auto;
      display: block;
      float: left;
      clip-path: polygon(68.36% 0.72%, 98.33% 52.82%, 66.97% 101.08%, 1.31% 100.72%, 0.33% 1.14%);
      float: left;
      shape-outside: polygon(62.2% 0.35%, 84.55% 53.5%, 63.07% 99.32%, 1.15% 100.38%, 0.97% -0.37%);
      margin-right: 5rem;
      margin-bottom: 1rem;
}
	
.img-quadrada {display: none;}

.menuPrincipal-links.openGlaux {margin-top: 1.5rem;}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 116px;
	background: url(../../cortes/bg-pequeno.png) no-repeat;     
	background-position:  100% 10%;        
	background-size:  125px 116px;
	padding-top: 80px;
	padding-bottom: 80px;	
}

.tel {
	position: absolute;
	width: 209px;
	margin-top: 0;
	left: 327px;
	top: 6.4rem;
	z-index: 9999;
	background: transparent;
}
.tel a {
	z-index: 9999;
	color: #333;
	background: url(../ico-whatsapp-verde.svg) no-repeat;
	background-position: right center;
	background-size: 20px;		
}

.coluna-1 .tel a {color: #fff;}

.logo img {
	width: 254px;
	top: 2rem;
	left: 46px;
	position: absolute;
}

  .horariosTopo {
    position: absolute;
    top: 1.2rem;
    left: 60%;
    display: block;
    color: #333;
    width: 131px;
    text-align: center;
  }
.horariosTopo p strong {display: block;}

.heroConteudo {
	width: 300px;
	height: 330px;
}

.hero p {font-size: 1.7rem;}
.cta-button {bottom: 79px;}
	
.testimonial-container {margin-top: 1rem;}
.depoimentos {top: 5rem;}
	  
.coluna-1 {
	position: relative;
	margin:-3rem 0 2rem 9rem;
}
.coluna-2 iframe {border:0; width: 86vw;}

#contato .limite-titulo h1 {top: -2rem;}
#contato .limite-titulo .vertical {top: -2rem;}

footer .container {margin-left: 0 !important;}
footer .logo img {
	width: 290px;
	top: -4rem;
	position: relative;
	margin: 2rem auto 1rem auto !important;
	left: 0 !important;
}
footer .logo {top: 3.4rem;}  
.frase {
	left: 2.5rem;
	top: -1.5rem;
} 

.image-container {
	position: relative;
	width: 100%;
	height: 30rem;
	perspective: 1000px;
} 

.iconesTopo {
	display: block !important;
	position: absolute;
right: 1rem;
    top: 6.5rem;
}

.iconesTopo:nth-child(2),
.iconesTopo:nth-child(1) {width: 25px;}

} /* FIM BREAKPOINT 601px */



@media (min-width: 744px) {

#sobre-mim {margin-left: -105px;}
#sobre-mim .conteudo {
	margin:0.5rem auto 2rem auto; 
	width: 90%;
}
	
.img-poligonal {
	margin-right: 6rem; 
	margin-bottom: 1rem;	
}

.limite-titulo {
	left: 40%; 
	margin:5rem 0 5rem 0;
}
	
#atendimentos {
background: 
        url(../../cortes/bg-pequeno.png) no-repeat, 
        url(../../cortes/bg-medio.png) no-repeat;
background-position:
        100% 10%, 
        12% bottom;
background-size:
        125px 116px, 
        173px 268px;
background-color: #039;	
padding-top: 80px;
padding-bottom: 80px;	
}
	
	
} /* iPad Mini (6ª geração) */


@media (min-width: 768px) {
	
#sobre-mim {height: 522px;}
#sobre-mim .conteudo {
	margin:0 auto 2rem auto; 
	width: 89%;
}
#sobre-mim {margin-left: -1rem;}
#sobre-mim p {margin-bottom: 2rem;}

header .tel a {
	position: relative;
	left: 57%;
}

  .menu {
    position: absolute;
    top: 40px;
    right: 22px;
  }
  
    .image-container {
    position: relative;
    width: 100%;
    height: 21rem;
    perspective: 1000px;
  }
		
.depoimentos .limite-titulo { margin:0rem 0 5rem 0;}
		
.img-poligonal {margin-right: 5rem; margin-bottom: 0rem;}

.limite-titulo {
	left: 40%;
	margin:1rem 0 5rem 0;
}
	  
.header .logo {
	position: relative !important;
	margin:-10rem 0 0 1.5rem !important;
}

header .logo img {width: 278px !important;}
		
		
} /* FIM BREAKPOINT 768PX */



@media (min-width: 800px) {

#atendimentos .card-container {width: 650px;}

.menu {display: none;}

.header-container {
	flex-direction: column;
	align-items: flex-start;
	padding-top: 79px;
	padding-bottom: 36px;
}

.menuPrincipal-links ul li:before {display: block;}
.menuPrincipal-links {visibility: visible; opacity: 1;}
.menuPrincipal-links a {height: inherit;}

.menuPrincipal-links {
	position: absolute;
	top: 0;
	left: 44vw; 
	width: 56vw; 
	padding: 0;
	display: flex;
	justify-content: flex-end; 
	list-style: none;
	background: #039; 
	height: 100%; 
	z-index: 10; 
	transition: all 0.4s ease;
	box-shadow: none; 
	overflow: visible; 
}
.menuPrincipal-links::before {
	position: absolute;
	top: 0;
	content: '';
	clip-path: polygon(78% 0, 100% 0, 100% 100%, 54% 100%);
	background: #003399;
	width: 155px;
	height: 116px;
	left:-121px;
}
.menuPrincipal-links ul {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	list-style: none;
	width: 461px;
	margin-top: 0.5rem;
}
.menuPrincipal-links li {margin: 0;}
.menuPrincipal-links a {
	color: #fff;
	position: relative;
	height: 34px;
}

.tel {
	position: absolute;
	align-self: flex-end;
	margin-top: -0.2rem;
	color: #fff;
	width: auto;
	top: 3.5rem;
	transform: none;
	right: 159px;
	line-height: 2.8rem;
}

header .tel a {
	float: right;
	margin-right: 6rem; 
	color: #fff;
	text-decoration: none;
	background: url(../ico-whatsapp.svg) no-repeat right center; 
	background-size: 21px;
	padding-right: 28px;
	display: inline-block;
	line-height: 2.8rem; 
	height: 24px; 
	z-index: 11; 
}

header .logo img {
        width: 254px;
margin: 0.5rem 0 0 -4rem;
    top: 6.3rem;
    }

    .bg-fala {
        display: none;
    }

    .iconesTopo {
        display: block;
        position: relative;
        left: 92%;
        top: 1rem;
        z-index: 9999;
    }
    .iconesTopo img {
        width: 22%;
        height: auto;
    }

    .heroConteudo {
        width: 400px;
        height: 440px;
    }

    .hero p {
        font-size: 1.9rem;
    }
    .hero p span {
        letter-spacing: 1px;
        top: -10px;
        position: relative;
    }

    .cta-button {
        bottom: 110px;
        width: 200px;
        height: auto;
        line-height: 2rem;
        font-size: 1.4rem;
    }

  #sobre-mim {height: 560px;}



    #sobre-mim .conteudo {
      margin:
0.5rem auto 2rem auto;
      width: 84%;
    }
 
     .limite-titulo {margin:3rem 0 6rem 0; left: 29%;}
	 
	 .depoimentos {margin:0rem 0 6rem 0; left: 29%; }
	 
	   #atendimentos .limite-titulo h1 {
    top: -4rem;
  }
  #atendimentos .limite-titulo .vertical {
    height: 186px !important;
    top: -4rem !important;
  }
  
    .coluna {
    flex: 1 1 calc(50% - 16px); 
  }

.limite-contato {flex-wrap: nowrap;}

 .coluna-1 {
    position: relative;
    margin:-1rem 0 2rem 5rem;
  }


#contato .limite-titulo {
  position: absolute;
  left: 3rem;
  top: 1rem;
}

  #contato .limite-titulo .vertical {
    top: -2rem;
    height: 248px;
  }
  
   .coluna-2 iframe {
    width: 300px;
    height: 300px;
    left: -2rem;
    position: relative;
  }
  
  footer .logo {
  position: relative;
  width: 241px;
  margin:2rem 0 0 2rem;
}

footer .logo img {
    top: -4rem;
    position: relative;
    margin: 0 !important;
    left: 0 !important;
    float: left;
  }
  
.frase {
  margin:0 4rem 4rem 0;
  float: right;
}

#atendimentos .card-container {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-left: 3rem;
  grid-template-columns: 1fr 1fr;
}


}

@media (min-width: 820px) {
	
	#sobre-mim {width: 96vw;}
	 .limite-titulo {left: 29%;}
	
}


@media (min-width: 1024px) {
	
  .menuPrincipal-links::before {
    left: -263px;
    width: 300px;
  }
  
  .menuPrincipal-links ul {
  right: 40px;
  position: relative;
}

.tel {right: 264px;}

.iconesTopo {left: 90%;}
  
    .header .logo {
    position: relative !important;
    margin: -10rem 0 0 2.5rem !important;
  }
	
	  #sobre-mim {
      width: 78vw;
      margin:0 auto;
      display: block;
	  top: -3rem;
    }
	
  .depoimentos .limite-titulo {
    left: 35%;
    top: 6rem;
  }

	 
	     .img-poligonal {width: 400px; margin-right: 7rem;}

          #sobre-mim .conteudo {width: 93%;}
		  
		      #sobre-mim .conteudo {margin:1.5rem auto 2rem auto;}
			  
	    #atendimentos .card-container {
      width: 700px;
    }		  
			  
}


@media (min-width: 1280px) {

    .logo img {
        width: 300px;
        height: auto;
        position: absolute;
        left: -2rem;
    }
	
	 .header .logo {margin: -10rem 0 0 4.5rem !important;}
	
	
    .menuPrincipal-links {
        position: absolute;
        right: inherit;
        width: 100vw;
        left: 25rem;
    }
    .menuPrincipal-links ul {
        width: 519px;
        position: absolute;
        right: 29rem;
    }
    .menuPrincipal-links a {
        font-size: 1.1rem;
    }
	 .menuPrincipal-links::before {left: -141px; width: 143px;}

 .iconesTopo {
    position: relative;
    text-align: center;
    top: 1rem;
    width: 127px;
    left: 97%;
  }

    .tel {
        width: 460px;
        left: 43%;
    }


  .horariosTopo {
      padding: 0.3rem;
      display: inline-block;
      position: relative;
      z-index: 9;
      top: 67px;
      left: 410px;
      width: 228px;
      height: 83px;
      z-index: 9999;
    }

    .horariosTopo strong {
        display: block;
        text-align: center;
    }
    .horariosTopo p {
        text-align: center;
		font-size: 1.1rem;
    color: #fff;
    }

    .iconesTopo img {
        width: 28px;
        height: auto;
        margin-left: 0.5rem;
    }
    .heroConteudo {
        width: 300px;
        height: 340px;
        background:
            linear-gradient(153deg, rgb(255, 255, 255) 0%, rgb(209, 233, 255) 15%, rgb(255, 255, 255) 50%, rgb(209, 224, 255) 79%, rgb(255, 255, 255) 100%);
        border:
            1px solid #fff;
 
    }

    .heroConteudo p {
        color: #333;
        font-size: 1.3rem;
    }

    .cta-button {
        bottom: 98px;
        width: 179px;
        font-size: 1.3rem;
    }
	
  #sobre-mim {
    width: 72vw;
    height: 580px;
	top:-4rem;
  }
	
.limite-titulo {left:38%; margin: 3rem 0 6rem 0;}
   #sobre-mim .conteudo {margin:0 auto 2rem auto;}
       .img-poligonal {
      width: 460px;
    }
	

    #sobre-mim .conteudo {width: 89%;}
	
	    .testimonial-container {margin-top: 0;}
		
		.depoimentos {top: 3rem;}
		
		#contato {
  top: 3rem;
  margin-bottom: 3rem;
}

  .coluna-1 {
    position: relative;
    margin:
-1rem 0 2rem 9rem;
  }
	  .coluna-2 iframe {
    width: 500px;
	  height: 300px;}
	  
	    .coluna-2 iframe {left: -5rem;}
		
		 .frase {
    margin:
0 8rem 4rem 0;
    float: right;
  }
  
  .img-alternar {filter: invert(0);}
	
} /* FIM DO 1280PX */


@media (min-width: 1334px) {

    .menuPrincipal-links ul {
        width: 519px;
        position: absolute;
        right: 32rem;
    }


    .logo img {
        top: 1.1rem;
    }
	
	#atendimentos {
	background-position: 100% 10%, 12% bottom;
      background-size: 202px 188px, 274px 424px;
    }
	


} 

@media (min-width: 1366px) {
	
	
	body {
  background-position: right 40%, left center, left 80%;
  background-size: 185px 173px, 407px 629px, 421px 483px;
}
	
	.heroConteudo {
		position: relative;
		top: 0;
	}
	
	
	  .testimonial-container {
    margin-top: 2rem;
  }
	
	  .tel {left: 45.5%;}


    .menuPrincipal-links ul {
        right: 32.5rem;
    }

    .iconesTopo {
        left:99%;
    }
    .logo img {
		width: 279px;
        top: 1.1rem;
		left: -3rem;
    }
	
#sobre-mim {top:-4rem; width: 78vw; height: 580px; left: 5rem;}	

#sobre-mim .conteudo {width: 75%;
      margin-top: -0.2rem;}

#sobre-mim p {margin-bottom: 2rem; font-size: 1.1rem;}

  .img-poligonal {margin-right: 8rem;}
  
#atendimentos .card-container {width: 800px;}	
#atendimentos .card-container {gap: 4rem;}
#atendimentos .card figcaption p {width: 280px; margin: 2rem 0 3rem 0;}
#atendimentos .card figcaption h2 {margin: -1rem 0 -0.5rem 0;}
#atendimentos .limite-titulo h1 {top: 0rem;}
#atendimentos .limite-titulo .vertical {top: 0rem !important;}

.depoimentos {top: 4rem;}

  .image-container {
    width: 69%;
    height: 25rem;
  }
  
    .limite-titulo {
    left: 38%;
    margin: 1rem 0 4rem 0;
  }
  
footer {height: 400px;}
footer .logo img {
    top: -2rem;
    left: 2rem !important;
}

#contato .limite-titulo h1 {top: 0rem;}
#contato .limite-titulo .vertical {top: 0rem;}


} /* FIM 1366PX */



@media (min-width: 1440px) {
	
  body {
    background-position: left 80%, 122% 29%, left 16%;
    background-size: 185px 173px, 407px 629px, 421px 483px;
  }

    .header-container {
        height: 132px;
    }

    .menuPrincipal-links {
        display: block;
        position: absolute;
        background: #003399;
        padding: 15px 0;
        width: 100vw;
        height: 134px;
        left: 405px;
    }

   .logo img {
      left: -0.8rem;
      top: 1.7rem;
      width: 281px;
    }

    .menuPrincipal-links::before {
        height: 134px;
    }

    .horariosTopo p {
        top: 0.8rem;
        position: absolute;
        font-size: 1.1rem;
        left: 21px;
        width: 300px;
    }

  .tel {
      left: 48%;
      top: 4.3rem;
    }

    .menuPrincipal-links ul {
      right: 30.5rem;
      top: 0;
    }

  .iconesTopo {
    top: 1rem;
    left: 1200px;
  }
	
	 .heroConteudo {
    width: 380px;
    height: 420px;
	 }
	   .heroConteudo p {
    color: #6a6a6a;
    font-size: 1.7rem;
  }

.depoimentos .limite-titulo {
    left: 40%;
    margin:4rem 0 7rem 0;
  }
#sobre-mim .conteudo {margin-top: 0;}
#sobre-mim {height:571px;}
main p {font-size: 1.1rem;}
.limite-titulo h1 {font-size: 1.5rem;}
.depoimentos hr.horizontal {left: 245px;}

hr.horizontal {left: 207px;}

#atendimentos .limite-titulo h1 {
    font-size: 1.5rem;
	top: 0rem;
}
#atendimentos .limite-titulo .vertical {top: 0rem !important;}  
  
.cta-button {bottom: 108px;}

  .logo img {
      left: -1.8rem;
      top: 6.7rem !important;
    }
	
	    .horariosTopo {top: 70px;}
		
		  footer .logo {top:0;}
		    footer .logo img {
			width: 314px;}
			  footer .logo {
    position: absolute;
    width: 241px;
    margin:-2rem 0 0 4rem; }
	
	    .frase {
width: 186px;
  height: 208px;			
      margin:
3rem 13rem 6rem 0;
      float: right;
      font-size: 1rem;
    }
	
	footer q {
  quotes: none;
  margin-bottom: -0.5rem;
  display: block;
  right: 0rem;
  position: relative;
}

} /* FIM 1440px */




@media (min-width: 1536px) {
	
	 header .logo img {
    width: 299px !important;
  }
  
   .header .logo {margin: -10rem 0 0 0 !important; }

    .menuPrincipal-links ul {
        right: 32.5rem;
      top: 0;
    }
	 .logo img {left: -2rem;}

  .tel {
      left: 53%;
      top: 4.5rem;
    }
	
	 header .tel a {font-size: 1.2rem;}

 .iconesTopo {
    top: 1rem;
    left: 1271px;
  }
	    .img-poligonal {
      width: 600px; margin-right: 10rem;
    }
	    #sobre-mim .conteudo {
      margin-top: 6.9rem;
    }
	
	    #sobre-mim {
      height: 722px;
    }
	address a,
	address,
	  main p {font-size: 1.2rem;}
	  
 
  	  .limite-titulo h1 {
      font-size: 1.7rem;
    }
	
	    hr.horizontal {
      left: 228px;
    }
	
  #sobre-mim .conteudo {
      margin-top: 0;
    }

 #atendimentos {
	 padding-top: 110px;
      padding-bottom: 110px;
 }
	  .depoimentos hr.horizontal {
    left: 268px;
  }
  
.quote {
    font-size: 1.3rem;
    height: 243px;
  }
  .name {font-size: 1.7rem;}
  
  .designation {font-size: 1.2rem;}
  
  .arrow-button,
  .arrow-button svg,
    .arrow-buttons {
    padding-top: 0;
    top: 0;
    position: relative;
	width: 2.4rem !important;
  height: 2.4rem !important;
  }
  
     .menuPrincipal-links a {
      font-size: 1.2rem;
    }
	
	   #sobre-mim p {font-size: 1.2rem;}
	   
	   #atendimentos .card figcaption p {
  margin:
1rem 0 2rem 0;
  font-size: 1.2rem;
}

    .coluna-2 iframe {
      left: 0rem;
    }
	
	   .coluna-2 iframe {
      width: 600px;
	   height: 400px;}
	   

    .coluna-1 {
      position: relative;
      margin: 1rem 0 2rem 4rem;
    }
	
	#atendimentos .card  {border-radius: 32px;}
	   

} /* FIM 1536px */


@media (min-width: 1600px) {
	
	    body {
      background-position: left 70%, right 40%, left 20%;
      background-size: 185px 173px, 407px 629px, 421px 483px;
    }

    .header-container {
        height: 153px;
    }
	
	    header .logo img {
      width: 334px !important;
	  margin: 0.5rem 0 0 0;
    }
	   .header .logo {
      margin:
-9.7rem 0 0 -3rem !important;
    }
  
    .menuPrincipal-links {
        height: 155px;
    }
    .menuPrincipal-links::before {
        height: 155px;
    }
    .menuPrincipal-links ul {
      right: 35.5rem;
      top: -0.5rem !important;
    }
    .menuPrincipal-links a {
        font-size: 1.2rem;
        padding: 10px 0;
		height: 45px;
    }

  .tel {
    left: 54%;
    top: 6.1rem;
  }

    .iconesTopo {
        top: 4.6rem;
        right: -82px;
    }
	
    .horariosTopo p {
        font-size: 1.2rem;
        margin-top: -0.8rem;
    }

    .tel a {font-size: 1.2rem;}

    .iconesTopo img {
        width: 27px;
    }

  .iconesTopo {
    top: 1rem;
    left: 1288px;
  }

    .heroConteudo p {
        color: #333;
        font-size: 1.6rem;
    }


.limite-titulo {left:38%;}

  main p {font-size: 1.3rem;}
  
  	  .limite-titulo h1 {
      font-size: 1.7rem;
    }
	
	    hr.horizontal {
      left: 228px;
    }
	
	    #sobre-mim .conteudo {
      margin-top: 0.5rem;
    }
	
	    #atendimentos .card-container {
      width: 1000px;
    }
	
	   #atendimentos .limite-titulo h1 {
      font-size: 1.7rem;
    }
	
	  .horariosTopo {top: 83px;}		
	

}  /* FIM 1600px */


@media (min-width: 1920px) {

.header-container {height: 190px;}
.header .logo {margin: -8.7rem 0 0 -11rem !important;}
header .logo img {width: 380px !important; }

.menuPrincipal-links {height: 194px; left: 368px;}
.menuPrincipal-links::before {
        height: 193px;
        left: -177px;
        width: 180px;
}
.menuPrincipal-links a {font-size: 1.5rem;}
.menuPrincipal-links ul {
		right: 43.5rem;
		top: 0.5rem !important;
		width: 650px;
}
	
  .horariosTopo {
    left: 381px;
    top: 50px;
  }
.horariosTopo p {
        top: 1.3rem;
        font-size: 1.5rem;
        left: 32px;
        width: 300px;
}

.tel {
	width: 630px;
      top: 4.1rem;
      left:47%;
}
    header .tel a {
      font-size: 1.5rem;
      left: 17.5rem;
      top: 3.5rem;
    }

  .iconesTopo {
    top: 1rem;
    left: 1420px;
  }
    .iconesTopo img {
        width: 37px;
    }

    .heroConteudo {
        width: 430px;
        height: 465px;
    }
    .heroConteudo p {
        font-size: 2rem;
    }
    .hero p span {
        top: -39px;
    }

    .cta-button {
        bottom: 124px;
        width: 260px;
        font-size: 2rem;
        line-height: 3.6rem;
    }
	
	#sobre .limite-titulo {margin: 4rem 0 6rem 0;}
	
	  .limite-titulo h1 {
      font-size: 1.7rem;
    }
	
	    hr.horizontal {
      left: 228px;
    }
	
	main p {
      font-size: 1.4rem;
    }
	
  #sobre-mim {
    height: 700px;
    top: -2rem;
    margin-bottom: 4rem;
  }

	
	
	   #sobre-mim p {
      margin-bottom: 3rem;
	  font-size: 1.4rem;
    }
	
	    #sobre-mim .conteudo {
      margin-top: 0;
    }
	
	   hr.horizontal {
      left: 247px;
    }
	
	#atendimentos .limite-titulo h1,
	    .limite-titulo h1 {
      font-size: 1.9rem;
    }
	
 #atendimentos {
    background-position:
95% 10%, 12% bottom;
    background-size: 332px 300px, 474px 724px;
  }
  
    .depoimentos hr.horizontal {
    left: 297px;
  }

  .depoimentos .limite-titulo {
    margin:
9rem 0 10rem 0;
  }
  
  footer {
	  height: 400px;
  }
  
    footer .tel a {
      left: 0;
      position: relative;
      top: -0.2rem;
      font-size: 1.2rem;
    }
	
	 .coluna-1 {
      position: relative;
      margin: 1rem 0 2rem -1rem;
    }
	
	 .frase { margin: 3rem -2rem 2rem 0; }
	 
	#sobre-mim .conteudo {width: 62%;}
	

}