/*
Theme Name: Servicios y Soluciones V&P
Theme URI: https://example.com/
Author: Antigravity
Author URI: https://example.com/
Description: Theme converted from React/Vite application using Tailwind CSS.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: servicios-vp
*/

/* Basic Reset & Tailwind Defaults are handled via CDN in header.php */
body {
    font-family: 'Inter', sans-serif;
}

/* Material Symbols Outlined - REQUIRED because Google Fonts link only provides font-face */
.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

/* Animations for Mobile Menu */
@keyframes slideInFromTop {
    from {
        transform: translateY(-0.5rem);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-in {
    animation-duration: 0.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.slide-in-from-top-2 {
    animation-name: slideInFromTop;
}