﻿a:hover {
    text-decoration: none;
}
a {
    text-decoration: none;
}
.popup-overlay {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* El contenedor principal con la imagen de fondo */
.popup-content {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 400px;
    background-color: #fff;
    background-image: url('../img/pages/PopUp/popHorizontalMX.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

/* El botón de la "X" para cerrar el pop-up */
.close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 50px;
    color: #FFF;
    cursor: pointer;
    transition: color 0.3s;
    line-height: 1;
}

    .close-btn:hover {
        color: #FFF;
    }

/* El botón de Cotizar aquí */
.quote-btn {
    text-align: center;
    position: absolute;
    bottom: 30px;
    right: 40px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #0A9D65; /* Color verde */
    box-shadow: 5px 10px 30px #000;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s;
    width: 300px;
}

    .quote-btn:hover {
        background-color: #087d50;
        text-decoration: none;
        color: white;
        transform: scale(1.1);
        transition: transform 0.3s ease;
    }

@media(max-width: 576px) {
    .popup-content {
        position: relative;
        width: 100%;
        max-width: 400px;
        height: 600px;
        background-color: #fff;
        background-image: url('../img/pages/PopUp/popverticalMx.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 8px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        padding: 20px;
    }

    .popup-overlay {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .quote-btn {
        text-align: center;
        position: absolute;
        bottom: 20px;
        right: 40px;
        padding: 12px 25px;
        font-size: 16px;
        font-weight: bold;
        color: #fff;
        background-color: #0A9D65; /* Color verde */
        border: 2px solid black;
        border-radius: 5px;
        cursor: pointer;
        text-decoration: none;
        transition: background-color 0.3s;
        width: 300px;
        text-decoration: none;
    }
}

