/* Reset e configurações base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    justify-content: space-between;
}

.container {
    max-width: none;
    margin: 0;
    padding: 0 2rem;
}

/* Tipografia responsiva melhorada */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h5 { font-size: clamp(1rem, 2vw, 1.25rem); }
h6 { font-size: clamp(0.9rem, 1.8vw, 1rem); }

p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    margin-bottom: 1rem;
}

/* Imagens responsivas */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
}



/* Header e Navegação */
.header {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}



.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: inherit;
}

.logo-link:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

.logo-link.clicked {
    animation: logoClick 0.3s ease;
}

@keyframes logoClick {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.nav-logo img {
    height: 35px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.logo-dot {
    color: #3498db;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link.language {
    background: transparent;
    padding: 0;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Controle de visibilidade dos botões de idioma */
.desktop-only {
    display: inline-block;
}

.mobile-only {
    display: none;
}

.mobile-language-toggle {
    display: none;
}

/* Regra global para esconder botão de idiomas quando modal está aberto */
body.modal-open .mobile-language-toggle,
body.modal-open .nav-container .mobile-language-toggle,
body.modal-open .navbar .mobile-language-toggle,
body.modal-open .header .mobile-language-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -1 !important;
}

/* Regra adicional para esconder botão de idiomas quando qualquer modal está visível */
body:has(.modal[style*="display: block"]) .mobile-language-toggle,
body:has(.modal[style*="display: block"]) .nav-container .mobile-language-toggle,
body:has(.modal[style*="display: block"]) .navbar .mobile-language-toggle,
body:has(.modal[style*="display: block"]) .header .mobile-language-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -1 !important;
}

/* Regras específicas para quando qualquer modal está visível */
.modal[style*="display: block"] ~ .header .mobile-language-toggle,
.modal[style*="display: block"] ~ .navbar .mobile-language-toggle,
.modal[style*="display: block"] ~ .nav-container .mobile-language-toggle {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    z-index: -1 !important;
}

.nav-dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 1rem 0;
    top: 100%;
    left: 0;
}

.nav-dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #2c3e50;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.dropdown-content a:hover {
    background: #f8f9fa;
}

.sub-dropdown {
    position: relative;
}

.sub-dropdown-content {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.sub-dropdown:hover .sub-dropdown-content {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: url('./assets/watermark.jpg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Wrapper para Hero e Marcas */
.hero-marcas-wrapper {
    background: url('./assets/watermark.jpg') center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hero-marcas-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-marcas-wrapper .hero,
.hero-marcas-wrapper .marcas {
    position: relative;
    z-index: 2;
}

.hero-marcas-wrapper .hero {
    background: none;
}

.hero-marcas-wrapper .hero::before {
    display: none;
}

.hero-como-funciona-wrapper {
    position: relative;
    background-image: url('assets/watermark.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    background-attachment: local;
}

.hero-como-funciona-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}



.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
    text-align: center;
    min-height: 300px;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .btn {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    min-height: 44px;
}

.btn-primary {
    background: #135058;
    color: white;
}

.btn-primary:hover {
    background: #0f3d42;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-small {
    background: #25d366;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-whatsapp-small:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-telegram-small {
    background: #0088cc;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-telegram-small:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.google-review-widget {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.google-review-widget a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s ease;
}

.google-review-widget a:hover {
    transform: scale(1.05);
}

.google-reviews-link {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #3498db !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(52, 152, 219, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.google-reviews-link:hover {
    background: rgba(52, 152, 219, 0.2);
    border-color: rgba(52, 152, 219, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.google-reviews-link i {
    font-size: 1rem;
}

.review-stars {
    display: flex;
    gap: 2px;
    color: #ffc107;
    font-size: 1.2rem;
}

/* Como Funciona Section */
.como-funciona {
    padding: 80px 0 20px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}



.como-funciona .container {
    position: relative;
    z-index: 2;
}

.como-funciona-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.como-funciona h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.como-funciona-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.step {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.step-icon {
    color: #3498db;
    font-size: 2rem;
    margin: 0 auto 1rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.step p {
    color: #666;
    line-height: 1.3;
    font-size: 0.8rem;
}

/* Marcas Section */
.marcas {
    padding: 3rem 0;
    background: white;
}

.marcas h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.marcas-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    max-width: 100%;
    margin: 0 auto;
}

.marca {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    animation: rotateLogos 20s linear infinite;
}

.marca:nth-child(1) { animation-delay: 0s; }
.marca:nth-child(2) { animation-delay: -2.5s; }
.marca:nth-child(3) { animation-delay: -5s; }
.marca:nth-child(4) { animation-delay: -7.5s; }
.marca:nth-child(5) { animation-delay: -10s; }
.marca:nth-child(6) { animation-delay: -12.5s; }
.marca:nth-child(7) { animation-delay: -15s; }
.marca:nth-child(8) { animation-delay: -17.5s; }

.marca img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.7;
}

.marca:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes rotateLogos {
    0% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-10px);
        opacity: 1;
    }
    50% {
        transform: translateY(0px);
        opacity: 0.7;
    }
    75% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0px);
        opacity: 0.7;
    }
}

/* Pedido Section */
.pedido {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8c4f5 0%, #8bb3f0 100%);
    background-image: url('assets/pedidos.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    position: relative;
}

.pedido::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #a8c4f5 0%, #8bb3f0 100%);
    opacity: 0.85;
    z-index: 1;
}

.pedido .container {
    position: relative;
    z-index: 2;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-telegram:hover {
    background: #0077b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

.pedido h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.pedido-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.pedido-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pedido-text p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.pedido-button {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-right: 2rem;
}

/* Preços Section */
.precos {
    padding: 40px 0;
    background: #f8f9fa;
}

.precos h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Forçar layout de 4 colunas para caixas de preços dentro do modal */
.modal .precos-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1600px;
    margin: 0 auto 2rem auto;
    gap: 2rem;
}

/* Responsividade para o modal */
@media (max-width: 1400px) {
    .modal .precos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1200px) {
    .modal .precos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .modal .precos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .modal .precos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.preco-card {
    background: white;
    padding: 1.8rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    cursor: pointer;
    min-height: 350px;
}

/* Cores no topo das caixas de preço */
.preco-card.lavar-secar {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.lavar-secar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.lavar-dobrar {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.lavar-dobrar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.premium-wash {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.premium-wash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

/* Efeito hover para texto riscado - mostrar X no lugar do certo */
.preco-card:hover s::before {
    content: '✗';
    color: #dc3545;
    font-weight: bold;
    margin-right: 8px;
    animation: fadeInX 0.3s ease-in-out;
}

.preco-card:hover s {
    color: #dc3545;
    font-weight: bold;
}

/* Cores para caixas de engomadoria */
.preco-card.engomadoria-azul {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.engomadoria-azul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.engomadoria-laranja {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.engomadoria-laranja::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.engomadoria-vermelho {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.engomadoria-vermelho::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

/* Cores para caixas de lavar e engomar */
.preco-card.lavar-engomar {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.lavar-engomar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

/* Cores para caixas de tapetes */
.preco-card.tapetes,
.preco-card.high-pile-carpet {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.tapetes::before,
.preco-card.high-pile-carpet::before {
    content: '✓';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

/* Cores para caixas de peças em pele */
.preco-card.pecas-pele {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.pecas-pele::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

/* Cores para caixas de serviços Express */
.preco-card.express-24h {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

/* Garantir visibilidade específica no modal Express */
#expressModal .preco-card.express-24h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

/* Garantir visibilidade específica no modal Express para 12h */
#expressModal .preco-card.express-12h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

/* Garantir visibilidade específica no modal Express para 6h */
#expressModal .preco-card.express-6h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal .tab-interna-content.active .preco-card.express-24h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal .tab-interna-content.active .preco-card.express-12h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal .tab-interna-content.active .preco-card.express-6h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-24h-wash-fold .preco-card.express-24h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-6h-wash-fold .preco-card.express-6h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-12h-wash-fold .preco-card.express-12h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-12h-wash-fold .preco-card.express-12h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-6h-wash-fold .preco-card.express-6h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-24h-wash-iron .preco-card.express-24h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-6h-wash-iron .preco-card.express-6h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

#expressModal #tab-interna-express-12h-wash-iron .preco-card.express-12h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}
.preco-card.express-24h::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.express-12h {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}
.preco-card.express-12h::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.express-3h30 {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}
.preco-card.express-3h30::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

.preco-card.express-6h {
    border-top: 4px solid #135058;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}
.preco-card.express-6h::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 15px;
}

@keyframes fadeInX {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preco-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.preco-card:hover::before {
    left: 100%;
}

.preco-card.featured {
    transform: scale(1.05);
    border: 3px solid #135058;
    box-shadow: 0 15px 40px rgba(19, 80, 88, 0.2);
    animation: pulse 2s infinite;
}

.preco-card.featured::after {
    content: '⭐ POPULAR';
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

.preco-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.preco-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 25px 60px rgba(19, 80, 88, 0.3);
}

.preco-card h3 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.preco-card:hover h3 {
    color: #135058;
    transform: scale(1.05);
}

.preco {
    font-size: 2.2rem;
    font-weight: bold;
    color: #135058;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
}

.preco-card:hover .preco {
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(19, 80, 88, 0.3);
}

/* Animação para ícones dentro das caixas de preços */
.preco-card i {
    transition: all 0.3s ease;
}

.preco-card:hover i {
    transform: rotate(360deg);
    color: #3498db;
}

/* Efeito de brilho adicional */
.preco-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.preco-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(52, 152, 219, 0.05) 50%, transparent 70%);
    pointer-events: none;
    animation: shimmer 1.5s ease-in-out;
}

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

.preco-card ul {
    list-style: none;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.preco-card li {
    padding: 0.4rem 0;
    color: #666;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.9rem;
}

.preco-card li:last-child {
    border-bottom: none;
}

.preco-card:hover li {
    color: #2c3e50;
    transform: translateX(5px);
}

.preco-card li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: #3498db;
    opacity: 0;
    transition: all 0.3s ease;
}

.preco-card:hover li::before {
    opacity: 1;
    left: -15px;
}

/* Remover ✓ das opções com texto riscado */
.preco-card li:has(s)::before {
    content: none !important;
}

.preco-card:hover li:has(s)::before {
    content: none !important;
}

/* Alternativa para navegadores que não suportam :has() */
.preco-card li s {
    position: relative;
}

.preco-card li s::before {
    content: none !important;
}

.preco-card:hover li s::before {
    content: none !important;
}

.precos-info {
    text-align: center;
    color: #666;
}

.precos-info p {
    margin-bottom: 0.5rem;
}

/* Serviços Section */
.servicos {
    padding: 60px 0;
    background: white;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.servico-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.servico-card:hover {
    background: #3498db;
    color: white;
    transform: translateY(-5px);
}

.servico-card h3 {
    font-size: 1.2rem;
}

/* Pagamentos Section */
.pagamentos {
    padding: 20px 0;
    background: #f8f9fa;
    text-align: center;
}

.pagamentos h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.pagamentos p {
    margin-bottom: 1rem;
    color: #666;
}

.pagamentos-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.pagamento-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem;
    transition: transform 0.3s ease;
    min-width: 100px;
    height: 80px;
    justify-content: center;
}

.pagamento-item:hover {
    transform: scale(1.05);
}

.pagamento-item.disabled {
    opacity: 0.5;
}

.pagamento-item.disabled img {
    background: transparent;
}

.pagamento-item img {
    width: 60px;
    height: 40px;
    object-fit: contain;
    border-radius: 8px;
    background: transparent;
}

.pagamento-item span {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin-top: 0.5rem;
}

.mbway-placeholder {
    width: 60px;
    height: 40px;
    background: #27AE60;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 40px 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq > .container > p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
}

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

.faq-item {
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 20px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
}

.testimonial {
    background: white;
    padding: 0.7rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 0.8rem;
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    line-height: 1.3;
    font-size: 0.8rem;
}

.testimonial-author h4 {
    color: #2c3e50;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
}

.testimonial-author p {
    color: #999;
    font-size: 0.7rem;
}

/* Sobre Section */
.sobre {
    padding: 80px 0;
    background: white;
}

.sobre h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.sobre p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #666;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Blog Section */
.blog {
    padding: 4rem 0;
    background: #f8f9fa;
}

.blog h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    font-size: 2.2rem;
    font-weight: 600;
    margin-top: 2rem;
}

.blog p {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content h3 {
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-read-more {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    align-self: flex-start;
    flex-shrink: 0;
}

.blog-read-more:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.blog-read-more:active {
    transform: translateY(0);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 20px 0 10px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 0.5rem;
    color: #3498db;
    font-size: 0.9rem;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
}

.contact-item h4 {
    color: #3498db;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.contact-item p {
    color: #bdc3c7;
    margin: 0;
    font-size: 0.8rem;
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.location h4 {
    color: #3498db;
    margin-bottom: 0.3rem;
    font-size: 0.8rem;
}

.location p {
    color: #bdc3c7;
    margin: 0;
    line-height: 1.3;
    font-size: 0.8rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 0.5rem;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.8rem;
}

.social-media-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.social-link:active {
    transform: translateY(0);
}

/* Language flag icon sizing */
.nav-link.language img.lang-flag {
    display: inline-block;
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    vertical-align: middle;
}

.nav-link.language:hover img.lang-flag {
    transform: translateY(-1px);
}

/* Responsividade */
@media (max-width: 768px) {
    
    .nav-logo {
        order: 1 !important;
        margin-right: auto !important;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 10002;
        position: relative;
        margin-left: 0 !important;
        order: 3 !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 10001;
        border-radius: 0 0 8px 8px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        text-align: center;
        font-size: 1.1rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #185a9d;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mostrar botão de idioma mobile e esconder desktop */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: inline-block !important;
    }
    
    .mobile-language-toggle {
        display: flex !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: 0.5rem !important;
        order: 2 !important;
    }
    
    .mobile-language-toggle .nav-link.language {
        background: transparent !important;
        color: #000000 !important;
        padding: 0.5rem 1rem !important;
        border-radius: 0 !important;
        font-weight: 600 !important;
        font-size: 1.2rem !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }
    
    .mobile-language-toggle .nav-link.language:hover {
        background: transparent !important;
        color: #333333 !important;
        transform: none !important;
    }
    
    /* Esconder botão de idiomas quando modal está aberto */
    body.modal-open .mobile-language-toggle,
    body.modal-open .nav-container .mobile-language-toggle,
    body.modal-open .navbar .mobile-language-toggle,
    body.modal-open .header .mobile-language-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -1 !important;
    }
    
    /* Regras específicas para quando qualquer modal está visível */
    .modal[style*="display: block"] ~ .header .mobile-language-toggle,
    .modal[style*="display: block"] ~ .navbar .mobile-language-toggle,
    .modal[style*="display: block"] ~ .nav-container .mobile-language-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -1 !important;
    }
    
    /* Regra adicional para esconder botão de idiomas quando qualquer modal está aberto */
    .modal:not([style*="display: none"]) ~ .header .mobile-language-toggle,
    .modal:not([style*="display: none"]) ~ .navbar .mobile-language-toggle,
    .modal:not([style*="display: none"]) ~ .nav-container .mobile-language-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -1 !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .pedido-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .precos-grid {
        grid-template-columns: 1fr;
    }
    
    .preco-card {
        min-height: auto;
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .preco-card.featured {
        transform: none;
    }
    
    .preco-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    /* Melhorar layout do footer em mobile */
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer .contact-info {
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .footer .contact-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-bottom: 1rem !important;
        text-align: center !important;
    }
    
    .footer .contact-item h4 {
        margin: 0 !important;
        font-size: 0.9rem !important;
        color: #3498db !important;
        text-align: center !important;
    }
    
    .footer .contact-item p {
        margin: 0 !important;
        font-size: 0.85rem !important;
        text-align: center !important;
    }
    
    .footer .btn-whatsapp-small,
    .footer .btn-telegram-small {
        width: 120px !important;
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        border-radius: 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin: 0 auto !important;
    }
    
    .locations {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .location {
        text-align: center;
        max-width: 250px;
    }
    
    .location h4 {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        color: #3498db;
    }
    
    .location p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .social-media-links {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .google-review-widget {
        position: static;
        margin-top: 2rem;
    }
    
    .marcas-grid {
        gap: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .marca img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: 250px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .marcas-grid {
        gap: 0.8rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    

    
    .marca img {
        width: 50px;
        height: 50px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .social-media-links {
        gap: 0.6rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .preco-card {
        min-height: 250px;
        padding: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .nav-logo img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    /* Ajustes para botão de idioma em ecrãs pequenos */
    .mobile-language-toggle {
        margin-right: 0.5rem !important;
    }
    
    .mobile-language-toggle .nav-link.language {
        padding: 0.4rem 0.8rem !important;
        font-size: 1rem !important;
    }
    
    /* Esconder botão de idiomas quando modal está aberto em ecrãs pequenos */
    body.modal-open .mobile-language-toggle,
    body.modal-open .nav-container .mobile-language-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -1 !important;
    }
    
    /* Regras específicas para quando qualquer modal está visível em ecrãs pequenos */
    .modal[style*="display: block"] ~ .header .mobile-language-toggle,
    .modal[style*="display: block"] ~ .navbar .mobile-language-toggle {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        z-index: -1 !important;
    }
} 

.mais-servicos {
    padding: 60px 0;
    background: #f8f9fa;
}
.mais-servicos h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}
.mais-servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}
.servico-detalhe {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    padding: 2rem 1.5rem;
    transition: transform 0.3s;
}
.servico-detalhe:hover {
    transform: translateY(-5px);
}
.servico-detalhe h3 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.servico-detalhe ul {
    list-style: disc inside;
    color: #666;
    line-height: 1.7;
    padding-left: 0;
}
.servico-detalhe li {
    margin-bottom: 0.5rem;
} 

.tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.tab-link {
    background: #f8f9fa;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 8px 8px 0 0;
    color: #3498db;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
    font-size: 1.15rem;
}
.tab-link.active, .tab-link:hover {
    background: #135058;
    color: #fff;
}
.tab-content {
    display: none;
    animation: fadeIn 0.3s;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.preco-card {
    animation: slideInUp 0.6s ease-out;
}

.preco-card:nth-child(1) { animation-delay: 0.1s; }
.preco-card:nth-child(2) { animation-delay: 0.2s; }
.preco-card:nth-child(3) { animation-delay: 0.3s; }
.preco-card:nth-child(4) { animation-delay: 0.4s; }
.preco-card:nth-child(5) { animation-delay: 0.5s; }
.preco-card:nth-child(6) { animation-delay: 0.6s; }

/* Restaurar animações dos cards dentro dos modais */
.modal .preco-card {
    animation: slideInUp 0.6s ease-out;
}
.dryclean-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
    max-width: 800px;
}

/* Centrar a tabela dentro do modal */
.modal .dryclean-table {
    display: block;
    margin: 2rem auto;
    max-width: 800px;
    width: 100%;
}

/* Centrar o container da tabela */
.modal .tab-interna-content .dryclean-table {
    display: block;
    margin: 2rem auto;
    text-align: center;
}

.dryclean-table th, .dryclean-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
}
.dryclean-table th {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}
.dryclean-table tr:last-child td {
    border-bottom: none;
}
.dryclean-note {
    background: #f8f9fa;
    border-left: 4px solid #135058;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    border-radius: 8px;
} 

/* Tabs Internas */
.tabs-internas {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.tab-interna-link {
    background: #e9ecef;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    color: #495057;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    outline: none;
}

.tab-interna-link:hover {
    background: #dee2e6;
    color: #212529;
}

.tab-interna-link.active {
    background: #135058;
    color: white;
}

.tab-interna-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

/* Restaurar animações das abas internas dentro dos modais */
.modal .tab-interna-content {
    animation: fadeIn 0.3s ease-in;
}

.tab-interna-content.active {
    display: block;
}

/* Garantir que a tabela seja visível */
.tab-interna-content.active .dryclean-table {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Garantir que a tabela seja visível na modal */
.modal .tab-interna-content.active .dryclean-table {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* Corrigir cores do texto na tabela da modal */
.modal .dryclean-table th,
.modal .dryclean-table td {
    color: #333 !important;
}

.modal .dryclean-table th {
    color: #2c3e50 !important;
}

.modal .dryclean-note {
    color: #333 !important;
}

.modal .dryclean-note p {
    color: #333 !important;
} 

/* Botões dos cards de preço */
.btn-comprar, .btn-consultar {
    background: #135058;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.btn-comprar::before, .btn-consultar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-comprar:hover::before, .btn-consultar:hover::before {
    left: 100%;
}

.btn-comprar:hover, .btn-consultar:hover {
    background: #0f3d42;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(19, 80, 88, 0.4);
}

.btn-consultar {
    background: #95a5a6;
}

.btn-consultar:hover {
    background: #7f8c8d;
    box-shadow: 0 5px 15px rgba(149, 165, 166, 0.3);
} 

/* Ajustar cards únicos para terem o mesmo tamanho */
.single-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.single-card-grid .preco-card {
    grid-column: 1;
} 

/* Botão de recolha na tabela de limpeza a seco */
.dryclean-table .btn-comprar {
    width: auto;
    display: inline-block;
    margin: 0.5rem auto 0 auto;
}

/* Informações Adicionais - Como Funciona */
.info-adicional {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.info-adicional h2 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.2rem;
    position: relative;
}

.info-adicional h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #135058, #135058);
    border-radius: 2px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.info-card {
    background: #fff;
    padding: 1.3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(19, 80, 88, 0.1), transparent);
    transition: left 0.5s ease;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #135058, #0f3d42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #135058, #0f3d42);
}

.info-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.6rem;
}

.info-card p {
    color: #666;
    line-height: 1.3;
    font-size: 0.75rem;
}

/* Centralizar botões dentro dos info-cards */
.info-card button {
    margin: 0 auto;
    display: block;
}

/* Centralizar especificamente o botão Check Availability */
.info-card .btn-whatsapp-small {
    margin: 0 auto !important;
    display: block !important;
}

/* Responsividade para informações adicionais */
@media (max-width: 768px) {
    .info-adicional h2 {
        font-size: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .info-icon {
        width: 60px;
        height: 60px;
    }
    
    .info-icon i {
        font-size: 1.5rem;
    }
}

/* FAQ Layout com Imagem */
.faq-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.faq-text-content {
    flex: 1;
}

.faq-text-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-text-content p {
    text-align: center;
    margin-bottom: 3rem;
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sobre-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid #3498db;
}

.sobre-section h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.sobre-section p {
    color: #555;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

.faq-image {
    position: sticky;
    top: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.faq-image img:hover {
    transform: scale(1.05);
}

/* FAQ Items Escondidos */
.hidden-faq {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.hidden-faq.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Botão Ler Mais */
.read-more-container {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

    .read-more-btn {
        background: linear-gradient(135deg, #3498db, #2980b9);
        color: white;
        border: none;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    }

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 1% auto;
    padding: 0;
    border-radius: 15px;
    width: 95%;
    max-width: 1600px;
    max-height: 98vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid #e9ecef;
    background: #43cea2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #185a9d, #43cea2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #185a9d, #43cea2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    border-radius: 15px 15px 0 0;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    color: #135058;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #135058 #f1f1f1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #135058;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #0f3d42;
}

/* Responsividade para Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 10px auto;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 15px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
        color: #135058;
        line-height: 1.2;
    }
    
    .modal-body {
        padding: 15px 20px;
        max-height: calc(95vh - 80px);
        overflow-y: auto;
    }
    
    .modal-header .close {
        top: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,0.1);
        border-radius: 50%;
        z-index: 10001;
        cursor: pointer;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px;
        min-width: 44px;
    }
    
    .modal-header .close:hover {
        background: rgba(0,0,0,0.2);
        transform: scale(1.1);
    }
    
    .modal-header .close:active {
        transform: scale(0.95);
    }
    
    .modal .preco-card {
        min-height: 220px;
        padding: 1rem;
    }
    
    .modal .preco-card h3 {
        font-size: 1.1rem;
    }
    
    .modal .preco-card .preco {
        font-size: 1.5rem;
    }
    
    .modal .preco-card p {
        font-size: 0.9rem;
    }
    
    .modal .preco-card ul {
        font-size: 0.85rem;
    }
    
    .modal .preco-card li {
        margin-bottom: 0.3rem;
    }
}

/* Estilos para as tabs da modal */
.modal .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #e9ecef;
    gap: 10px;
}

.modal .tab-link {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
}

.modal .tab-link:hover {
    color: #135058;
    background-color: rgba(19, 80, 88, 0.1);
}

.modal .tab-link.active {
    color: #135058;
    border-bottom-color: #135058;
    background-color: rgba(19, 80, 88, 0.1);
}

.modal .tab-content {
    display: none;
    opacity: 0;
    visibility: hidden;
}

.modal .tab-content.active {
    display: block;
    opacity: 1;
    visibility: visible;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para as tabs internas (sub-tabs) */
.modal .tabs-internas {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    gap: 8px;
}

.modal .tab-interna-link {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
}

.modal .tab-interna-link:hover {
    background: #e9ecef;
    color: #333;
}

.modal .tab-interna-link.active {
    background: -webkit-linear-gradient(90deg, #7ca7b1,#7ca7b1,#7ca7b1);/* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(90deg, #7ca7b1,#7ca7b1,#7ca7b1);/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    border-color: #7ca7b1;
}

.modal .tab-interna-content {
    display: none;
}

.modal .tab-interna-content.active {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

/* Responsividade para tabs */
@media (max-width: 768px) {
    .modal .tabs {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .modal .tab-link {
        text-align: center;
        border-radius: 8px;
        border-bottom: none;
        border-left: 3px solid transparent;
        padding: 12px 16px;
        font-size: 0.95rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .modal .tab-link.active {
        border-left-color: #135058;
        border-bottom-color: transparent;
        background-color: rgba(19, 80, 88, 0.1);
    }
    
    .modal .tabs-internas {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .modal .tab-interna-link {
        font-size: 0.9rem;
        padding: 10px 14px;
        min-height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.read-more-icon {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-icon {
    transform: rotate(180deg);
}

/* Responsividade para FAQ */
@media (max-width: 768px) {
    .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .faq-image {
        position: static;
        order: -1;
    }
    
    .faq-image img {
        max-width: 80%;
    }
    
    .read-more-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
} 

/* FAQ Grid Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e1e8ed;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.faq-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.faq-card:hover .faq-card-image img {
    transform: scale(1.05);
}

.faq-card-content {
    padding: 1.5rem;
}

.faq-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.faq-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #7f8c8d;
}

.faq-author {
    font-weight: 500;
    color: #3498db;
}

.faq-date {
    color: #95a5a6;
}

.faq-card-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.faq-read-more {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-read-more:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.faq-read-more:active {
    transform: translateY(0);
}

/* Responsive adjustments for FAQ grid */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .faq-card-content {
        padding: 1.25rem;
    }
    
    .faq-card-content h3 {
        font-size: 1rem;
    }
    
    .faq-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .faq-grid {
        gap: 1rem;
    }
    
    .faq-card-image {
        height: 180px;
    }
    
    .faq-card-content {
        padding: 1rem;
    }
    
    .faq-read-more {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Modal Styles for FAQ Content */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    background: #43cea2;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #185a9d, #43cea2);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #185a9d, #43cea2); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 10;
    position: relative;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
    flex: 1;
    color: #135058;
}

.close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e1e8ed;
}

.modal-author {
    font-weight: 600;
    color: #135058;
    font-size: 1rem;
}

.modal-date {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.modal-text h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #135058;
}

.modal-text h3:first-of-type {
    margin-top: 0;
}

.modal-text p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.modal-text ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 1.5rem;
}

.modal-text li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.2rem;
        color: #135058;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-image {
        height: 200px;
    }
    
    .modal-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
        color: #135058;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-image {
        height: 180px;
    }
    
    .modal-text h3 {
        font-size: 1.1rem;
    }
    
    .modal-text p,
    .modal-text li {
        font-size: 0.95rem;
    }
} 

/* Responsive adjustments for blog grid */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .blog h2 {
        font-size: 1.8rem;
        margin-top: 1.5rem;
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    .blog-content h3 {
        font-size: 1rem;
    }
    
    .blog-content p {
        font-size: 0.85rem;
    }
}

/* Aumentar tamanho das caixas de preços nos modais */
.modal .preco-card {
    padding: 1.5rem;
    min-height: 350px;
    font-size: 1rem;
}

.modal .preco-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.modal .preco-card .preco {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.modal .preco-card p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
}

.modal .preco-card ul {
    margin-bottom: 1.2rem;
}

.modal .preco-card li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.modal .preco-card .btn-comprar,
.modal .preco-card .btn-consultar {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: white;
    color: black;
    border: 2px solid #135058;
}

.modal .preco-card .btn-comprar:hover,
.modal .preco-card .btn-consultar:hover {
    background-color: #f8f9fa;
    color: black;
    border-color: #0f3d42;
}

/* Aplicar design dos botões "Comprar" aos botões da seção hero */
.hero-buttons .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 48px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    background-color: white;
    color: black;
    border: 2px solid #135058;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary svg {
    flex-shrink: 0;
    margin-right: 8px;
}

.hero-buttons .btn-primary:hover {
    background-color: #f8f9fa;
    color: black;
    border-color: #0f3d42;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 80, 88, 0.3);
}

.hero-buttons .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(19, 80, 88, 0.3);
}

.hero-marcas-wrapper .marcas {
    position: relative;
    z-index: 2;
    color: #333;
}

.hero-marcas-wrapper .marcas h3 {
    color: #333;
}

/* Testimonial Links com Animações Modernas */
.testimonial-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.testimonial-link:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-link .testimonial {
    position: relative;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-link:hover .testimonial {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(19, 80, 88, 0.95) 0%, rgba(15, 61, 66, 0.95) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    color: white;
    font-weight: 600;
    text-align: center;
    backdrop-filter: blur(4px);
}

.testimonial-link:hover .testimonial-overlay {
    opacity: 1;
    transform: scale(1);
}

.testimonial-overlay i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: pulse 2s infinite;
}

.testimonial-overlay span {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Efeito de brilho no hover */
.testimonial-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.testimonial-link:hover::before {
    left: 100%;
}

/* Responsividade para mobile */
@media (max-width: 768px) {
    .testimonial-link:hover {
        transform: translateY(-4px);
    }
    
    .testimonial-overlay {
        padding: 1rem;
    }
    
    .testimonial-overlay i {
        font-size: 1.5rem;
    }
    
    .testimonial-overlay span {
        font-size: 0.9rem;
    }
}

/* Centralizar conteúdo dentro dos modais */
.modal .precos-grid {
    justify-content: center;
    align-items: center;
}

/* Centralizar tabs internas */
.modal .tabs-internas {
    justify-content: center;
}

/* Centralizar tabelas nos modais */
.modal .dryclean-table {
    margin-left: auto;
    margin-right: auto;
}

/* Centralizar notas das tabelas */
.modal .dryclean-note {
    margin-left: auto;
    margin-right: auto;
}

/* Centralizar grids de cartão único */
.modal .single-card-grid {
    justify-content: center;
}

/* Centralizar botões nas tabelas */
.modal .dryclean-table .btn-comprar {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

/* Centralizar especificamente as 3 caixas do modal de Engomadoria */
#engomadoriaModal .precos-grid {
    justify-content: center !important;
    align-items: center !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    gap: 2rem !important;
}

/* Responsividade para o modal de Engomadoria */
@media (max-width: 1024px) {
    #engomadoriaModal .precos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    #engomadoriaModal .precos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}



/* Centralizar tabelas nas sub-abas de Lavagem */
#maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-table,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-table {
    margin: 0 auto !important;
    max-width: 800px !important;
    width: 100% !important;
    text-align: center !important;
}

/* Centralizar notas das tabelas */
#maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-note,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-note {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 800px !important;
    width: 100% !important;
}

/* Centralizar botões nas tabelas */
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-table .btn-comprar {
    margin: 0 auto !important;
    display: block !important;
    width: auto !important;
    min-width: 200px !important;
}

/* Centralizar grids de cartão único (tapetes e pele) */
#maisServicosModal .single-card-grid {
    justify-content: center !important;
    align-items: center !important;
    display: flex !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

/* Modal de Lavagem - CSS básico */
#maisServicosModal .modal-body {
    padding: 1rem 2rem;
}

/* Layout para a aba "Lavar e dobrar" - caixas lado a lado */
#maisServicosModal .tab-interna-content#tab-interna-lavar-dobrar {
    margin-top: 1rem;
}

#maisServicosModal .tab-interna-content#tab-interna-lavar-dobrar .precos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Layout para a aba "Wash and fold" - caixas lado a lado (página em inglês) */
#maisServicosModal .tab-interna-content#tab-interna-wash-fold {
    margin-top: 1rem;
}

#maisServicosModal .tab-interna-content#tab-interna-wash-fold .precos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Centralização das tabelas nas abas "Lavar e engomar" e "Limpeza a seco" */
#maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-table,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-table {
    margin: 0 auto;
    max-width: 800px;
    width: 100%;
    display: block;
}

/* Centralizar também o conteúdo das abas de tabelas */
#maisServicosModal .tab-interna-content#tab-interna-lavar-engomar,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Centralização das tabelas nas abas "Wash and iron" e "Dry cleaning" (página em inglês) */
#maisServicosModal .tab-interna-content#tab-interna-wash-iron .dryclean-table,
#maisServicosModal .tab-interna-content#tab-interna-dry-clean .dryclean-table {
    margin: 0 auto !important;
    max-width: 800px !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
}

#maisServicosModal .tab-interna-content#tab-interna-wash-iron .dryclean-table th,
#maisServicosModal .tab-interna-content#tab-interna-wash-iron .dryclean-table td,
#maisServicosModal .tab-interna-content#tab-interna-dry-clean .dryclean-table th,
#maisServicosModal .tab-interna-content#tab-interna-dry-clean .dryclean-table td {
    text-align: center !important;
}

/* Centralizar também o conteúdo das abas de tabelas (página em inglês) */
#maisServicosModal .tab-interna-content#tab-interna-wash-iron,
#maisServicosModal .tab-interna-content#tab-interna-dry-clean {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Espaçamento para as abas "Tapetes" e "Peças em pele" */
#maisServicosModal .tab-interna-content#tab-interna-tapetes,
#maisServicosModal .tab-interna-content#tab-interna-pele {
    margin-top: 1rem;
}

/* Espaçamento para as abas "Carpets" e "Leather pieces" (página em inglês) */
#maisServicosModal .tab-interna-content#tab-interna-carpets,
#maisServicosModal .tab-interna-content#tab-interna-leather {
    margin-top: 1rem;
}

/* Responsividade para o grid das caixas */
@media (max-width: 1200px) {
    #maisServicosModal .tab-interna-content#tab-interna-lavar-dobrar .precos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    #maisServicosModal .tab-interna-content#tab-interna-wash-fold .precos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    #maisServicosModal .tab-interna-content#tab-interna-lavar-dobrar .precos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    #maisServicosModal .tab-interna-content#tab-interna-wash-fold .precos-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Estilo para o subtítulo do modal Express Services */
.modal-subtitle {
    text-align: center;
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
}

.modal-subtitle p {
    margin: 0;
    font-size: 0.9rem;
    color: #135058;
    font-style: italic;
    font-weight: normal;
    line-height: 1.2;
}

/* Ajustar o header para acomodar o subtítulo */
.modal-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.modal-header h2 {
    margin: 0 0 0.2rem 0;
}

.modal-header .close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: #666;
    transition: all 0.3s ease;
    z-index: 1000;
}

.modal-header .close:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #999;
    color: #333;
    transform: scale(1.1);
}

/* Estilo para a nota de disponibilidade */
.availability-note {
    text-align: center;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: #888;
}

.availability-note em {
    font-style: italic;
    font-weight: normal;
}

/* Removidas regras que forçavam visibilidade de todas as abas */

/* Centralizar caixas únicas de carpets e leather pieces na página em inglês */
#maisServicosModal .single-card-grid {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    max-width: 400px !important;
    margin: 0 auto !important;
}

#maisServicosModal .single-card-grid .preco-card {
    width: 100% !important;
    max-width: 400px !important;
    margin: 0 auto !important;
    padding: 0.25rem !important;
}

/* Responsividade para o modal de Engomadoria */
@media (max-width: 1024px) {
    #engomadoriaModal .precos-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    #expressModal .precos-grid {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    
    #expressModal .preco-card {
        flex: 1 1 100% !important;
        min-width: auto !important;
    }
}

@media (max-width: 768px) {
    #engomadoriaModal .precos-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    #expressModal .precos-grid {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    #expressModal .preco-card {
        flex: 1 1 100% !important;
        min-width: auto !important;
    }
}

/* Responsividade para tabelas nas sub-abas de Lavagem */
@media (max-width: 768px) {
    #maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-table,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-table {
    max-width: 100% !important;
    margin: 0.1rem auto !important;
    padding: 0.5rem !important;
}

#maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-table th,
#maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-table td,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-table th,
#maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-table td {
    padding: 0.3rem 0.5rem !important;
}
    
    #maisServicosModal .tab-interna-content#tab-interna-lavar-engomar .dryclean-note,
    #maisServicosModal .tab-interna-content#tab-interna-limpeza-seco .dryclean-note {
        max-width: 100% !important;
        margin: 0.25rem auto !important;
    }
}

/* Sistema de abas interno - versão limpa */
#maisServicosModal .tab-interna-content {
    display: none;
}

#maisServicosModal .tab-interna-content.active {
    display: block;
}

/* REGRAS ESPECÍFICAS PARA O MODAL LAVANDARIA - MANTER COR VERDE ESCURO */
#maisServicosModal .tab-interna-link.active {
    background: #135058 !important; /* Verde escuro para modal Lavandaria */
    color: white !important;
}

/* Estilo específico para abas ativadas via footer */
#maisServicosModal .tab-interna-link.active[data-tab="tab-interna-wash-fold"],
#maisServicosModal .tab-interna-link.active[data-tab="tab-interna-wash-iron"],
#maisServicosModal .tab-interna-link.active[data-tab="tab-interna-dry-clean"] {
    background: #135058 !important; /* Verde escuro */
    color: white !important;
    border-color: #135058 !important;
    font-weight: 600 !important;
}

/* Garantir que apenas o botão ativo fica verde - regras mais específicas */
#maisServicosModal .tab-interna-link:not(.active) {
    background: #f8f9fa !important;
    color: #666 !important;
    border-color: #e9ecef !important;
}

/* Forçar estilo específico para cada aba individual */
#maisServicosModal [data-tab="tab-interna-wash-fold"].active {
    background: #135058 !important;
    color: white !important;
}

#maisServicosModal [data-tab="tab-interna-wash-iron"].active {
    background: #135058 !important;
    color: white !important;
}

#maisServicosModal [data-tab="tab-interna-dry-clean"].active {
    background: #135058 !important;
    color: white !important;
}

#maisServicosModal .tab-interna-content .tab-interna-link.active {
    background: #135058 !important; /* Verde escuro para sub-abas do modal Lavandaria */
    color: white !important;
}

/* Ajustar espaçamento das abas principais do modal Express - igual ao laundry */
#expressModal .tabs-internas {
    margin-bottom: 0;
    margin-top: -1rem;
    gap: 8px;
}

#expressModal .tab-interna-link {
    margin-right: 1rem;
    margin-bottom: 0;
}

/* Espaçamento das sub-abas dentro do modal Express - igual ao laundry */
#expressModal .tab-interna-content .tabs-internas {
    margin-bottom: 0;
    margin-top: 1rem;
    gap: 8px;
}

#expressModal .tab-interna-content .tab-interna-link {
    margin-right: 0.75rem;
    margin-bottom: 0;
}

/* REGRAS ESPECÍFICAS PARA AS ABAS ATIVAS DO MODAL EXPRESS */
#expressModal .tab-interna-link.active {
    background: #135058 !important; /* Verde escuro para abas principais */
    color: white !important;
}

#expressModal .tab-interna-content .tab-interna-link.active {
    background: #7ca7b1 !important; /* Azul-acinzentado para sub-abas */
    color: white !important;
}

/* CSS para as sub-abas do Express Modal */
#expressModal .tab-interna-content .tab-interna-content {
    display: none;
}

#expressModal .tab-interna-content .tab-interna-content.active {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
}

/* FORÇAR VISIBILIDADE DAS CAIXAS QUANDO A SUB-ABA ESTÁ ATIVA */
#expressModal .tab-interna-content .tab-interna-content.active .precos-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}

#expressModal .tab-interna-content .tab-interna-content.active .preco-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
}

/* REGRA ESPECÍFICA PARA A SUB-ABA "LAVAR E DOBRAR" */
#expressModal #tab-interna-express-24h-wash-fold .precos-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2rem !important;
}

/* REGRA ESPECÍFICA PARA A SUB-ABA "LAVAR E DOBRAR" - EXPRESS 12H */
#expressModal #tab-interna-express-12h-wash-fold .precos-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2rem !important;
}

/* REGRA ESPECÍFICA PARA A SUB-ABA "LAVAR E DOBRAR" - EXPRESS 6H */
#expressModal #tab-interna-express-6h-wash-fold .precos-grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2rem !important;
}

/* Regra específica para Express 12h, Express 24h e Express 6h - mesmo tamanho padrão */
#expressModal #tab-interna-express-12h-wash-fold .preco-card,
#expressModal #tab-interna-express-24h-wash-fold .preco-card,
#expressModal #tab-interna-express-6h-wash-fold .preco-card {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
    flex: 1 1 300px !important;
    max-width: 400px !important;
}

/* REGRA ULTRA ESPECÍFICA PARA GARANTIR VISIBILIDADE */
#expressModal #tab-interna-express-24h #tab-interna-express-24h-wash-fold .precos-grid .preco-card.express-24h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
    position: relative !important;
    z-index: 999 !important;
}

/* REGRAS ULTRA ESPECÍFICAS PARA AS SUB-ABAS ATIVAS - APENAS MODAL EXPRESS */
#expressModal #tab-interna-express-24h .tab-interna-content .tab-interna-link.active,
#expressModal #tab-interna-express-12h .tab-interna-content .tab-interna-link.active,
#expressModal #tab-interna-express-6h .tab-interna-content .tab-interna-link.active,
#expressModal #tab-interna-express-3h30 .tab-interna-content .tab-interna-link.active {
    background: #7ca7b1 !important; /* Azul-acinzentado para sub-abas */
    color: white !important;
    border-color: #7ca7b1 !important;
}

/* REGRAS MEGA ESPECÍFICAS PARA CADA SUB-ABA INDIVIDUAL */
#expressModal #tab-interna-express-24h .tabs-internas .tab-interna-link.active {
    background: #7ca7b1 !important;
    color: white !important;
}

#expressModal #tab-interna-express-12h .tabs-internas .tab-interna-link.active {
    background: #7ca7b1 !important;
    color: white !important;
}

#expressModal #tab-interna-express-6h .tabs-internas .tab-interna-link.active {
    background: #7ca7b1 !important;
    color: white !important;
}

#expressModal #tab-interna-express-3h30 .tabs-internas .tab-interna-link.active {
    background: #7ca7b1 !important;
    color: white !important;
}

/* REGRAS ULTRA ESPECÍFICAS USANDO DATA-TAB */
#expressModal button[data-tab="tab-interna-express-24h-wash-fold"].active,
#expressModal button[data-tab="tab-interna-express-24h-wash-iron"].active,
#expressModal button[data-tab="tab-interna-express-12h-wash-fold"].active,
#expressModal button[data-tab="tab-interna-express-12h-wash-iron"].active,
#expressModal button[data-tab="tab-interna-express-6h-wash-fold"].active,
#expressModal button[data-tab="tab-interna-express-6h-wash-iron"].active,
#expressModal button[data-tab="tab-interna-express-3h30-wash-fold"].active,
#expressModal button[data-tab="tab-interna-express-3h30-wash-iron"].active {
    background: #7ca7b1 !important;
    color: white !important;
    border-color: #7ca7b1 !important;
}

/* REGRA GLOBAL PARA FORÇAR VISIBILIDADE DE TODOS OS ELEMENTOS EXPRESS-24H */
#expressModal .preco-card.express-24h {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-direction: column !important;
    height: 100% !important;
    min-height: 350px !important;
    position: relative !important;
    z-index: 999 !important;
}

/* REGRA ESPECÍFICA PARA O GRID DE PREÇOS */
#expressModal .precos-grid {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 2rem !important;
}









/* Espaçamento das abas do modal Service Express - igual ao laundry */
#engomadoriaModal .tabs-internas {
    margin-bottom: 0;
    gap: 8px;
}

#engomadoriaModal .tab-interna-link {
    margin-right: 1rem;
    margin-bottom: 0;
}

/* Espaçamento das sub-abas dentro do modal Service Express - igual ao laundry */
#engomadoriaModal .tab-interna-content .tabs-internas {
    margin-bottom: 0;
    gap: 8px;
}

#engomadoriaModal .tab-interna-content .tab-interna-link {
    margin-right: 0.75rem;
    margin-bottom: 0;
}