body {
    background-color: transparent !important;
    padding-top: 10px; 
    overflow-x: hidden;
}

:root {
    --primary-color: #fc7e15;
}

html {
    scroll-behavior: smooth;
}

.display-3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.5rem;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5em;
}

.text-urestaurant-warning { color: var(--primary-color); }
.bg-urestaurant-warning { background-color: var(--primary-color); }

.triangulo-superior-derecha {
    position: relative;
    background-color: transparent !important;
    overflow: hidden;
    height: 600px;
}

.triangulo-superior-derecha::before {
    height: 580px;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fc7e15;
    clip-path: polygon(0 100%, 0 0, 150% 0);
    z-index: -1;
}

.card { 
    border: none; 
    border-radius: 1rem !important; 
    margin-bottom: 20px;
}

.navbar-light .navbar-nav .nav-link { 
    color: #fff !important;
    font-weight: 500; 
}

article {
    scroll-margin-top: 80px; 
}

.shadow-custom {
    box-shadow: 0 15px 30px rgba(252, 126, 21, 0.2);
    transition: all 0.3s ease;
}

.shadow-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(252, 126, 21, 0.4);
}

#Acerca i {
    transition: transform 0.3s ease;
}

#Acerca .col-md-6:hover i {
    transform: scale(1.2);
}

.img-hero-animada {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translate(0, 0px); }
    50% { transform: translate(0, 15px); }
    100% { transform: translate(0, 0px); }
}

.opacity-90 {
    opacity: 0.9;
}

.hover-card-orange {
    transition: all 0.3s ease;
}

.hover-card-orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(252, 126, 21, 0.15) !important;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.img-float-sutil {
    animation: float 4s ease-in-out infinite;
}

@media (min-width: 768px) {
    .display-3 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .triangulo-superior-derecha {
        height: 600px;
        min-height: auto;
    }

    .triangulo-superior-derecha::before {
        clip-path: polygon(0% 100%, 0% 0%, 150% 0%);
    }

    .card{
        transition: transform 0.3s ease;
    }

    .card:hover { 
        transform: translateY(-7px); 
    }

    div .border-servicios{
        border-right: 2px solid #dee2e6;
    }
    
}