/*
Theme Name: Enfold Child
Theme URI: http://www.kriesi.at/themes/enfold/
Template: enfold
Author: Kriesi
Author URI: https://kriesi.at
Description: A superflexible and responsive Business Theme by Kriesi - Update notifications available on Facebook and via newsletter: - Join the Facebook Group - Subscribe to our Newsletter
Version: 6.0.8.1734213444
Updated: 2024-12-14 22:57:24

*/

/* Estilos para las tablas de precios */
.pricing-tables-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    gap: 20px !important;
}

.pricing-table {
    flex: 0 0 calc(33.33% - 20px) !important;
    max-width: calc(33.33% - 20px) !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
}

.pricing-plan {
    border: 2px solid #FF001A !important;
    border-radius: 10px !important;
    padding: 20px !important;
    background-color: #1C1C1C !important;
    color: white !important;
    text-align: center !important;
    transition: transform 0.3s !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 1 !important;
    height: 100% !important;
}

.pricing-plan:hover {
    transform: scale(1.05);
}

.plan-header {
    background-color: #FF001A;
    color: #fff;
    padding: 15px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    font-size: 1.5rem;
    margin: -20px -20px 20px -20px;
}

.pricing-plan .price {
    font-weight: bold;
    font-size: 1.5em;
    color: white;
    margin: 20px 0;
}

.pricing-plan h2 {
    color: white;
    margin: 20px 0;
}

.pricing-plan ul {
    list-style-position: inside;
    text-align: left;
    padding: 0 20px;
    margin: 20px 0;
}

.pricing-plan li {
    margin-bottom: 15px;
    line-height: 1.4;
}

.button-container {
    margin-top: auto;
    padding: 10px;
    border: 1px solid #FF001A;
    border-radius: 5px;
}

.pricing-button {
    background-color: #FF001A;
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.1em;
}

/* Media queries */
@media only screen and (max-width: 989px) {
    .pricing-table {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media only screen and (max-width: 767px) {
    .pricing-table {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

/* Estilos para la página 404 */
.error-404-content {
    background: linear-gradient(145deg, #1C1C1C, #242424) !important;
    border: 1px solid rgba(255,0,26,0.1) !important;
    border-radius: 15px !important;
    padding: 60px 40px !important;
    margin: 40px auto !important;
    max-width: 800px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
}

.error-404-content h1 {
    text-shadow: 2px 2px 4px rgba(255,0,26,0.3) !important;
}

.error-404-content .avia-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255,0,26,0.2) !important;
    transition: all 0.3s ease !important;
}

.error-404-content img {
    transition: opacity 0.3s ease !important;
}

.error-404-content img:hover {
    opacity: 1 !important;
}

