/*
Theme Name: Agência Gato Mia
Theme URI: https://agenciagatomia.com
Author: Gato Mia Team
Description: Tema customizado para a Agência Gato Mia.
Version: 1.0
Text Domain: gato-mia
*/

/* Core Styles from original CSS */
:root {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #e2e8f0; /* slate-200 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.faq-item .faq-answer {
    transition: max-height 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}

.faq-item.open .faq-answer {
    max-height: 20rem; /* Adjust as needed */
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in {
    animation: fade-in 0.3s ease-out forwards;
}
