/* 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: #444444;
    /* Default color used for the majority of the text content across the entire website */
    --heading-color: #da0080;
    /* Color for headings, subheadings and title throughout the website */
    --accent-color: #da0080;
    /* 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: #da0080;
    /* The default color of the main navmenu links */
    --nav-hover-color: #da0080;
    /* 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: #da0080;
    /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #da0080;
    /* 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: #f6fafd;
    --surface-color: #ffffff;
}

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

.accent-background {
    --background-color: #2487ce;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #469fdf;
    --contrast-color: #ffffff;
}

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



/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    font-family: var(--default-font);
    background-image: url('../../assets/img/hero-bg-abstract.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

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);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

/* 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 fora do fluxo (fixo no topo) */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background-color: #da0080;
    color: #fff;
    height: 200px;
    transition: height 0.35s ease, background-color 0.35s ease;
    will-change: height;
    background-image: url('../../../theme/assets/img/bg-header-site.jpg');
    background-position: top center;

}

/* spacer ocupa o mesmo espaço do header original para evitar jump */
.header-spacer {
    height: 200px;
}

@media (max-width: 767.98px) {
    .header-spacer {
        height: 180px;
    }
}

/* inner para alinhar conteúdo e permitir controlar tamanho interno */
.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    transition: padding 0.35s ease;
}

/* logo e itens com transição suave (não usar scale) */
.header img {
    max-height: 120px;
    transition: max-height 0.35s ease;
    display: block;
}


/* estado "encolhido" */
.header.header-scrolled {
    height: 100px;
}

/* reduzir padding interior e logo ao encolher */
.header.header-scrolled .header-inner {
    padding: 0px 0px;
}

.header.header-scrolled img {
    max-height: 70px;
}

/* pequenas otimizações para evitar flicker */
.header,
.header-inner,
.header img {
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.header .logo img {
    margin-right: 0px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: #ffffff;
    background-color: #da0080;
    font-size: 16px;
    line-height: 28px;
    padding: 4px 25px;
    margin: 0 40px 0 50px;
    border-radius: 60px;
    border: 1px solid #ffffff;
    transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: #da0080;
    background: #f2df1c;
    border: 1px solid #da0080;
}

.header .btn-getstarted i {
    font-size: 24px;
    line-height: 28px;
}

@media (max-width: 968px) {
    .header .logo {
        margin: 0px;
        margin-left: 0px;
    }

    .header .social {
        visibility: hidden;
        width: 0px;
        height: 0px;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin: 0 0 0 0;
        padding: 6px 15px;
        margin-right: 10px;
        zoom: 90%;
    }

    .header .navmenu {
        order: 3;
    }
}

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


/* Social Links */
.header .btn-social,
.header .btn-social:focus {
    color: #da0080;
    background: #ffffff;
    font-size: 16px;
    padding: 7px 10px;
    margin: 0 0 0 10px;
    border-radius: 12px;
    transition: 0.3s;
}

.header .btn-social:hover,
.header .btn-social:focus:hover {
    color: #da0080;
    background: #f2df1c;
}

.header .btn-social,
.header .btn-social:focus i {
    padding-top: 7px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 968px) {



    .navmenu {
        padding: 0;
    }

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

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #ffffff;
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;

        white-space: nowrap;
        transition: 0.3s;
    }

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

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

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #f2df1c;
    }

    .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;
    }
}

/* Navmenu - Mobile */
@media (max-width: 968px) {
    .mobile-nav-toggle {
        color: #fff;
        font-size: 28px;
        line-height: 0;
        cursor: pointer;
        transition: color 0.3s;
        width: 98%;
    }

    .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);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        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);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        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 .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
        width: 95%;
    }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #ffffff;
    background-color: #da0080;
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
    background-image: url('../../../theme/assets/img/bg-header-site.jpg');
    background-position: top center;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 78px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
    color: #ffffff;
    line-height: 24px;
}

.footer a {
    transition: 0.3s;
    color: #ffffff;
}

.credits-footer {
    font-size: 14px;
    color: #ffffff;
    text-align: right;
}

@media (max-width: 767.98px) {
    .footer a {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .credits-footer {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .footer .footer-about .logo img {
        margin: 0 auto;
    }

}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    transition: 0.3s;
    color: #ffffff;
}

.footer .social-links a:hover {
    color: #f2df1c;
}

.footer .social-links,
.footer .social-links:focus i {
    padding-top: 7px;
}


.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: #ffffff;
}

.footer .footer-links {
    margin-bottom: 30px;
    color: #ffffff;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1;
    color: #ffffff;
}

.footer .footer-links ul a:hover {
    color: #f2df1c;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .btn-getstarted,
.footer .btn-getstarted:focus {
    color: #ffffff;
    background-color: #da0080;
    font-size: 16px;
    padding: 4px 25px;
    border-radius: 60px;
    border: 1px solid #ffffff;
    transition: 0.3s;
}

.footer .btn-getstarted:hover,
.footer .btn-getstarted:focus:hover {
    color: #da0080;
    background: #f2df1c;
    border: 1px solid #da0080;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

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

.footer .credits {
    margin-top: 4px;
    font-size: 13px;
}

.footer .credits a {
    color: color-mix(in srgb, var(--contrast-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: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
    border: 1px solid #ffffff;
}

.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;
}

#footer .footer-menu {}

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

    .footer {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about img {
        margin: 0 auto;
    }

    #footer .footer-menu {
        padding-left: 20px;
    }

    #footer .footer-menu ul li {
        justify-content: center;
    }

    #footer .social-links {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    padding: 60px 10px 5px 10px;
    text-align: center;
    position: relative;
}

@media (max-width: 992px) {
    .page-title {
        padding: 40px 10px 30px 10px;
    }
}

.page-title .breadcrumb {
    text-align: center;
}

.page-title h1 {
    font-size: 28px;
    text-align: center;
    color: #383330;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}


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

.page-title .breadcrumbs ol a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.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: 20px 0;
    scroll-margin-top: 100px;
    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: 15px;
    text-transform: uppercase;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0 60px 0;
    overflow: hidden;
}

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

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

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

.hero h1 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    line-height: 72px;
}

.hero p {
    margin: 10px 0 0 0;
    font-size: 22px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero p {
        font-size: 18px;
        line-height: 24px;
    }
}

.hero .btn-get-started {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 50px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 30px;
}

.hero .btn-get-started:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .icon-box {
    background-color: var(--surface-color);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    height: 100%;
    width: 100%;
}

.hero .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.hero .icon-box .title a {
    color: var(--heading-color);
    transition: 0.3s;
}

.hero .icon-box .description {
    font-size: 15px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: var(--accent-color);
}

@media (min-width: 640px) {
    .hero .icon-box:hover {
        transform: scale(1.08);
    }

    .hero .icon-box:hover .title a {
        color: var(--accent-color);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
    list-style: none;
    padding: 0;
}

.about ul li {
    padding-bottom: 5px;
    display: flex;
    align-items: center;
}

.about ul i {
    font-size: 20px;
    padding-right: 4px;
    color: var(--accent-color);
}

.about .read-more {
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    padding: 10px 28px;
    border-radius: 5px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.about .read-more i {
    font-size: 18px;
    margin-left: 5px;
    line-height: 0;
    transition: 0.3s;
}

.about .read-more:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
    transform: translate(5px, 0);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 30px 0;
}

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

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

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

/*--------------------------------------------------------------
# About Alt Section
--------------------------------------------------------------*/
.about-alt .content h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.about-alt .content ul {
    list-style: none;
    padding: 0;
}

.about-alt .content ul li {
    padding: 10px 0 0 0;
    display: flex;
}

.about-alt .content ul i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    line-height: 1.2;
    font-size: 1.25rem;
}

.about-alt .content p:last-child {
    margin-bottom: 0;
}

.about-alt .pulsating-play-btn {
    position: absolute;
    left: calc(50% - 47px);
    top: calc(50% - 47px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
    padding: 20px 0;
}

.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.clients .client-logo img {
    padding: 20px 40px;
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}

.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .clients .client-logo img {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
    overflow: hidden;
}

.testimonials .testimonial-item {
    box-sizing: content-box;
    min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: -40px 0 0 40px;
    position: relative;
    z-index: 2;
    border: 6px solid var(--background-color);
}

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

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

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 50%);
    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 15px 0 15px;
    padding: 20px 20px 60px 20px;
    background: color-mix(in srgb, var(--default-color), transparent 97%);
    position: relative;
    border-radius: 6px;
    position: relative;
    z-index: 1;
}

.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: var(--background-color);
    opacity: 1;
    border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: 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);
    height: 100%;
    padding: 60px 30px;
    text-align: center;
    transition: 0.3s;
    border-radius: 5px;
}

.services .service-item .icon {
    margin: 0 auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: ease-in-out 0.3s;
    position: relative;
}

.services .service-item .icon i {
    font-size: 36px;
    transition: 0.5s;
    position: relative;
}

.services .service-item .icon svg {
    position: absolute;
    top: 0;
    left: 0;
}

.services .service-item .icon svg path {
    transition: 0.5s;
    fill: color-mix(in srgb, var(--default-color), transparent 95%);
}

.services .service-item h3 {
    font-weight: 700;
    margin: 10px 0 15px 0;
    font-size: 22px;
}

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

.services .service-item:hover {
    box-shadow: 0px 5px 35px 0px rgba(0, 0, 0, 0.1);
}

.services .service-item.item-cyan i {
    color: #0dcaf0;
}

.services .service-item.item-cyan:hover .icon i {
    color: #fff;
}

.services .service-item.item-cyan:hover .icon path {
    fill: #0dcaf0;
}

.services .service-item.item-orange i {
    color: #fd7e14;
}

.services .service-item.item-orange:hover .icon i {
    color: #fff;
}

.services .service-item.item-orange:hover .icon path {
    fill: #fd7e14;
}

.services .service-item.item-teal i {
    color: #20c997;
}

.services .service-item.item-teal:hover .icon i {
    color: #fff;
}

.services .service-item.item-teal:hover .icon path {
    fill: #20c997;
}

.services .service-item.item-red i {
    color: #df1529;
}

.services .service-item.item-red:hover .icon i {
    color: #fff;
}

.services .service-item.item-red:hover .icon path {
    fill: #df1529;
}

.services .service-item.item-indigo i {
    color: #6610f2;
}

.services .service-item.item-indigo:hover .icon i {
    color: #fff;
}

.services .service-item.item-indigo:hover .icon path {
    fill: #6610f2;
}

.services .service-item.item-pink i {
    color: #f3268c;
}

.services .service-item.item-pink:hover .icon i {
    color: #fff;
}

.services .service-item.item-pink:hover .icon path {
    fill: #f3268c;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 80px 0;
    position: relative;
    clip-path: inset(0);
}

.call-to-action h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--default-color);
}

.call-to-action p {
    color: var(--default-color);
}

.call-to-action .cta-btn {
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid var(--contrast-color);
    color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
    background: var(--surface-color);
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# 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: 8px 20px 10px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-family: var(--heading-font);
}

.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 0 10px 0;
    }
}

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

.portfolio .portfolio-item .portfolio-info {
    opacity: 0;
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -100%;
    z-index: 3;
    transition: all ease-in-out 0.5s;
    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: 0;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
    background-color: var(--surface-color);
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.team .team-member .member-img {
    position: relative;
    overflow: hidden;
}

.team .team-member .social {
    position: absolute;
    left: 0;
    bottom: 30px;
    right: 0;
    opacity: 0;
    transition: ease-in-out 0.3s;
    text-align: center;
}

.team .team-member .social a {
    background: color-mix(in srgb, var(--contrast-color), transparent 25%);
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0 3px;
    border-radius: 4px;
    width: 36px;
    height: 36px;
    transition: ease-in-out 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.team .team-member .social a:hover {
    color: var(--contrast-color);
    background: var(--accent-color);
}

.team .team-member .social i {
    font-size: 18px;
    line-height: 0;
}

.team .team-member .member-info {
    padding: 25px 15px;
}

.team .team-member .member-info h4 {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 18px;
}

.team .team-member .member-info span {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .team-member:hover .social {
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
    background-color: var(--surface-color);
    padding: 60px 40px;
    box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
}

.pricing h3 {
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 20px;
}

.pricing h4 {
    font-size: 48px;
    color: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 400;
}

.pricing h4 sup {
    font-size: 28px;
}

.pricing h4 span {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    font-size: 18px;
}

.pricing ul {
    padding: 20px 0;
    list-style: none;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: left;
    line-height: 20px;
}

.pricing ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.pricing ul i {
    color: #059652;
    font-size: 24px;
    padding-right: 3px;
}

.pricing ul .na {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
    text-decoration: line-through;
}

.pricing .buy-btn {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    background-color: var(--background-color);
    display: inline-block;
    padding: 8px 35px 10px 35px;
    border-radius: 4px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
    transition: none;
    font-size: 16px;
    font-weight: 500;
    font-family: var(--heading-font);
    transition: 0.3s;
}

.pricing .buy-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.pricing .featured {
    z-index: 10;
}

.pricing .featured .pricing-item {
    background: var(--accent-color);
}

@media (min-width: 992px) {
    .pricing .featured .pricing-item {
        transform: scale(1.02, 1.1);
    }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
    color: var(--contrast-color);
}

.pricing .featured .buy-btn {
    background: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
    background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    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: center;
}

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

.faq .faq-container .faq-item h3:hover {}

.faq .faq-container .faq-item .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

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

.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 {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #444444;
}

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

.faq .faq-container .faq-active .faq-content {
    max-height: 2000px;
    /* valor alto o suficiente */
    opacity: 1;
    visibility: visible;
    padding-top: 10px;
}

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

.faq-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.div-destaque-sac {
    background-color: var(--accent-color);
    border-radius: 50px;
    padding: 10px 20px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    color: #ffffff;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
}

.contact .info-item+.info-item {
    margin-top: 15px;
    /* Ajustei de 0 para um valor visível, mude como desejar */
}

.contact .info-item i {
    color: var(--accent-color);
    font-size: 36px;
    margin-right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    flex-shrink: 0;
    /* Impede que o ícone achate se o texto for longo */
}

.contact .info-item p {
    padding: 0;
    margin: 0;
    font-size: 18px;
    line-height: 19px;
    font-weight: 700;
}

.contact .info-item p a {
    color: #444444;
}

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

.contact .php-email-form {
    height: 100%;
}

.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: 4px;
}

.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;
    font-size: 18px;
}

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

.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: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: #444444;
    font-size: 18px;
}

.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;
    font-size: 18px;
}

.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: 18px;
    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 */
}











.barlow-condensed-thin {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.barlow-condensed-extralight {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.barlow-condensed-light {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.barlow-condensed-regular {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.barlow-condensed-medium {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.barlow-condensed-semibold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.barlow-condensed-bold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.barlow-condensed-extrabold {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.barlow-condensed-black {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.barlow-condensed-thin-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.barlow-condensed-extralight-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.barlow-condensed-light-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.barlow-condensed-regular-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.barlow-condensed-medium-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.barlow-condensed-semibold-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.barlow-condensed-bold-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.barlow-condensed-extrabold-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.barlow-condensed-black-italic {
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 900;
    font-style: italic;
}









/* :: Capa Destaque Area CSS */
#highlights {
    padding: 40px 80px;
}

.single-blog-post {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-radius: 50px;
}

.single-blog-post::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 2;
}

.single-blog-post.style-1 .blog-thumbnail {
    position: relative;
    z-index: 1;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-blog-post.style-1 .blog-thumbnail img {
    width: 100%;
    -webkit-transition-duration: 800ms;
    transition-duration: 800ms;
}

.single-blog-post.style-1 .blog-thumbnail.bg-overlay::after {
    z-index: 5;
}

.single-blog-post.style-1 .blog-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    z-index: 50;
}

.single-blog-post.style-1 .blog-content .post-date {
    font-size: 14px;
    line-height: 14px;
    color: #ffffff;
    font-weight: 500;
    display: block;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

.single-blog-post.style-1 .blog-content .post-title {
    font-weight: 500;
    font-size: 21px;
    line-height: 23px;
    margin-bottom: 0;
    color: #ffffff;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .single-blog-post.style-1 .blog-content .post-title {
        font-size: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .single-blog-post.style-1 .blog-content .post-title {
        font-size: 18px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
    .single-blog-post.style-1 .blog-content .post-title {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .single-blog-post.style-1 .blog-content .post-title {
        font-size: 18px;
    }
}

.single-blog-post.style-1 .blog-content .post-title:hover,
.single-blog-post.style-1 .blog-content .post-title:focus {
    color: orange;
}

.single-blog-post.style-1:hover .blog-thumbnail img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.single-blog-post .btn-pink,
.single-blog-post .btn-pink:focus {
    color: #ffffff;
    background-color: #da0080;
    font-size: 16px;
    padding: 5px 25px;
    border-radius: 60px;
    border: 1px solid #da0080;
    transition: 0.3s;
    position: absolute;
    bottom: 10px;
    right: 0%;
    transform: translateX(-25%);
}

.single-blog-post .btn-pink:hover,
.single-blog-post .btn-pink:focus:hover {
    background: rgba(218, 0, 128, 0.5);
}




/*--------------------------------------------------------------
# product Home
--------------------------------------------------------------*/
.products {
    padding: 40px;
}

.products h1 {
    font-size: 28px;
    text-align: center;
    color: #383330;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.linha-imagem {
    display: block;
    margin: 10px auto;
    width: 300px;
    /* height: 2px; */
}



/*--------------------------------------------------------------
# new Home
--------------------------------------------------------------*/
.news {
    padding: 40px;
}

.news h1 {
    font-size: 28px;
    text-align: center;
    color: #383330;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 700;
    letter-spacing: 0.09em;
}

.linha-imagem {
    display: block;
    margin: 10px auto;
    width: 300px;
}


.news .btn-pink-out,
.news .btn-pink-out:focus {
    color: #da0080;
    background-color: none;
    font-size: 16px;
    padding: 5px 25px;
    border-radius: 60px;
    border: 1px solid #da0080;
    transition: 0.3s;
    text-align: center;
    width: 150px;
    margin: 0 auto;
}

.news .btn-pink-out:hover,
.news .btn-pink-out:focus:hover {
    color: #fff;
    background: #da0080;
}


.trabalhe-conosco-details .btn-pink-out,
.trabalhe-conosco-details .btn-pink-out:focus {
    color: #da0080;
    background-color: none;
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 60px;
    border: 1px solid #da0080;
    transition: 0.3s;
    text-align: center;
    margin: 0 auto;
}

.trabalhe-conosco-details .btn-pink-out:hover,
.trabalhe-conosco-details .btn-pink-out:focus:hover {
    color: #fff;
    background: #da0080;
}

.div-destaque-sac .btn-pink-out,
.div-destaque-sac .btn-pink-out:focus {
    color: #ffffff;
    background-color: none;
    font-size: 18px;
    padding: 10px 30px;
    border-radius: 60px;
    border: 1px solid #da0080;
    transition: 0.3s;
    text-align: center;
    margin: 0 auto;
}

.div-destaque-sac .btn-pink-out:hover,
.div-destaque-sac .btn-pink-out:focus:hover {
    color: #efefef;
}


/*--------------------------------------------------------------
# acaizinho
--------------------------------------------------------------*/
.acaizinho {
    background-image: url('../../../theme/assets/img/bg-acaizinho-1.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    /* min-height: 100vh; */
    margin: 0;
}

.acaizinho .breadcrumb {
    padding: 40px;
    background-color: #fff;
}

.acaizinho .breadcrumb .logo {
    width: 200px;
}

.acaizinho .capa {
    padding: 40px;
}

.acaizinho .boxes {
    padding: 40px;
}

.acaizinho .box {
    margin-bottom: 40px;
}

/* 1. Adiciona a transição na imagem para que o zoom seja suave */
.acaizinho .box a img {
    transition: transform 0.3s ease-in-out;
    /* 0.3 segundos, com aceleração e desaceleração */
    /* Garante que a transição funcione corretamente */
    transform-origin: center center;
}

/* 2. Aplica o zoom quando o mouse passa sobre o link */
.acaizinho .box a:hover img {
    /* Aumenta a imagem em 10% (zoom de 110%) */
    transform: scale(1.1);
}

.acaizinho .logos-produtos {
    padding: 0px 30px 30px 30px;
    text-align: center;
}

.acaizinho .produtos {
    padding: 20px 20px;
}

.acaizinho .logo-acaizinho-bg {
    z-index: 0;
    margin-top: 20px
}

.acaizinho .produtos-acaizinho {
    z-index: 1;
    position: relative;
    top: -30px;
}

.acaizinho .produtos-acaizinho img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/* Resposive */
@media (max-width: 1252px) {
    .header {
        zoom: 90%;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin: 0 10px 0 40px;
    }

}

@media (max-width: 1199px) {

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin: 0 10px 0 20px;
    }
}

@media (max-width: 1099px) {
    .header {
        zoom: 80%;
    }

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        margin: 0 10px 0 20px;
    }
}

@media (max-width: 991px) {
    .social {
        visibility: hidden;
        height: 0px;
    }
}

@media (max-width: 968px) {
    .header {
        zoom: 100%;
    }
}

@media screen and (max-width: 768px) {

    .header {
        zoom: 90%;
    }

    .header img {
        max-height: 100px;
    }

    .news {
        padding: 10px;
    }


    .acaizinho .logo-acaizinho-bg {
        z-index: 0;
        margin-top: 30px
    }

    .acaizinho .produtos-acaizinho {
        top: 0px;
    }

    .acaizinho .logos-produtos {
        padding: 20px 0;
    }

}

a.link-branco {
    color: #fff;
    font-weight: 700;
}

a.link-branco:hover {
    text-decoration: none;
    color: #f3f3f3;
}








.single-block-post-left {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-bottom-right-radius: 50px;
    border-top-right-radius: 50px;
}

.single-block-post-right {
    position: relative;
    z-index: 1;
    overflow: hidden;
    -webkit-transition-duration: 500ms;
    transition-duration: 500ms;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
}





/*Declaração inicial*/

.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 10px;
    padding-left: 10px;
}

/*Medias queries */

.col-xs-15 {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

.logos-produtos img {
    transition: transform 0.3s ease;
    /* Suaviza a animação */
    cursor: pointer;
    /* Muda o cursor para indicar que é interativo */
}

/* Estado ao passar o mouse (hover) */
.logos-produtos img:hover {
    transform: scale(1.1);
    /* Aumenta a imagem em 10% */
}

.produtos-acaizinho img {
    transition: transform 0.3s ease;
    /* Suaviza a animação */
    cursor: pointer;
    /* Muda o cursor para indicar que é interativo */
}

/* Estado ao passar o mouse (hover) */
.produtos-acaizinho img:hover {
    transform: scale(1.1);
    /* Aumenta a imagem em 10% */
}

#logo-preview {
    transition: opacity .3s;
}

#logo-preview.fade {
    opacity: 0;
}

.logo-item {
    height: 120px;
    width: auto;
    object-fit: contain;
    /* garante que a imagem inteira apareça */
    transition: transform .3s ease;
    text-align: center;
}

.produto-item {
    height: 300px;
    width: auto;
    object-fit: contain;
    /* garante que a imagem inteira apareça */
    transition: transform .3s ease;
    text-align: center;
}

.produto-item {
    transition: transform .3s ease;
}

.produto-item.zoom {
    transform: scale(1.15);
    z-index: 10;
}

.logo-item {
    transition: transform .3s ease;
}

.logo-item.zoom {
    transform: scale(1.2);
}


.produtos-acaizinho-home img {
    transition: transform 0.3s ease;
    cursor: pointer;
    padding: 10px;
    border-bottom: 7px solid #ababab;
}

/* Estado ao passar o mouse (hover) */
.produtos-acaizinho-home img:hover {
    transform: scale(1.1);
    border-bottom: 7px solid #da0080;
}





.banneHome .boxes {
    padding: 0;
    margin: 0;
}

.banneHome .box {
    margin-bottom: 40px;
}

/* Impede que a imagem ultrapasse o container quando der zoom */
.banneHome .box a {
    display: block;
    overflow: hidden;
}

.banneHome .box a img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.banneHome .box a:hover img {
    transform: scale(1.1);
}



.productLines .boxes {
    padding: 0px;
}

.productLines .box {
    margin-bottom: 40px;
}

@media (max-width: 968px) {

    .productLines .box {
        margin-bottom: 0px;
    }
}

.productLines .box a img {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.productLines .box a:hover img {
    transform: scale(1.1);
}




.aboutBox .boxes {
    padding: 0px;
}

.aboutBox .box {
    margin-bottom: 40px;
}

@media (max-width: 968px) {

    .aboutBox .box {
        margin-bottom: 0px;
    }
}

.aboutBox .box a img {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.aboutBox .box a:hover img {
    transform: scale(1.1);
}




.sacBox .boxes {
    padding: 0px;
}

.sacBox .box {
    margin-bottom: 20px;
}

.sacBox h1 {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

@media (max-width: 968px) {
    .sacBox .box {
        margin-bottom: 0px;
    }
}

.sacBox .box a img {
    transition: transform 0.3s ease-in-out;
    transform-origin: center center;
}

.sacBox .box a:hover img {
    transform: scale(1.1);
}







.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
}

.custom-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.custom-modal-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

.custom-modal-close:hover {
    color: #ccc;
}


/* Ajustes Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    overflow-x: clip;
}

.container-top {
    padding: 0 40px;
}

@media (max-width: 968px) {

    .container-top {
        padding: 0 20px;
    }

    .mobile-nav-toggle {
        width: auto;
        display: inline-flex;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        inset: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .navmenu ul {
        position: absolute;
        top: 120px;
        left: 16px;
        right: 16px;
        bottom: 16px;

        width: auto;
        max-width: calc(100% - 32px);
        box-sizing: border-box;
        overflow-x: hidden;
    }
}


/* Product Single */
.portfolio-details h1,
h5,
p {
    color: #ffffff
}

.portfolio-details h1 {
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 10px;
    position: relative;
}

.portfolio-details h4 {
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
}

.portfolio-details h5 {
    font-size: 16px;
    line-height: 24px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
}

.thumb:hover,
.thumb.active {
    border-color: #0d6efd;
}

#thumbCarousel {
    padding: 0 30px;
}

.thumb-control {
    width: 15px;
}

.productSizes {
    background-color: #fff;
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: .3s;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
}

.productSizes:hover,
.productSizes.active {
    border-color: #0d6efd;
}

.sizes-wrapper {
    display: flex;
    /* Transforma o wrapper em um container flex */
    justify-content: center;
    /* Centraliza os itens flex ao longo do eixo principal (horizontal) */
    flex-wrap: wrap;
    /* Opcional: Para que os itens quebrem a linha se não couberem */
}


/* --- Mantém seu estilo original para Desktop --- */
table {
    width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #444444;
    border-radius: 8px;
    overflow: hidden;
    /* Garante que o border-radius funcione */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

th,
td {
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    text-align: left;
}

th {
    background-color: rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    font-size: 0.9rem;
}

tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- RESPONSIVIDADE (Mobile) --- */
@media screen and (max-width: 768px) {

    /* Esconde o cabeçalho real da tabela */
    thead {
        display: none;
    }

    /* Faz cada linha (tr) virar um "card" */
    table,
    tbody,
    tr,
    td {
        display: block;
        width: 100%;
    }

    tr {
        margin-bottom: 15px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Cria o rótulo (label) usando o atributo data-label do HTML */
    td::before {
        content: attr(data-label);
        position: absolute;
        left: 15px;
        width: 45%;
        font-weight: bold;
        text-align: left;
        text-transform: uppercase;
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.6);
    }

    td:last-child {
        border-bottom: 0;
    }
}

@media screen and (max-width: 768px) {
    td {
        display: flex;
        /* Melhora o alinhamento vertical */
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding: 12px 15px;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    td::before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.5);
        /* Garante que o rótulo não empurre o conteúdo para fora */
        padding-right: 10px;
        text-align: left;
    }
}


/* Carrossel Mobile Produto */
.d-md-none {
    /* Padding reduzido, pois as imagens têm espaço interno */
    padding: 60px;
}

/* Contêiner de link para garantir centralização */
.mobile-product-link {
    width: 100%;
}

/* Estilo para a imagem do logo */
.logo-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.logo-item-mobile {
    max-height: 50px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Estilo para a imagem do produto */
.product-photo-container {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 40px;
}

.produto-item-mobile {
    max-width: 100%;
    /* Ocupa 100% do seu contêiner pai (product-photo-container) */
    height: auto;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .acaizinho {
        background-attachment: scroll;
    }
}


.about-details p {
    color: var(--default-color);
    font-family: var(--heading-font);
}


.about-info h2 {
    font-weight: 700;
}


.trabalhe-conosco-details h3 {
    font-weight: 700;
}

@media (max-width: 1400px) {
    .sacContact {
        zoom: 80%
    }
}

@media (max-width: 1200px) {
    .sacContact {
        zoom: 70%
    }
}

@media (max-width: 992) {
    .sacContact {
        zoom: 100%
    }
}