/*
Theme Name: Kress Theme
Description: Modern WordPress theme with React islands, ACF integration, and custom REST API endpoints. Built with Vite, TailwindCSS, and optimized for performance and SEO.
Version: 1.0.0
Author: Kress Development
Text Domain: kress-theme
*/

/* Import Mundial Fonts */
@import url('https://use.typekit.net/drn2xei.css?ver=1.0.1');
@import url('https://fonts.cdnfonts.com/css/antagon');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom variables */
:root {
  --gradient-radial-white: transparent 0%, transparent 50%;
  --gradient-radial-white-hover: rgb(255 255 255 / 52%) 0%, transparent 60%;
}

/* Para navegadores baseados em WebKit (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
    width: 10px;              /* largura do scrollbar vertical */
    height: 10px;             /* altura do scrollbar horizontal */
    background: transparent;
  }
  
  ::-webkit-scrollbar-track {
    background: transparent;  /* trilho transparente */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #125e9496; /* cor do "scroll" */
    border-radius: 8px;          /* bordas arredondadas */
    border: 2px solid transparent; /* dá mais contraste */
    background-clip: content-box;
  }
  
  /* Para Firefox */
  * {
    scrollbar-width: thin;                     /* deixa mais fino */
    scrollbar-color: #125e9496 transparent;    /* cor do thumb e do trilho */
  }
  

:root {
    --font-mundial: 'mundial', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --color-menu: #4c4c4c;
    --color-title: #6888af;
    --color-title-dark: #125e94;
    --color-footer-bg: #125e94;
}

body {
    font-family: var(--font-mundial);
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    font-weight: 400;
    max-width: 100vw;
    overflow-x: hidden;
}

/* Care Dots Styling */
.care-dot {
    opacity: 0.75;
    transform: scale(1);
    transition: all 0.3s ease;
}

.care-dot.care-dot-active {
    opacity: 1;
    transform: scale(1.2);
    animation: dotPulse 2s ease-in-out infinite;
}

.care-dot.care-dot-active > div:first-child {
    transform: scale(1.3);
    animation: innerDotPulse 2s ease-in-out infinite;
}

.care-dot > div:first-child {
    border: 1px solid white;
    transition: transform 0.3s ease;
}

/* Pulsing animation for active dots */
@keyframes dotPulse {
    0%, 100% {
        transform: scale(1.2);
    }
    50% {
        transform: scale(1.35);
    }
}

@keyframes innerDotPulse {
    0%, 100% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.5);
    }
}

/* Tooltip should not inherit opacity and only show on hover */
.care-dot-tooltip {
    opacity: 0 !important;
}

.care-dot:hover .care-dot-tooltip {
    opacity: 1 !important;
}

section{
    margin: -20px -100px 0;
}
@media (max-width: 768px) {
    section{
        margin: -20px 0 0;
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.site{
    width: 100vw;
    max-width: 100vw;
}

/* Header */
/* .site-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    width:100vw;
    max-width: 100vw;
} */

/* Adjust header position when WordPress admin bar is visible */
.admin-bar .site-header {
    top: 32px;
}

/* For mobile admin bar */
@media screen and (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

.site-logo {
    outline: none;
}

.site-branding a:focus {
    outline: none;
}

.site-branding a:focus .site-logo {
    outline: none;
}

.container{
    max-width: 1400px;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

/* Navigation */
.main-navigation .menu-item {
    position: relative;
}

.main-navigation .menu-item.menu-item-has-children > a::after {
    content: '';
    display: inline-flex;
    width: 12px;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='14px' height='8px'%3E%3Cpath fill-rule='evenodd' fill='rgb(115, 115, 115)' d='M13.929,0.481 L6.1000,7.411 L0.070,0.481 L13.929,0.481 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.main-navigation .menu-item.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Submenu Styles */
.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 150px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 0;
    margin: 8px 0 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1000;
}

.main-navigation .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.main-navigation .sub-menu .menu-item {
    display: block;
    padding: 0;
    margin: 0;
}

.main-navigation .sub-menu .menu-item a {
    display: block;
    padding: 10px 20px;
    color: var(--color-menu);
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: .05em;
    text-align: center;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: capitalize;
}

.main-navigation .sub-menu .menu-item a:hover {
    background-color: rgba(104, 136, 175, 0.08);
    color: var(--color-title);
    /* padding-left: 24px; */
}

.main-navigation .sub-menu .menu-item::after {
    display: none;
}
@media (max-width: 768px) {
    .sub-menu span {
        font-size: 14px;
        padding-top: 0;
        color: #125e94;
    }
}

/* Header Search */
.header-search {
    display: flex;
    align-items: center;
}

.header-search-form {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    background: transparent;
    border: 1px solid var(--color-title);
    border-radius: 25px;
    padding: 4px 10px;
    transition: all 0.3s ease;
}

.header-search-form:focus-within {
    border-color: var(--color-title-dark);
    box-shadow: 0 0 0 2px rgba(104, 136, 175, 0.2);
}

.header-search .search-field {
    width: 120px;
    padding: 0;
    font-size: 14px;
    color: var(--color-title);
    outline: none;
    border: none;
    background: transparent;
}

.header-search .search-field::placeholder {
    /* color: var(--color-title); */
    color: transparent;
    opacity: 0.7;
}

.header-search .search-submit {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px;
    color: var(--color-title);
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.header-search .search-submit:hover {
    color: var(--color-title-dark);
}

.header-search .search-submit svg {
    width: 18px;
    height: 18px;
}

/* Main content */


.site-content {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
}

.site-main {
    min-height: 60vh;
    padding: 2rem 0;
}

.content-area {
    margin-bottom: 2rem;
}

/* Posts */
.post {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.post:last-child {
    border-bottom: none;
}

.entry-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.entry-title a {
    color: #333;
    text-decoration: none;
}

.entry-title a:hover {
    color: #0073aa;
}

.entry-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.entry-content p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
    text-align: left;
    position: relative;
    padding: 0;
    background: #f3f6f9;
    border-radius: 30px 30px 0 0;
    margin: -20px -100px 0;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    animation: heroZoom 20s ease-in-out infinite, heroFadeIn 2s ease-out;
}

.hero-section .container {
    position: relative;
    height: 100%;
    text-align: left;
    width: 100%;
}

.hero-content {
    width: 100%;
    position: relative;
}

.hero-text-left {
    position: absolute;
    left: 40px;
    top: 120px;
    text-align: left;
    opacity: 0;
    animation: slideInLeft 1.2s ease-out 0.5s forwards;
}

.hero-text-right {
    position: absolute;
    left: 60px;
    top: 220px;
    text-align: left;
    opacity: 0;
    animation: slideInRight 1.2s ease-out 1s forwards;
}

.hero-desde {
    display: block;
    font-size: 32px;
    font-weight: 100;
    color: #6888af;
    font-family: var(--font-mundial);
    letter-spacing: 20px;
    line-height: 1;
}

.hero-year {
    display: block;
    font-size: 38px;
    font-weight: 300;
    color: #6888af;
    font-family: var(--font-mundial);
    letter-spacing: 20px;
    line-height: 1;
    padding-left: 80px;
}

.hero-text-right-side {
    position: absolute;
    right: 10px;
    top: 30%;
    transform: translateY(-50%);
}

.hero-dedication {
    display: block;
    font-size: 35px;
    font-weight: 200;
    color: white;
    /* font-family: var(--font-mundial); */
    letter-spacing: 6px;
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0;
    padding-right: 60px;
    animation: slideInLeft 1.2s ease-out 1.5s forwards;
}

.hero-vida-melhor {
    display: block;
    font-size: 70px;
    color: white;
    font-weight: 500;
    font-family: 'Antagon', sans-serif;
    line-height: 1;
    letter-spacing: 10px;
    opacity: 0;
    animation: slideInRight 1.2s ease-out 2s forwards;
}

.hero-button {
    position: absolute;
    right: 270px;
    top: 330px;
    display: block;
    text-align: center;
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 100;
    border: 1px solid #2c5aa0;
    border-radius: 50px;
    font-size: 40px;
    line-height: 1;
    z-index: 10;
    padding: 5px 25px 9px 25px;
    opacity: 0;
    transition: all 1s ease-out;
    animation: heroFadeIn 2s ease-out 2.5s forwards;
}

.hero-button:hover {
    background: transparent;
    transform: scale(1.1);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--color-title);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 200;
    color: var(--color-title-dark);
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .hero-text-left{left:80px;}
    .hero-text-right{} 
    .hero-desde{font-size: 24px;}
    .hero-year{font-size: 30px;}
    .hero-text-right-side {right: 15px; top: 320px;}
    .hero-dedication{font-size: 24px;}
    .hero-vida-melhor{font-size: 40px; margin-right: 50px;}
    .hero-button{top: 450px; right: 50%; transform: translateX(50%);}
}

/* Product Showcase */
.product-showcase {
    padding: 20px 0;
    background: #f3f6f9;
    margin: 0 -100px;
    position: relative;
    overflow: visible;
    animation: heroFadeIn 2s ease-out;
}

/* .product-showcase::before {
    content: '';
    position: absolute;
    left: 0;
    top: -150px;
    width: 100%;
    height: 152px;
    background-image: linear-gradient(0deg, rgb(243 246 249) 0, rgb(243 246 249) 20%, rgba(255, 255, 255, 0) 100%);
} */

.product-showcase .container {
    overflow: visible !important;
    position: relative;
}

.product-showcase .bg-white {
    background-color: white !important;
    padding: 20px 100px;
    border-radius: 20px;
    overflow: visible; /* Permite que as setas sejam visíveis */
    position: relative; /* Para posicionamento das setas */
    height: 240px;
    margin-bottom: 60px;
}

/* Swiper Product Carousel */
.product-swiper-wrapper {
    position: relative;
    overflow: visible;
    padding: 0 80px;
}

.product-swiper {
    padding: 20px 0;
    position: relative;
}

.product-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch; /* Vaza 20px para cima e para baixo */
}

/* Esconder setas padrão do Swiper */
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    display: none;
}

/* Botões customizados do carrossel */
.custom-swiper-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #b8c7d9;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}

/* Botões customizados do brands swiper */
#brands-swiper-prev,
#brands-swiper-next {
    color: #b8c7d9;
    transition: color 0.3s ease;
    outline: none;
    border: none;
    background: none;
}

#brands-swiper-prev:hover,
#brands-swiper-next:hover {
    color: #125e94;
}

#brands-swiper-prev:focus,
#brands-swiper-next:focus {
    outline: none;
    box-shadow: none;
}

/* Services Section */
.services-section {
    background-color: white;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 1.5rem 2rem;
    background: #f0f3f7;
    border-radius: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: none;
    box-shadow: 0 10px 25px transparent;
}

.service-card:hover {
    background: #6888af;
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px #0000001c;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}


.service-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6888af;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.service-text {
    font-size: 0.75rem;
    font-weight: 300;
    color: #6b7280;
    line-height: 1.2;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-title,
.service-card:hover .service-text {
    color: white;
    transition: color 0.3s ease;
}

.service-icon-img {
    filter: brightness(0) saturate(100%) invert(42%) sepia(12%) saturate(1234%) hue-rotate(180deg) brightness(95%) contrast(89%);
    transition: filter 0.3s ease;
}

.service-card:hover .service-icon-img {
    filter: brightness(0) saturate(100%) invert(100%);
}

.custom-swiper-button:focus {
    outline: none;
}

.custom-swiper-button svg {
    transition: all 0.3s ease;
}

.custom-swiper-button:hover {
    transform: translateY(-50%) scale(1.1);
}

.custom-swiper-button-prev {
    left: 25px;
}

.custom-swiper-button-next {
    right: 25px;
}

/* Estilos para setas de navegação do mapa desabilitadas */
.addr-prev,
.addr-next {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.addr-prev.swiper-button-disabled,
.addr-next.swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: default !important;
    pointer-events: none !important;
    transform: scale(0.9);
}

.addr-prev:not(.swiper-button-disabled):hover,
.addr-next:not(.swiper-button-disabled):hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Product showcase carousel equal heights */
.products-page-swiper .swiper-wrapper {
    align-items: stretch;
}

.products-page-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.products-page-swiper .product-card-vertical {
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px; /* Aumenta a altura mínima dos cards */
}

/* Ajusta o conteúdo interno do card para ocupar toda a altura */
.products-page-swiper .product-card-vertical .product-card-content {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

/* Sombra para as imagens dos produtos em destaque */
.products-page-swiper .product-card-vertical .product-image-container img {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease, transform 0.3s ease;
}

/* Efeito hover para as imagens */
.products-page-swiper .product-card-vertical:hover .product-image-container img {
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2)) drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    transform: translateY(-2px);
}

.product-carousel {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.product-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.product-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.swiper {
    top: -75px;
    padding-bottom: 60px !important;
    margin: 0 -20px !important;
}

.product-card-horizontal {
    display: flex;
    align-items: center;
    gap: 0px;
    height: 100%;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 30px 0;
    transition: all 0.3s ease;
    overflow: visible;
    width: 90%;
    min-height: 280px;
    padding-left: 10px;
    margin: 10px 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: productSlideIn 0.8s ease-out forwards;
}

.swiper-slide:nth-child(1) .product-card-horizontal {
    animation-delay: 0.2s;
}

.swiper-slide:nth-child(2) .product-card-horizontal {
    animation-delay: 0.4s;
}

.swiper-slide:nth-child(3) .product-card-horizontal {
    animation-delay: 0.6s;
}

.swiper-slide:nth-child(4) .product-card-horizontal {
    animation-delay: 0.8s;
}

@keyframes productSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-horizontal:hover {
    background: var(--card-bg, #ffae44);
    color: var(--card-fg, #111111);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card-horizontal:hover .product-image img {
    filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.8));
    transform: scale(1.05);
}

.product-image {
    min-width: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    max-width: 100%;
    max-height: 230px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.product-novo-tag {
    background: transparent;
    color: var(--color-title-dark);
    border: 1px solid var(--color-title-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-mundial);
    display: inline-block;
    margin-bottom: 8px;
    align-self: flex-start;
}
.product-card-horizontal:hover .product-novo-tag,
.product-card-horizontal.active-left .product-novo-tag {
    color: #fff;
    border-color: #fff;
}

.product-content {
    flex: 1;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    color: #4c4c4c;
    padding-right: 25px;
}

.product-content h3 {
    max-width: 150px;
    font-size: 1.25rem;
    font-weight: 400;
    color: #4c4c4c;
    margin-bottom: 10px;
    font-family: var(--font-mundial);
    transition: color 0.3s ease;
    line-height: 1.1;
}

.product-card-horizontal:hover .product-content h3 {
    color: var(--card-fg, #ffffff);
}

.product-content p {
    max-width: 150px;
    font-size: .875rem;
    font-weight: 300;
    line-height: 1.2;
    color: #666;
    transition: color 0.3s ease;
}

.product-card-horizontal:hover .product-content p {
    color: var(--card-fg, rgba(255, 255, 255, 0.9));
}

/* Active state for left product based on pagination */
.product-card-horizontal.active-left {
    background: var(--card-bg, #ffae44);
    color: var(--card-fg, #111111);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.product-card-horizontal.active-left .product-image img {
    filter: drop-shadow(0 0 80px rgba(255, 255, 255, 0.8));
    transform: scale(1.05);
}

.product-card-horizontal.active-left .product-content h3 {
    color: var(--card-fg, #ffffff);
}

.product-card-horizontal.active-left .product-content p {
    color: var(--card-fg, rgba(255, 255, 255, 0.9));
}

.product-card-horizontal.active-left .product-button {
    background: var(--card-fg);
    color: var(--card-bg);
    border-color: var(--card-fg);
}

.product-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-family: var(--font-mundial);
    transition: color 0.3s ease;
}

.product-card-horizontal:hover .product-title {
    color: #fff;
}

.product-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.product-card-horizontal:hover .product-description {
    color: rgba(255, 255, 255, 0.9);
}

.product-button {
    display: inline-block;
    background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-card-horizontal:hover .product-button {
    background: var(--card-fg);
    color: var(--card-bg);
    border-color: var(--card-fg);
}

.carousel-nav {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
}

.carousel-nav:hover {
    border-color: #2c5aa0;
    color: #2c5aa0;
    transform: scale(1.1);
}

.carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-view-all {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #6888af;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
}

.carousel-view-all:hover {
    background: #2c5aa0;
    transform: translateY(-2px);
}

/* Company Statement Section */
.company-statement-section {
    margin: 0 -100px;
    background: #f3f6f9;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    animation: heroFadeIn 2s ease-out;
}

.company-statement-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.company-statement-text {
    font-family: var(--font-mundial);
    font-weight: 100;
    color: #6888af;
    letter-spacing: 6px;
    line-height: 1.2;
    margin: 0;
}

.statement-line {
    display: block;
    font-size: 18px;
    margin-bottom: 10px;
}

.statement-highlight {
    font-size: 55px !important;
    font-weight: 200;
}

.statement-brand {
    font-family: var(--font-mundial);
    font-style: normal;
    font-weight: 100;
    color: #2c5aa0;
    font-size: 18px;
    letter-spacing: 10px;
    margin-top: 20px;
    margin-bottom: 60px;
}

@media (max-width: 480px) {
    .company-statement-section {
        margin: 0 -100px;
        padding: 40px 80px;
        margin-top: 0px;
    }

    .statement-line {
        margin-bottom: 5px;
    }
    
    .statement-highlight {
        font-size: 30px !important;
        line-height: 35px !important;
        margin-bottom: 15px !important;
    }
}

/* Company Columns */
.company-columns {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    text-align: left;
}

.company-column-left {
    flex: 1;
    max-width: 33.333%;
}

.company-column-right {
    flex: 2;
    max-width: 66.666%;
}

/* Saude */
@media (max-width: 768px) {
    #saude {
        height: auto !important;
        padding: 50px 0 250px;
        background-size: 800px;
        background-position: 10% bottom !important;
    }
}

/* Care */
@media (max-width: 768px) {
    .care-section {
        display: flex;
        flex-direction: column-reverse;
        padding-top: 50px !important;
        height: auto !important;
        margin: 0 !important;
    }
}

.column-title {
    font-family: var(--font-mundial);
    font-weight: 100;
    font-size: 24px;
    color: #6888af;
    letter-spacing: 3px;
    line-height: 1.3;
    margin: 0 0 20px 0;
    text-transform: uppercase;
}

.column-subtitle {
    font-family: var(--font-mundial);
    font-weight: 100;
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.column-text {
    font-family: var(--font-mundial);
    font-weight: 100;
    font-size: 16px;
    color: #737373;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.column-text:last-child {
    margin-bottom: 0;
}

.column-subtitle strong,
.column-text strong {
    font-weight: 400;
}

.column-text em {
    font-style: italic;
}
@media (max-width: 768px) {
    .column-title {
        font-size: 20px;
    }
}

/* Scroll-Driven Animation */
.scroll-reveal {
    opacity: 0 !important;
    transform: translateY(50px);
    will-change: opacity, transform;
}


/* Swiper Pagination */
.swiper-pagination {
    position: static !important;
    margin-top: 60px;
    text-align: center;
    margin-bottom: 30px;
}

.swiper-pagination-bullet {
    width: 50px !important;
    height: 10px !important;
    background: #d7e0ea !important;
    opacity: 1 !important;
    margin: 0 8px !important;
    border-radius: 16px !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.swiper-pagination-bullet-active {
    background: #6888af !important;
    width: 80px !important;
    height: 10px !important;
    border-radius: 16px !important;
    transform: none !important;
}

/* container da paginação */
.valores-swiper .swiper-pagination {
  position: static;   /* deixa as bolinhas logo abaixo */
  margin-top: 12px;   /* espaço entre o slide e as bolinhas */
  text-align: center; /* centralizar */
}

/* estilo padrão da bolinha */
.valores-swiper .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #d7e0ea !important;   /* cor da bolinha */
  opacity: 0.4;          /* bolinha apagada */
  border-radius: 50%;    /* transforma em círculo */
  transition: opacity 0.3s, transform 0.3s;
  margin: 0 4px;         /* espaço entre elas */
}

/* bolinha ativa */
.valores-swiper .swiper-pagination-bullet-active {
  width: 10px !important;
  height: 10px !important;
  opacity: 1;
  background: #6888af !important;
  transform: scale(1.2); /* cresce um pouco pra destacar */
}

.carousel-actions {
    position: relative;
    margin-top: 20px;
}

.view-all-button {
    position: absolute;
    top: -60px;
    right: 0;
    background: #6888af;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.view-all-button:hover {
    background: #5a7ba3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(104, 136, 175, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .product-showcase {
        padding-top: 20px !important;
    }

    .product-showcase::before {
        height: 100px;
        top: -99px;
    }

    .product-showcase .bg-white {
        height: auto;
        margin: 0;
    }

    .product-showcase .product-swiper {
        padding: 0 !important;
        top: 0 !important;
    }
    
    .product-card-horizontal {
        flex-direction: column;
        min-height: auto;
        padding: 15px;
    }

    .product-image {
        flex: none;
        padding: 0;
        width: 100%;
    }

    .product-content {
        width: 80%;
        padding: 0 0 10px;
    }

    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .product-carousel-wrapper {
        gap: 15px;
    }

    .swiper-pagination-bullet {
        width: 40px !important;
        margin: 0 8px !important;
    }

    .swiper-pagination-bullet-active {
        width: 50px;
    }
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

/* Brands Section */
.brands-section {
    background: white;
}

.brands-section h2.section-title {
    margin-bottom: 1rem;
}

.brands-section .swiper.brands-swiper {
    top: 0;
    padding: 0 !important;
    margin: 0 !important;
}

.brands-swiper {
    padding: 3rem 0;
    height: auto;
    min-height: 200px;
}

.brands-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.brand-item {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    padding: 0 30px;
}

.brand-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.brand-logo {
    max-width: 100% !important;
    width: auto !important;
    max-height: 280px !important;
    min-height: 120px !important;
    object-fit: contain !important;
    transform: scale(1.2) !important;
}
@media (max-width: 768px) {
    .brands-swiper {
        height: 100px;
        min-height: 100px;
    }
    .brands-swiper .swiper-slide {
        height: 100px;
    }
    .brand-item {
        height: 100px;
        padding: 0 10px;
    }
    .brand-logo {
        max-height: 100px !important;
        min-height: 100px !important;
        transform: none !important;
    }
}

/* Partners and Certificates Logos */
.company-logo {
    max-width: 280px !important;
    width: auto !important;
    height: auto !important;
    max-height: 80px;
    object-fit: contain !important;
    transform: scale(1.1) !important;
}

.company-item {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.company-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}
@media (max-width: 768px) {
    .company-item {
        width: 33.3%;
        padding: 10px;
    }

    .company-logo {
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        max-height: 50px;
        object-fit: contain !important;
        transform: scale(1.1) !important;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-title);
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-title-dark);
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: transparent;
    color: inherit;
    padding: 0;
}

.footer-main .footer-content {
    color: #737373 !important;
}

.footer-main .footer-section p {
    color: #737373 !important;
}

.footer-main .footer-section strong {
    color: #737373 !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* React root container */
#kress-root {
    margin: 2rem 0;
}

/* Skeleton loading styles */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 1rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-title {
    height: 2rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

/* Additional Styles for Front Page */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.testimonial-card cite {
    font-weight: 500;
    color: var(--color-title-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: var(--color-title-dark);
    margin-bottom: 15px;
    font-weight: var(--color-title-dark);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}

.newsletter-section {
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.newsletter-content h2 {
    color: white;
    margin-bottom: 20px;
}

.newsletter-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid transparent;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-btn {
    padding: 15px 30px;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
}

.newsletter-message {
    font-size: 14px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive newsletter form */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .form-group {
        gap: 10px;
    }
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: var(--color-title);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--color-title-dark);
    color: #fff;
}

/* Mobile Menu Styles */
.menu-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.menu-icon span {
    display: block;
    height: 2px;
    background: var(--color-menu);
    transition: all 0.3s ease;
}

/* Responsive design */
@media (max-width: 768px) {
    .main-navigation {
        position: static;
        transform: none;
        left: auto;
    }

    .menu-toggle {
        display: block;
        order: 2;
    }

    .header-search {
        order: 3;
    }

    .header-search .search-field {
        width: 150px;
    }

    .main-navigation li {
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header-search .search-field {
        width: 120px;
        font-size: 12px;
    }
}

/* Accessibility */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}


/* Skip link */
.skip-link {
    background: #0073aa;
    color: white;
    padding: 8px 16px;
    position: absolute;
    top: -40px;
    left: 6px;
    text-decoration: none;
    z-index: 100000;
}

.skip-link:focus {
    top: 6px;
}


/* about us */

.hero-base-about-us {
    display: block;
    font-size: 26px;
    font-weight: 100;
    color: #6888af;
    font-family: var(--font-mundial);
    letter-spacing: 0.200em;
    line-height: 1;
}

.hero-about-us-emphasis {
    display: block;
    font-size: 50px;
    font-weight: 400;
    color: #2c5aa0;
    font-family: 'Antagon', sans-serif;
    line-height: 1;
    letter-spacing: 10px;
}

@media (max-width: 480px) {
    .hero-base-about-us {
        font-size: 24PX;
    }

    .hero-about-us-emphasis {
        font-size: 40px;
    }

}


.base-section {
    margin: 0 -100px;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    animation: heroFadeIn 2s ease-out;
}

.base-gray-section {
    margin: 0 -100px;
    background: #f3f6f9;
    padding: 120px 60px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    animation: heroFadeIn 2s ease-out;
}

.quotes {
    display: block;
    font-size: 58px;
    font-weight: 400;
    color: #6888af;
    font-style: italic;
    line-height: 1;
    letter-spacing: 10px;
}
@media (max-width: 480px) {
    .base-gray-section {
        margin: 0;
        padding: 30px;
    }
    #contact-section .container {
        padding: 0;
    }
}

/* PINS no mapa */
.map-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid #f1d9b4;
  border-radius: 9999px;
  background: #f1d9b4;
  transform: translate(-50%, -50%);
  opacity: .8;
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
}
.map-dot:hover { transform: translate(-50%, -50%) scale(1.15); }
.map-dot.active {
  background: #eb9514;
  opacity: 1;
  box-shadow: 0 0 0 4.5px #eb951440;
}

/* opcional: botão setas com foco */
.addr-nav button:focus-visible { outline: 2px solid #6888af; outline-offset: 2px; }

/* Valores */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.values-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.values-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.values-item h3 {
    font-size: 1.3rem;
    color: var(--color-title-dark);
    margin-bottom: 15px;
    font-weight: var(--color-title-dark);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
}
@media (max-width: 768px) {
    .values-grid {
        margin-top: 20px;
    }
}

.shadow-custom {
    transition: box-shadow 0.3s ease;
    box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.4),
                -14px -3px 100px 4px transparent; /* branca invisível */
    border-radius: 8px;
  }
  
  .group:hover .shadow-custom {
    box-shadow: 8px 8px 20px transparent,           /* preta some */
                -14px -3px 100px 4px rgba(255, 255, 255, 0.7); /* branca aparece */
  }

  table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 0 auto;
  }
  
  table td, 
  table th {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid #ddd; /* linha padrão */
  }
  
  table tr:first-child td, 
  table tr:first-child th {
    font-weight: 600;
    border-bottom: 2px solid #555; /* cabeçalho mais forte */
  }
  
  table tr:last-child td {
    border-bottom: 2px solid #555; /* última linha mais forte */
  }
  