/* Otimização de fontes */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Montserrat Regular'), local('Montserrat-Regular');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Roboto Regular'), local('Roboto-Regular');
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
}

.success-message {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 15px;
    border: 1px solid rgba(40, 167, 69, 0.3);
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .service-icon-large {
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
    }
}/* Page Header */
.page-header {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    color: var(--branco);
    font-size: 36px;
    margin: 0;
}

/* Privacy Policy Page */
.privacy-policy-content {
    padding: 60px 0;
}

.content-block {
    margin-bottom: 40px;
}

.content-block h2 {
    color: var(--azul-escuro);
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--dourado);
}

.content-block h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--azul-escuro);
}

.content-block p, 
.content-block ul {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-block ul {
    padding-left: 20px;
}

.content-block ul li {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: var(--cinza-escuro);
    padding-top: 30px;
    border-top: 1px solid var(--cinza-medio);
}.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--cinza-medio);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--dourado);
}/* Reset CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis de cores baseadas na identidade visual */
:root {
    --branco: #FFFFFF;
    --azul-escuro: #2C3859;
    --dourado: #C78E29;
    --cinza-claro: #f5f5f5;
    --cinza-medio: #e0e0e0;
    --cinza-escuro: #333333;
    --footer-bg: #1e2a4a;
}

/* Estilos Gerais */
body {
    font-family: 'Roboto', sans-serif;
    color: var(--cinza-escuro);
    line-height: 1.6;
    background-color: var(--branco);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--azul-escuro);
    margin-bottom: 20px;
}

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

a:hover {
    color: var(--dourado);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background-color: var(--dourado);
    color: var(--branco);
}

.btn-primary:hover {
    background-color: #b07a20;
    color: var(--branco);
}

.btn-secondary {
    background-color: var(--azul-escuro);
    color: var(--branco);
}

.btn-secondary:hover {
    background-color: #212a43;
    color: var(--branco);
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
}

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

/* Header Styles */
header {
    background-color: var(--branco);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 70px;
    width: auto;
}

nav .menu {
    display: flex;
    list-style: none;
}

nav .menu li {
    margin-left: 30px;
}

nav .menu li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
}

nav .menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--dourado);
    transition: width 0.3s ease;
}

nav .menu li a:hover::after,
nav .menu li a.active::after {
    width: 100%;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: var(--azul-escuro);
    z-index: 1001;
}

.mobile-menu {
    display: none;
    background-color: var(--branco);
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    display: block;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    margin-top: 60px;
}

.mobile-menu ul li {
    margin-bottom: 25px;
}

.mobile-menu ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--azul-escuro);
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--cinza-medio);
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    color: var(--dourado);
}

/* Banner Principal (imagem única) */
.single-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: transparent;
}

.banner-link {
    display: block;
    width: 100%;
    position: relative;
    text-decoration: none;
    border: none;
    outline: none;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--branco);
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-content a {
    color: var(--dourado);
    text-decoration: underline;
}

.cookie-notice.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}

#acceptCookies {
    cursor: pointer;
    padding: 10px 20px;
    background-color: var(--dourado);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 16px;
    min-width: 120px;
}

#acceptCookies:hover {
    background-color: #b07a20;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* About Section (Home) */
.about-preview {
    padding: 80px 0;
}

.about-preview-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.about-preview-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.about-preview-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-preview-content.full-text {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
}

.about-preview-content.full-text .about-preview-text {
    width: 100%;
    padding: 0;
    text-align: center;
}

.about-preview-content.full-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-preview-content.full-text .btn {
    margin-top: 10px;
}

/* Services Section */
.services {
    background-color: var(--cinza-claro);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--branco);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    height: 150px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--azul-escuro);
    font-size: 50px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--azul-escuro);
    color: white;
}

.service-content {
    padding: 30px 20px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--azul-escuro);
}

.service-content p {
    margin-bottom: 20px;
}

/* Testemunhos */
.testimonials {
    padding: 80px 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    text-align: center;
    padding: 20px;
    display: none;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: -15px;
    color: var(--cinza-medio);
    font-family: serif;
    opacity: 0.3;
}

.testimonial-client {
    font-weight: 700;
    color: var(--azul-escuro);
}

.testimonial-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    flex: 1;
    max-width: 200px;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dourado);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background-color: var(--azul-escuro);
    transform: scale(1.05);
}

.testimonial-arrow.prev {
    margin-right: 5px;
}

.testimonial-arrow.next {
    margin-left: 5px;
}

/* CTA Section */
.cta {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.cta h2 {
    color: var(--branco);
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: var(--branco);
    padding-top: 60px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column h3 {
    color: var(--branco);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--dourado);
}

.footer-menu,
.footer-contact {
    list-style: none;
}

.footer-menu li,
.footer-contact li {
    margin-bottom: 15px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--dourado);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--dourado);
    margin-top: 5px;
}

.social-icons {
    display: flex;
    margin-bottom: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--branco);
    transition: background-color 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--dourado);
}

.site-secure {
    color: rgba(255, 255, 255, 0.7);
}

.site-secure i {
    color: var(--dourado);
    margin-right: 5px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.copyright .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.copyright a {
    color: var(--dourado);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--branco);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

/* About Us Page */
.about-header {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.about-header h1 {
    color: var(--branco);
    font-size: 36px;
}

.about-section {
    padding: 80px 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 2;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Mission Vision Values - Accordion Style */
.mission-vision-values {
    background-color: var(--cinza-claro);
    padding: 80px 0;
}

.accordion-mvv {
    max-width: 800px;
    margin: 0 auto;
}

.mvv-accordion-item {
    background-color: var(--branco);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mvv-accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.mvv-accordion-header {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: var(--branco);
    position: relative;
    transition: background-color 0.3s ease;
}

.mvv-accordion-header:hover {
    background-color: rgba(199, 142, 41, 0.05);
}

.mvv-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(199, 142, 41, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--dourado);
    font-size: 18px;
}

.mvv-accordion-header h3 {
    margin: 0;
    flex: 1;
    font-size: 20px;
    color: var(--azul-escuro);
}

.mvv-toggle {
    color: var(--dourado);
    transition: transform 0.3s ease;
}

.mvv-accordion-item.active .mvv-toggle i {
    transform: rotate(180deg);
}

.mvv-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.mvv-accordion-item.active .mvv-accordion-content {
    max-height: 1000px;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.values-list {
    padding-left: 0;
    list-style: none;
}

.values-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.values-list li i {
    color: var(--dourado);
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

.differentials {
    padding: 80px 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.differential-item {
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--dourado);
}

.differential-item:hover {
    transform: translateY(-10px);
}

.differential-icon {
    font-size: 30px;
    color: var(--dourado);
    margin-bottom: 20px;
}

.differential-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Page */
.services-header {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.services-header h1 {
    color: var(--branco);
    font-size: 36px;
}

.service-categories {
    padding: 80px 0;
}

.category-box {
    margin-bottom: 50px;
}

.category-title {
    font-size: 28px;
    color: var(--azul-escuro);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid var(--cinza-medio);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
}

/* Services Page */
.services-header {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.services-header h1 {
    color: var(--branco);
    font-size: 36px;
}

.service-categories {
    padding: 80px 0;
}

.category-box {
    margin-bottom: 80px;
}

.category-title {
    font-size: 28px;
    color: var(--azul-escuro);
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    border-bottom: 1px solid var(--cinza-medio);
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--dourado);
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-detail-content {
    flex: 3;
    min-width: 300px;
}

.service-detail-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-icon-large {
    flex: 1;
    min-width: 200px;
    max-width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(199, 142, 41, 0.1);
    border-radius: 50%;
    color: var(--azul-escuro);
    font-size: 80px;
    margin: 0 auto;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.service-list-item {
    background-color: var(--branco);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 3px solid var(--dourado);
}

.service-list-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
    background-color: rgba(199, 142, 41, 0.1);
    color: var(--azul-escuro);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.service-item-content {
    flex: 1;
}

.service-list-item h3 {
    font-size: 18px;
    color: var(--azul-escuro);
    margin-bottom: 10px;
}

.service-list-item p {
    color: var(--cinza-escuro);
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Page */
.contact-header {
    background-color: var(--azul-escuro);
    color: var(--branco);
    padding: 60px 0;
    text-align: center;
}

.contact-header h1 {
    color: var(--branco);
    font-size: 36px;
}

.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--azul-escuro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 20px;
    margin-right: 15px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contact-map {
    margin-top: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--branco);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--cinza-medio);
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--azul-escuro);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Skeleton Loader */
.skeleton-loader {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.skeleton-loader.loaded,
.skeleton-loader img,
.skeleton-loader i {
    animation: none !important;
    background: none !important;
    position: relative;
    z-index: 2;
}

.skeleton-loader::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: shimmer-effect 1.5s infinite;
    z-index: 1;
}

.skeleton-loader.loaded::before {
    animation: none;
    opacity: 0;
    display: none;
}

@keyframes shimmer-effect {
    100% {
        transform: translateX(100%);
    }
}

/* Estilo para parar completamente o skeleton */
.stop-skeleton {
    animation: none !important;
    background: transparent !important;
}

.stop-skeleton::before {
    animation: none !important;
    opacity: 0 !important;
    display: none !important;
}

.skeleton-text {
    height: 18px;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-text.title {
    height: 24px;
    width: 70%;
}

.skeleton-image {
    aspect-ratio: 16/9;
    width: 100%;
}

.skeleton-card {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--branco);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    nav .menu {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero-content {
        margin-left: 20px;
        max-width: 500px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .banner-overlay {
        padding: 0 20px;
    }
    
    .banner-content {
        max-width: 100%;
        text-align: center;
    }
    
    .banner-content h1 {
        font-size: 30px;
    }
    
    .about-preview-text,
    .about-preview-image {
        padding: 0;
        min-width: 100%;
        margin-bottom: 30px;
    }
    
    .copyright .container {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 26px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 20px;
        bottom: 20px;
    }
    
    .service-icon {
        height: 120px;
        font-size: 40px;
    }
}