/* Seus estilos personalizados */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8fafc;
    /* Fundo sutil para a página inteira */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    /* Melhora a renderização das fontes em todos os navegadores */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

/* Animações */
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Classes de Animação */
.animated-section {
    opacity: 0;
}

.is-visible {
    animation: slideInUp 1s ease-out forwards;
}

.btn-pulse {
    animation: pulse 2s infinite ease-in-out;
}

/* Efeitos de Hover */
.card-hover, .icon-hover, .brand-logo {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.icon-hover:hover {
    transform: scale(1.1);
}

.brand-logo:hover {
    transform: scale(1.1);
}

/* Componentes Flutuantes */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 100;
}

#exit-intent-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 200;
    animation: fadeIn 0.3s ease-out;
}

/* Estilos do Carrossel (Swiper) */
.swiper-slide {
    height: 60vh;
    min-height: 500px;
}

.swiper-button-next, .swiper-button-prev {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 20px;
}
.swiper-pagination-bullet-active {
    background-color: #ffffff;
}

/* Utilidades */
.rotate-180 {
    transform: rotate(180deg);
}