﻿/*body {
    font-family: 'Segoe UI', sans-serif;*/
    /*background-color: #177074;*/
    /*background-color: white;
    background-image: url('../img/banner.jpg');
    background-repeat: no-repeat;
    background-position: center top;*/ /* Centrado arriba */
    /*background-size: 100% 400px;*/ /* Ancho total y altura fija de 400px */
/*}*/
body {
    font-family: 'Segoe UI', sans-serif;
    background-color: white;
    background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)), url('../img/banner.jpg');
    background-repeat: no-repeat;
    background-position: center top;
    /* CAMBIO CLAVE: cover hace que la imagen cubra el ancho sin deformarse */
    /* El navegador calculará la altura automáticamente según la proporción de la foto */
    background-size: 100% 110%;
}

.bi {
    font-size: 16px;
    color: #93D973;
}

.bi-whatsapp {
    color: #01E675!important;
}
.watsap {
    color: #01E675;
    text-decoration: none;
}

.llamanos {
    display: inline-block; /* O 'block' según el contenedor */
    line-height: 1.2;
    font-size: 14px;
    color: white;
}

.pricing-card {
    border: none;
    border-radius: 1rem;
    background: #0F2027; /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #2C5364, #203A43, #0F2027); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #2C5364, #203A43, #0F2027); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    box-shadow: 5px 5px 15px 5px rgba(0,0,0,0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2em 0;
    opacity: 0.9;
}

.featured-card {
    transform: scale(1.04); /* La hace más grande */
    z-index: 10; /* La pone por encima */
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8); /* Sombra más fuerte */
    border: 2px solid #93D973; /* opcional: borde resaltado */
    opacity: 1;
}


.featured-card {
    animation: popOut 0.9s ease;
}

@keyframes popOut {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1.08);
        opacity: 1;
    }
}



.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

    /*.pricing-card{
	font-size: 2rem;
	font-weight: bold;
	color: #0d6efd;
}*/

.pricing-card ul li {
    margin: 5px 0;
    font-size: 0.9rem;
}

/*.featured {
	border: 2px solid #0FBAEF;
	transform: scale(1.03);
}*/

.priceTitle {
    color: #0D484A !important;
}

.text-muted {
    color: #093536 !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: -9px !important;
}

.text-mutep {
    color: #093536 !important;
    font-size: 1.2rem;
}

hr {
    color: darkviolet;
    width: 50%;
    text-align: center;
}

.card-title {
    color: #93D973;
    font-weight: 600;
}

.priceValue {
    color: white !important;
    font-size: 1.8em !important;
    font-weight: 100;
    font-family: Rockwell;
}

.list-unstyled {
    color: white !important;
    text-align: initial;
    padding: 0 1.5em;
}

.v360-button {
    /*border: solid 3px #0FBAEF;*/
    font-weight: 600;
    background-color: #125E61;
}

.btnReturn {
    z-index: 1050;
    font-size: 2.5rem; /* Ajustado para que quepa bien en el círculo */
    text-decoration: none;
    color: #93D973 !important;
    height: 3rem;
    width: 3rem;
    border: 1px solid black;
    /* Nuevos estilos */
    background-color: #102229; /* El fondo que pediste */
    border-radius: 50%; /* Lo hace circular */
    display: flex; /* Para centrar el contenido */
    align-items: center; /* Centrado vertical */
    justify-content: center; /* Centrado horizontal */
    padding-bottom: 5px; /* Ajuste visual opcional según la fuente */
}

/*.v360-butto {
    font-weight: 600;
    background-color: ;
}*/
.v360-button:hover {
    background-color: #93D973;
}

@media (max-width: 768px) {
    .featured {
        transform: none;
    }
}