/*
Theme Name: UltraAnápolis Theme
Theme URI: https://seusite.com.br/
Author: Seu Nome
Author URI: https://seusite.com.br/
Description: Tema personalizado para o site de ultrassom em Anápolis, focado em SEO e conversão.
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, seo, medical
Text Domain: ultraanapolis
*/

html { scroll-behavior: smooth; }
.shelf-container { scrollbar-width: none; /* Firefox */ }
.shelf-container::-webkit-scrollbar { display: none; /* Safari and Chrome */ }
.shelf-card .overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 60%); }

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
.modal-fade-in { animation: fadeIn 0.3s ease-out forwards; }

details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
details .icon-plus { transition: transform 0.3s ease-in-out; }
details[open] .icon-plus { transform: rotate(135deg); }

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.hero-image-animation {
    animation: float 4s ease-in-out infinite;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}
.slide-in-up { transform: translateY(40px); }
.slide-in-left { transform: translateX(-40px); }
.slide-in-right { transform: translateX(40px); }
.zoom-in { transform: scale(0.9); }
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

