/* tisos.cl - Custom Styles */

body {
    font-family: 'DM Sans', sans-serif;
    background-color: #f9f9ff;
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.zoho-block {
    padding-top: 100px;
    padding-bottom: 100px;
}

.vibrant-gradient {
    background: linear-gradient(135deg, #673de6 0%, #4f17ce 100%);
}

.hero-mega-card {
    height: 90vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem 2rem;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.hero-mega-card:hover {
    transform: scale(1.02);
    z-index: 10;
    filter: brightness(1.1);
}

.card-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.hero-mega-card:hover .card-bg-overlay {
    opacity: 0.85;
}

.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}
