body {
    font-family: 'Inter', sans-serif;
    background-color: #f9fafb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: #1f2937;
    scrollbar-width: thin;
    scrollbar-color: #326168 #f1f1f1;
}
.text-ciano { color: #326168; }
.bg-ciano { background-color: #326168; }
.text-vermelho { color: #F6706D; }
.carousel-section {
    width: 100%;
    background-color: #f3f4f6;
    overflow: hidden;
}
.carousel-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3.2 / 1;
    max-height: 600px;
    margin: 0 auto;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.carousel-slide img.active {
    opacity: 1;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    color: #326168;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.carousel-nav:hover {
    background-color: #F6706D;
    color: white;
}
.carousel-nav.prev { left: 10px; }
.carousel-nav.next { right: 10px; }
@media (max-width: 768px) {
    .carousel-container {
        aspect-ratio: 16 / 9;
        max-height: 300px;
    }
    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        background-color: rgba(255, 255, 255, 0.5);
    }
}
.features-section {
    margin-top: -3rem;
    margin-bottom: 3rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 1.5rem;
        padding: 2rem;
    }
}
.feature-card {
    text-align: center;
    padding: 0.75rem;
    transition: transform 0.3s ease;
    cursor: default;
    border-radius: 0.5rem;
}
.feature-card:hover {
    transform: translateY(-5px);
    background-color: #f9fafb;
}
.feature-card .icon-wrapper {
    font-size: 1.75rem;
    color: #F6706D;
    margin-bottom: 0.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}
@media (min-width: 768px) {
    .feature-card .icon-wrapper {
        font-size: 2rem;
        height: 3rem;
        margin-bottom: 1rem;
    }
}
.feature-card:hover .icon-wrapper {
    color: #326168;
    transform: scale(1.1);
}
.feature-card h3 {
    font-weight: 700;
    color: #326168;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}
.feature-card p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
}
@media (max-width: 767px) {
    .features-section { margin-top: -2rem; margin-bottom: 2rem; }
}
.products-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #326168;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}
.products-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #F6706D;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}
@media (min-width: 768px) {
    .products-section-title { font-size: 2.25rem; }
}
.home-product-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}
.home-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px rgba(0,0,0,0.1);
    border-color: #e5e7eb;
}
.card-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
}
@media (min-width: 768px) {
    .card-image-wrapper { height: 220px; }
}
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.home-product-card:hover .card-image-wrapper img {
    transform: scale(1.1);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(50, 97, 104, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.home-product-card:hover .card-overlay {
    opacity: 1;
}
.overlay-btn {
    background: white;
    color: #326168;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}
.home-product-card:hover .overlay-btn {
    transform: translateY(0);
}
.card-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}
.card-icon {
    position: absolute;
    top: -1.75rem;
    right: 1rem;
    background: #F6706D;
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: 3px solid white;
}
.card-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1f2937;
    margin-top: 0.25rem;
    margin-bottom: 0.5rem;
}
.card-content p {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.5;
}
.card-link {
    color: #326168;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
    text-decoration: none;
    padding: 0.5rem 0;
}
.card-link:hover {
    color: #F6706D;
}
.atendimento-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (min-width: 768px) {
    .atendimento-card {
        flex-direction: row;
        justify-content: space-between;
        padding: 2rem;
        gap: 2rem;
    }
}
.atendimento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.atendimento-icon-wrapper {
    background: #ffffff;
    transition: all 0.3s ease;
}
.atendimento-icon {
    font-size: 2.5rem;
    color: #326168;
    transition: all 0.3s ease;
}
@media (min-width: 768px) {
    .atendimento-icon { font-size: 3rem; }
}
.atendimento-card:hover .atendimento-icon-wrapper {
    background-color: #fff1f2;
}
.atendimento-card:hover .atendimento-icon {
    color: #F6706D;
    transform: scale(1.1) rotate(-5deg);
}
.status-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
    border: 2px solid transparent;
}
@media (min-width: 768px) {
    .status-tag { width: auto; }
}
.status-tag.loading { background: #e5e7eb; color: #6b7280; animation: pulse 1.5s infinite ease-in-out; }
.status-tag.aberto { background: #dcfce7; color: #166534; border-color: #86efac; }
.status-tag.fechado { background: #fee2e2; color: #991b1b; border-color: #fca5a5; }
.status-tag.prestes-a-fechar { background: #fef3c7; color: #854d0e; border-color: #fde047; }
.testimonials-section { background-color: #f3f4f6; }
.testimonials-section-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #326168;
    margin-bottom: 1rem;
    line-height: 1.2;
}
@media (min-width: 768px) {
    .testimonials-section-title { font-size: 2.25rem; }
}
.testimonials-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.testimonials-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    min-height: 280px;
}
@media (min-width: 768px) {
    .testimonials-track-container { min-height: 240px; }
}
.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    position: absolute;
}
.testimonial-box {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    margin: 0 0.5rem;
}
@media (min-width: 768px) {
    .testimonial-box { padding: 2rem; }
}
.quote-icon { font-size: 1.25rem; color: #e5e7eb; margin-bottom: 0.75rem; }
.testimonial-box .text { font-style: italic; color: #4b5563; font-size: 0.95rem; margin-bottom: 1.25rem; line-height: 1.5; }
.testimonial-box .author { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.author .avatar { width: 36px; height: 36px; background: #326168; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 0.8rem; }
.author .info { text-align: left; }
.author strong { display: block; color: #1f2937; font-size: 0.9rem; }
.author span { font-size: 0.75rem; color: #9ca3af; }
.testimonial-box .stars { color: #fbbf24; font-size: 0.8rem; }
.nav-btn {
    background: white;
    border: 1px solid #e5e7eb;
    color: #326168;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.nav-btn:hover { background: #326168; color: white; border-color: #326168; }
@media (min-width: 768px) {
    .nav-btn { width: 40px; height: 40px; }
}
.btn-view-catalog {
    transition: all 0.3s ease;
}
.btn-view-catalog:hover {
    background-color: #326168;
    color: white;
    border-color: #326168;
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(50, 97, 104, 0.25);
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background-color: #326168; border-radius: 10px; }
#scrollToTopBtn {
    position: fixed;
    bottom: 5.5rem;
    right: 1rem;
    width: 2.75rem;
    height: 2.75rem;
    background-color: #326168;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 90;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: opacity 0.3s, transform 0.3s;
}
#scrollToTopBtn.hidden { opacity: 0; pointer-events: none; transform: translateY(10px); }
#scrollToTopBtn:hover { background-color: #F6706D; }
@media (min-width: 768px) {
    #scrollToTopBtn { bottom: 6rem; right: 1.5rem; width: 3rem; height: 3rem; }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }