@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root{
    --color1: #93C572;
    --color1b:#93c57230;
    --color2: #808000;
    --color2b:rgba(84, 214, 93, 0.529);
    --color3: #43616f;
    --color3b:rgb(218, 250, 249);
    --color4: #ffffff;
    --color4b: rgba(255,255,255,.2);
    --color5: #212121;
    --color5b: #555555;
}

*{
    font-family: "Montserrat", sans-serif;
    padding: 0;
    margin:0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
}


input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  box-shadow: none;
  background-color: #fff;
}

.wrap{
    width: 90%;
    max-width: 1430px;
    margin:auto;
}

/* header-map */
.header-map{
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    z-index: 99;
}

.header-map img{
    width: 100px;
}


/* header */
header .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color4);
    border-radius: 10px;
    padding: 10px 20px;
    margin:20px auto 10px auto;
}

header .wrap .logo{
    width: 150px;
}

/* btn-nav */
#btn-nav{
	display: none;
}

header label{
	display: none;
}


@media(max-width:800px){
	header label{
		position: absolute;
		display: block;
		width: 45px;
		height: 45px;
		top:25px;
		right: 25px;
		border-radius: 3px;
		cursor: pointer;
		outline: none;
		background: var(--color10);
		border-radius: 5px;
        z-index: 99;

	}

	header label span{
		width: 50%;
		height: 3px;
		background: var(--color2);
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: all .3s ease;
	}

	header label span:nth-child(1){
		top:14px;
	}

	header label span:nth-child(2){
		bottom:14px;
	}

	#btn-nav:checked ~ label span:nth-child(1){
		transform: translateX(-50%) rotate(-45deg);
        background-color: var(--color4);
		top:21px;
	}

	#btn-nav:checked ~ label span:nth-child(2){
		transform: translateX(-50%) rotate(45deg);
		top:21px;
        background-color: var(--color4);
	}
}

/* nav */
header .wrap nav ul{
    display: flex;
    gap:20px;
    list-style-type: none;
}

header .wrap nav ul li a{
    display: block;
    text-decoration: none;
    color: var(--color5);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    white-space: pre;
    transition:color .3s ease;
}

header .wrap nav ul li a:hover{
    color: var(--color1);
}


@media(max-width:800px){
    nav{
        position: absolute;
        left: 0;
        top:0;
        margin:0;
        background-color: var(--color2);
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 20;
        opacity: 0;
        position: none;
        transition:opacity .3s ease;
        pointer-events: none;
    }


    nav ul{
        display: block;
        width: 100%;
        flex-wrap: wrap;
    }

    nav ul li{
        transition: all .3s ease;
        transform: translateY(-20px);
        transition-delay: .3s;
        opacity: 0;
        display: block;
        width: 100%;
    }

    #btn-nav:checked ~ nav ul li{
        transform: translateY(0);
        opacity: 1;
    }

    #btn-nav:checked ~ nav ul li:nth-child(1){ transition-delay: 0s; }
    #btn-nav:checked ~ nav ul li:nth-child(2){ transition-delay: 0.1s; }
    #btn-nav:checked ~ nav ul li:nth-child(3){ transition-delay: 0.2s; }
    #btn-nav:checked ~ nav ul li:nth-child(4){ transition-delay: 0.3s; }
    #btn-nav:checked ~ nav ul li:nth-child(5){ transition-delay: 0.4s; }
    #btn-nav:checked ~ nav ul li:nth-child(6){ transition-delay: 0.5s; }
    #btn-nav:checked ~ nav ul li:nth-child(7){ transition-delay: 0.6s; }
    #btn-nav:checked ~ nav ul li:nth-child(8){ transition-delay: 0.7s; }
    #btn-nav:checked ~ nav ul li:nth-child(9){ transition-delay: 0.8s; }
    #btn-nav:checked ~ nav ul li:nth-child(10){ transition-delay: 0.9s; }


    nav ul li a{
        text-align: center;
        display: block;
        padding: 15px 20px;
        font-size: 20px;
        color: var(--color4) !important;
    }

    #btn-nav:checked ~ nav{
        opacity: 1;
        pointer-events: all;
    }
}

/* Planes: listas con checks */
.plan-details ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 0 0;
}

.plan-details ul li {
    position: relative;
    padding-left: 22px;
    margin: 10px 0;
    line-height: 1.5;
    font-size: 14px;
    text-align: left;
}

.plan-details ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 2px;
    color: #16a34a;
    font-weight: 700;
    font-size: 14px;
}

/* banner-logo */
.banner-logo .wrap{
    display: flex;
    align-items: center;
    gap:20px;
}

.banner-logo .wrap h3{
    font-size: 20px;
    font-weight: 500;
    color: var(--color5b);
    line-height: 1;
}

.banner-logo .wrap h3 span{
    display: block;
    color: var(--color2);
    font-size: 30px;
    font-weight: 700;
}

@media(max-width:800px){
    .banner-logo .wrap{
        flex-wrap: wrap;
        justify-content: center;
    }

    .banner-logo .wrap h3{
        text-align: center;
    }
}

.logo-carousel {
    width: 100%;
    padding: 20px 0;
    background-color: var(--color1b);
    border-radius: 13px;
}

.logo-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding: 10px 0;
}

.logo-carousel .swiper-slide img {
    width: 100px;
    height: 100px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    object-fit: contain;
    cursor: pointer;
    border-radius: 10px;
    margin:0 0 -5px 0;
}

.logo-carousel .swiper-slide img:hover {
    opacity: 1;
}


/* home */
.home {
    width: 90%;
    border-radius: 13px;
    max-width: 1430px;
    margin:20px auto;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    background-color: #000000;
}

.home > picture{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: .6;
    top:0;
    pointer-events: none;
}

.home > picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .wrap{
    position: relative;
    z-index: 2;
    color: var(--color4);
    max-width: 1430px;
}

.home .wrap h2{
    font-size: 20px;
    font-weight: 400;
}

.home .wrap h1{
    font-size: 50px;
    font-weight: 900;
    max-width: 800px;
    margin:20px 0 30px 0;
}

@media(max-width:800px){
    .home .wrap{
        text-align: center;
    }


    .home .wrap h1{
        font-size: 30px;
    }
}

.search-home{
    background-color: rgba(255,255,255,.5);
    backdrop-filter: blur(5px);
    padding: 10px;
    border-radius: 10px;
}

.content{
    padding: 70px 0;
}

.content.servicios-page {
    padding: 30px 0 50px;
}

.content .wrap .search-home form{
    background-color: var(--color1b);
    margin:0 0 30px 0;
}

.search-home form{
    background-color: var(--color4);
    border-radius: 10px;
    gap:1%;
    padding: 20px;
    flex-wrap: wrap;
}

.search-home form .col--3{
    display: flex;
    flex:1;
    width: 100%;
    padding: 5px 0;
    gap:10px;
}

@media(max-width:800px){
    .search-home form .col--3{
        flex-direction: column;
    }
}

.search-home form p.link{
    width: 100%;
}

.search-home form p.link a{
    font-size: 14px;
    margin:10px 10px 0 0;
    display: flex;
    color: var(--color2);
    text-decoration: none;
    transition: color .3s ease;
    justify-content: right;
    align-items: center;
    gap:10px;
}

.search-home form p.link a:hover{
    color: var(--color1);
}

.search-home form input,
.search-home form select{
    flex: 1;
    border:solid 1px #dedede;
    border-radius: 5px;
    padding:12px  14px;
    font-size: 16px;
    width: 33%;
    outline: none;
    color: var(--color5);
    transition: border-color .3s ease-out;
}

.search-home form input::placeholder{
    color: var(--color5);
}

.search-home form input:focus,
.search-home form select:focus{
    border-color: var(--color1);
}

.search-home form select{
    cursor: pointer;
}

.search-home button{
    flex:1;
    outline: none;
    padding: 14px 50px;
    border:none;
    background-color: var(--color2);
    color: var(--color4);
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin:10px 0 0 0;
    transition: background-color  .3s ease-out;
}



@media(max-width:800px){
.search-home form{
        display: block;
    }
.search-home form input,
.search-home form select{
        width: 100%;
        margin:10px 0;
    }

.search-home button{
        width: 80%;
        max-width: 200px;
    }
}

.search-home button:hover,
.search-home button:focus{
    background-color: var(--color1);
}


/* properties-home */
.properties-home{
    padding: 50px 0;
    width: 95%;
    border-radius: 13px;
    max-width: 1570px;
    margin:20px auto;
    background-image: url(../images/bg-1.webp);
    background-size: 300px;
    overflow: hidden;
}

.properties-home > .wrap > h2{
    font-size: 20px;
    color: var(--color2);
    position: relative;
    padding: 0 0 0 20px;
    text-align: center;
}

.properties-home > .wrap > h2:before{
    content: "";
    width: 100px;
    height: 5px;
    position: absolute;
    bottom:-20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color1);
    border-radius: 5px;
}

.properties-home > .wrap > h2 span{
    display: block;
    font-size: 30px;
    font-weight: 800;
    color:var(--color1)
}

@media(max-width:800px){
    .properties-home > .wrap > h2{
        text-align: center;
        padding: 0;
        font-size: 20px;
    }

    .properties-home > .wrap > h2 span{
        font-size: 25px;
    }

    .properties-home > .wrap > h2:before{
        width: 100px;
        height: 5px;
        top:110%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.properties-home > .wrap .properties-slider{
    padding: 50px 0;
    overflow: visible;
}

.properties-home .properties-slider .swiper-wrapper {
    align-items: stretch;
}

.properties-home .wrap .properties-slider .gallery-properties li.item{
    padding: 0 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    max-width: 25%;
}

@media(max-width:800px) {
    .properties-home .wrap .properties-slider .gallery-properties li.item{
        max-width: 100%;
    }
    
}

.properties-home .wrap .properties-slider .gallery-properties li.item .inter{
    background-color: var(--color4);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease-in-out;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.properties-home .wrap .properties-slider .gallery-properties li.item:hover .inter{
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.properties-home .wrap .properties-slider .gallery-properties li.item .inter .btn-more{
    position: absolute;
    top:50%;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0;
    transition: transform .3s ease-in-out, opacity .3s ease-out;
    pointer-events: none;
    width:80px;
    height: 80px;
}

.properties-home .wrap .properties-slider .gallery-properties li.item:hover .inter .btn-more{
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.properties-home .wrap .properties-slider .gallery-properties li.item .inter .btn-more a{
    display: block;
    text-align: center;
    color: var(--color4);
    background-color: rgba(0,0,0,.6);
    line-height: 80px;
    width: 80px;
    border-radius: 60%;
    transition:box-shadow .3s ease-out, color .3s ease-out,  background-color .3s ease-out;
}


.properties-home .wrap .properties-slider .gallery-properties li.item .inter .btn-more a:hover{
    box-shadow: 0 0 0 20px rgba(255,255,255,.1);
    color: var(--color4);
    background-color: var(--color2);
}

.properties-home .wrap .properties-slider .gallery-properties li.item .inter .image{
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

@media(max-width:800px){
    .properties-home .wrap .properties-slider .gallery-properties li.item .inter .btn-more,
    .properties-home .wrap .properties-slider .gallery-properties li.item:hover .inter .btn-more{
        opacity: 1;
        top:20px;
        left: 20px;
        transform:none ;
    }

    .properties-home .wrap .properties-slider .gallery-properties li.item .inter .btn-more a{
        background-color: var(--color4);
        color: #212121 !important;
    }
}


.properties-home .wrap .properties-slider .gallery-properties li.item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    transition: transform .3s ease-out;
}

.properties-home .wrap .properties-slider .gallery-properties li.item:hover .image img{
    transform: scale(1.2);
}

.properties-home .wrap .properties-slider .gallery-properties li.item .image .tag{
    position: absolute;
    top:20px;
    right: 20px;
    z-index: 2;
    background-color: rgba(0,0,0,.5);
    font-size: 14px;
    color: var(--color4);
    padding: 5px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    font-weight: 400;
}

.properties-home .wrap .properties-slider .gallery-properties li.item .image .price{
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
    color: var(--color4);
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
}

.properties-home .wrap .properties-slider .gallery-properties li.item h2.name-propertie{
    padding: 15px 20px 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color5);
    flex: 1 0 auto;
}

.properties-home .wrap .properties-slider .gallery-properties li.item h3.location-propertie{
    padding: 6px 20px 18px 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color5);
}

.properties-home .wrap .properties-slider .gallery-properties li.item .attributes{
    padding: 10px 20px 20px 20px;
}
.properties-home .wrap .properties-slider .gallery-properties li.item .attributes ul{
    display: flex;
    flex-wrap: wrap;
}

.properties-home .wrap .properties-slider .gallery-properties li.item .attributes ul li{
    width: 50%;
    padding: 10px;
    list-style: none;
    font-size: 12px;
    opacity: 1;
    white-space: pre;
}

.properties-home .wrap .properties-slider .swiper-pagination span{
    width: 12px !important;
    height: 12px !important;
    border-radius: 3px;
    transition:all .3s ease;
    opacity: .5;
    background-color: var(--color1) !important;
}

.properties-home .wrap .properties-slider .swiper-pagination span.swiper-pagination-bullet-active{
    width: 80px !important;
    opacity: 1;
    background-color: var(--color1) !important;
}


/* properties-home-2 */
.properties-home-2{
    padding: 50px 0;
    width: 95%;
    border-radius: 13px;
    max-width:1430px;
    margin:20px auto;
    background-color: var(--color5);
    background-size: 300px;
    overflow: hidden;
}

.properties-home-2 > .wrap > h2{
    font-size: 20px;
    color: var(--color4);
    position: relative;
    padding: 0 0 0 20px;
    text-align: center;
}

.properties-home-2 > .wrap > h2:before{
    content: "";
    width: 100px;
    height: 5px;
    position: absolute;
    bottom:-20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color4);
    border-radius: 5px;
}

.properties-home-2 > .wrap > h2 span{
    display: block;
    font-size: 30px;
    font-weight: 800;
    color:var(--color4)
}
/* Integration feedback cards */
.integration-card {
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 14px;
    margin-top: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    font-size: 14px;
    line-height: 1.4;
}
.integration-card__title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 6px;
}
.integration-card__body a {
    color: inherit;
    text-decoration: underline;
}
.integration-card.tone-success {
    border-color: #0f5132;
    background: #d1e7dd;
    color: #0f5132;
}
.integration-card.tone-info {
    border-color: #055160;
    background: #cff4fc;
    color: #055160;
}
.integration-card.tone-warning {
    border-color: #664d03;
    background: #fff3cd;
    color: #664d03;
}
.integration-card.tone-danger {
    border-color: #842029;
    background: #f8d7da;
    color: #842029;
}


@media(max-width:800px){
    .properties-home-2 > .wrap > h2{
        text-align: center;
        padding: 0;
        font-size: 20px;
    }

    .properties-home-2 > .wrap > h2 span{
        font-size: 25px;
    }

    .properties-home-2 > .wrap > h2:before{
        width: 100px;
        height: 5px;
        top:110%;
        left: 50%;
        transform: translateX(-50%);
    }
}

.properties-home-2 > .wrap{
    width: 100%;
    padding: 0 30px;
}

.properties-home-2 > .wrap .properties-slider-2{
    padding: 50px 0;
    overflow: visible;
}

.properties-home-2 .properties-slider-2 .swiper-wrapper {
    align-items: stretch;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item{
    padding: 0 10px;
    height: auto;
    display: flex;
    flex-direction: column;
    max-width: 25%;
}

@media(max-width:800px){
    .properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item{
        max-width: 100%;
    }
}


.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter{
    background-color: var(--color4);
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s ease-in-out;
    border-radius: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item:hover .inter{
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter .btn-more{
    position: absolute;
    top:50%;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%) translateY(-50%) scale(1);
    opacity: 0;
    transition: transform .3s ease-in-out, opacity .3s ease-out;
    pointer-events: none;
    width:80px;
    height: 80px;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item:hover .inter .btn-more{
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter .btn-more a{
    display: block;
    text-align: center;
    color: var(--color4);
    background-color: rgba(0,0,0,.6);
    line-height: 80px;
    width: 80px;
    border-radius: 60%;
    transition:box-shadow .3s ease-out, color .3s ease-out,  background-color .3s ease-out;
}

@media(max-width:800px){
    .properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter .btn-more,
    .properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item:hover .inter .btn-more{
        opacity: 1;
        top:20px;
        left: 20px;
        transform:none ;
    }

    .properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter .btn-more a{
        background-color: var(--color4);
        color: #212121 !important;
    }
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter .btn-more a:hover{
    box-shadow: 0 0 0 20px rgba(255,255,255,.1);
    color: var(--color4);
    background-color: var(--color2);
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .inter .image{
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    transition: transform .3s ease-out;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item:hover .image img{
    transform: scale(1.2);
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .image .tag{
    position: absolute;
    top:20px;
    right: 20px;
    z-index: 2;
    background-color: rgba(0,0,0,.5);
    font-size: 14px;
    color: var(--color4);
    padding: 5px;
    border-radius: 5px;
    backdrop-filter: blur(3px);
    font-weight: 400;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .image .price{
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 2;
    color: var(--color4);
    font-size: 24px;
    font-weight: 700;
    padding: 20px;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item h2.name-propertie{
    padding: 15px 20px 0 20px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color5);
    flex: 1 0 auto;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item h3.location-propertie{
    padding: 6px 20px 18px 20px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color5);
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .attributes{
    padding: 10px 20px 20px 20px;
}
.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .attributes ul{
    display: flex;
    flex-wrap: wrap;
}

.properties-home-2 .wrap .properties-slider-2 .gallery-properties li.item .attributes ul li{
    width: 50%;
    padding: 10px;
    list-style: none;
    font-size: 12px;
    opacity: 1;
    white-space: pre;
}

.properties-home-2 .wrap .properties-slider-2 .swiper-pagination span{
    width: 10px !important;
    height: 10px !important;
    border-radius: 10px;
    transition:all .3s ease;
    opacity: .5;
    background-color: var(--color4) !important;
}

.properties-home-2 .wrap .properties-slider-2 .swiper-pagination span.swiper-pagination-bullet-active{
    width: 80px !important;
    opacity: 1;
    background-color: var(--color4) !important;
}


/* ==============================
   Sección de Planes
============================== */
.planes {
    text-align: center;
    margin:40px 0;
}

.plan-free-note{
    font-size: 14px;
}

.planes .wrap{
    border-radius: 13px;
    background: var(--color1b);
    padding: 60px 50px;
}

.planes h2 {
    font-size: 2rem;
    color: var(--color5);
    margin-bottom: 10px;
}

.planes .subtitulo {
    font-size: 1rem;
    color: var(--color5b);
    margin-bottom: 40px;
}

/* Tabs de categorías de planes (similar a user/planes) */
.planes-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.planes-toggle .toggle-btn {
    border: 1px solid #dbe4f0;
    background: #ffffff;
    color: #334155;
    padding: 10px 18px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.planes-toggle .toggle-btn:hover {
    transform: translateY(-1px);
    border-color: #93c5fd;
    color: #1d4ed8;
}

.planes-toggle .toggle-btn.active {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 18px 40px -28px rgba(37, 99, 235, 0.8);
}

.planes .gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Galería de planes en home (reutiliza el mismo layout) */
.planes-home{
    padding:50px 0;
}
.planes-home .gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Fila de logos de portales para planes */
.planes-portales-logos,
.planes-home-portales-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 18px 0 26px;
    flex-wrap: wrap;
}

.planes-portales-logos img,
.planes-home-portales-logos img {
    height: 82px;
    border-radius: 10px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 0.9;
}

.planes-portales-logos img:hover,
.planes-home-portales-logos img:hover {
    filter: none;
    opacity: 1;
}

.plan {
    background: var(--color4);
    border: 1px solid var(--color1b);
    padding: 48px 25px;
    max-width: 350px;
    flex: 1;
    border-radius: 10px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media(max-width:800px){
    .planes .gallery,
    .planes-home .gallery{
        display: block;
        text-align: center;
    }
    .plan{
        width: 80%;
        max-width: 80%;
        margin:20px auto;
    }
}

.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: var(--color1);
}

.plan.destacado {
    border: 2px solid var(--color1);
    background: var(--color1b);
}

.plan .etiqueta {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color1);
    color: var(--color4);
    font-size: 0.85rem;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
}


.plan h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--color5);
}

.plan .price {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color2);
}

.plan .price span {
    font-size: 0.9rem;
    color: var(--color5b);
}


.plan .features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    text-align: left;
}

.plan .features li {
    margin: 8px 0;
    font-size: 0.95rem;
    padding-left: 24px;
    position: relative;
    color: var(--color5);
}

.plan .features li::before {
    content: "✔";
    color: var(--color1);
    position: absolute;
    left: 0;
    font-size: 1rem;
    line-height: 1;
}

/* ==============================
   Formulario de registro público (signup)
============================== */
.page-signup {
    padding: 30px 24px 40px;
}

.page-signup .titulo-pagina {
    font-size: 1.8rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.page-signup .subtitulo-pagina {
    font-size: 0.98rem;
    color: #64748b;
    margin-bottom: 24px;
}

.formulario-signup .campo,
.formulario-signup .campo-grid {
    margin-bottom: 16px;
}

.formulario-signup label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 6px;
}

.formulario-signup input[type="text"],
.formulario-signup input[type="email"],
.formulario-signup input[type="tel"],
.formulario-signup input[type="password"] {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    font-size: 0.95rem;
    color: #111827;
    background-color: #f9fafb;
}

.formulario-signup input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 1px #2563eb33;
    background-color: #ffffff;
}

.formulario-signup .campo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.formulario-signup .ayuda-campos {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 4px 0 16px;
}

.formulario-signup .boton-primario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
}

.formulario-signup .boton-primario:hover {
    box-shadow: 0 10px 30px -20px rgba(34, 197, 94, 0.8);
}

@media (max-width: 640px) {
    .page-signup {
        padding: 24px 18px 32px;
    }

    .formulario-signup .campo-grid {
        grid-template-columns: 1fr;
    }
}

.btn-contratar {
    display: inline-block;
    background: var(--color1);
    color: var(--color4);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-contratar:hover {
    background: var(--color2);
}

/* ==============================
   Registro público — Layout 2 columnas + Google
============================== */

/* Contenedor principal */
.signup-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 40px 0 60px;
}

/* ── Columna izquierda: beneficios ── */
.signup-benefits-card {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 20px;
    padding: 36px 32px 32px;
}

.signup-benefits-card h2 {
    font-size: 1.3rem;
    color: #f1f5f9;
    margin: 0 0 24px;
    font-weight: 700;
}

.signup-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.signup-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.93rem;
    line-height: 1.5;
}

.signup-benefits-list li .material-symbols-outlined {
    font-size: 22px;
    color: #60a5fa;
    flex-shrink: 0;
    margin-top: 1px;
}

.signup-benefits-list li strong {
    color: #f1f5f9;
    display: block;
    margin-bottom: 2px;
}

/* Sección Google dentro del card de beneficios */
.signup-google-section {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    margin-bottom: 20px;
}

.signup-google-label {
    font-size: 0.9rem;
    color: #94a3b8;
    margin: 0 0 14px;
    text-align: center;
}

/* ── Botón Google ── */
.btn-google-signup {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px 20px;
    background: #ffffff;
    color: #0f172a;
    font-size: 0.97rem;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: transform .15s ease, box-shadow .15s ease;
    box-sizing: border-box;
}

.btn-google-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    color: #0f172a;
}

.btn-google-signup--full {
    margin-top: 10px;
}

.signup-google-note {
    font-size: 0.82rem;
    color: #64748b;
    text-align: center;
    margin: 12px 0 0;
}

.signup-login-link {
    text-align: center;
    font-size: 0.88rem;
    color: #64748b;
    margin: 4px 0 0;
}

.signup-login-link a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
}

/* ── Columna derecha: formulario ── */
.signup-form-col .page-signup {
    background: #fff;
    border-radius: 20px;
    padding: 30px 28px 36px;
    box-shadow: 0 18px 40px -28px rgba(15,23,42,0.2);
    border: 1px solid #e5e7eb;
}

/* Divisor "or" */
.signup-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 22px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
}

.signup-divider::before,
.signup-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Submit del formulario de email */
.formulario-signup__submit {
    width: 100%;
    justify-content: center;
}

/* Labels opcionales */
.signup-optional {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.85em;
}

/* ── Página signup-completar (sc-*) ── */
.sc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 36px 32px 40px;
    max-width: 500px;
    margin:auto;
    box-shadow: 0 12px 32px -16px rgba(15,23,42,0.14);
}

.sc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.sc-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.sc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 3px;
}

.sc-email {
    font-size: 0.87rem;
    color: #64748b;
    margin: 0;
}

.sc-intro {
    font-size: 0.88rem;
    color: #475569;
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Formulario */
.sc-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sc-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.sc-req {
    color: #ef4444;
    margin-left: 2px;
}

.sc-optional {
    font-weight: 400;
    color: #94a3b8;
    font-size: 0.8em;
    margin-left: 4px;
}

.sc-input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.95rem;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.sc-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: #fff;
}

.sc-hint {
    font-size: 0.82rem;
    color: #6b7280;
    margin: 0;
}

.sc-hint--info {
    font-size: 0.83rem;
    color: #64748b;
    background: #f1f5f9;
    border-radius: 8px;
    padding: 9px 12px;
}

/* Checkbox de términos — id+for, NO anidado */
.sc-field--terms {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.sc-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    border: 2px solid #cbd5e1;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    transition: border-color .15s, background .15s;
    position: relative;
}

.sc-checkbox:checked {
    background: #0f172a;
    border-color: #0f172a;
}

.sc-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.sc-checkbox:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.sc-terms-label {
    font-size: 0.9rem;
    color: #374151;
    cursor: pointer;
    line-height: 1.5;
    font-weight: 400;
}

.sc-terms-label a {
    color: #0f172a;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid #0f172a;
    padding-bottom: 0px;
    transition: color .15s, border-color .15s;
}

.sc-terms-label a:hover {
    color: #2563eb;
    border-color: #2563eb;
}

/* Botón submit */
.sc-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
    margin-top: 4px;
}

.sc-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px -8px rgba(22,163,74,0.45);
}

.sc-submit:active {
    transform: translateY(0);
    opacity: .9;
}

@media (max-width: 640px) {
    .sc-card {
        padding: 24px 18px 28px;
    }
}

/* ── Pantalla de éxito ── */
.signup-success-google {
    text-align: center;
    padding: 20px 0 10px;
}

.signup-success-check {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(34,197,94,0.3);
}

.signup-success-google h2 {
    font-size: 1.5rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.signup-success-google p {
    color: #475569;
    margin-bottom: 22px;
    font-size: 0.97rem;
}

/* Botón Google en pantalla de éxito — compacto, centrado */
.sc-submit--google {
    display: inline-flex;
    width: auto;
    padding: 12px 28px;
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
    color: #fff;
    font-size: 0.97rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    gap: 10px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(30,64,175,0.22);
    transition: transform .15s ease, box-shadow .15s ease;
    margin-bottom: 16px;
}

.sc-submit--google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(30,64,175,0.34);
    color: #fff;
}

.sc-success-alt {
    font-size: 0.87rem !important;
    color: #94a3b8 !important;
    margin: 0 !important;
}

.sc-success-alt a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.sc-success-alt a:hover {
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .signup-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .signup-benefits-card {
        padding: 26px 20px 24px;
    }
    .signup-form-col .page-signup {
        padding: 24px 18px 28px;
    }
}




/* sub-footer */
.sub-footer{
    padding: 0px 0;
}

.sub-footer .wrap{
    background-color: var(--color5);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    gap:3%;
    padding: 50px;
    flex-wrap: wrap;
    border:solid 1px var(--color1b)
}

.sub-footer .wrap article{
    width: 22%;
}

.sub-footer .wrap article h2{
    font-size: 19px;
    color: var(--color4);
    font-weight: 600;
    margin:0 0 20px 0;
}

.sub-footer .wrap article .logo-footer img{
    max-width: 100px;
    height: auto;
    object-fit: cover;
}

.sub-footer .wrap article p{
    color: var(--color4);
    font-size: 15px;
    line-height: 1.8;
}

.sub-footer .wrap article ul.social{
    display: flex;
    list-style-type: none;
    margin:20px 0 0 0;
    gap:3%;
}


.sub-footer .wrap article ul.social li a{
    color: var(--color4);
    font-size: 20px;
    transition: all .3s ease;
}

.sub-footer .wrap article ul.social li a:hover{
    color: var(--color1);
}

.sub-footer .wrap article ul.menu{
    list-style-type: none;
}


.sub-footer .wrap article ul.menu a{
    display: flex;
    align-items: center;
    color: var(--color4);
    font-size: 15px;
    text-decoration: none;
    padding: 10px 0;
    position: relative;
    transition: color .3s ease-out;
}

@media(max-width:800px){
    .sub-footer .wrap article{
        width: 100%;
        margin:20px 0;
        text-align: center;
    }

    .sub-footer .wrap article ul.social{
        justify-content: center;
    }

    .sub-footer .wrap article ul.menu a{
        justify-content: center;
    }
}

.sub-footer .wrap article ul.menu a:before{
    content: "";
    left: 0;
    position: relative;
    width: 5px;
    height: 5px;
    background-color: var(--color1);
    margin:0 10px 0 0;
    border-radius: 50%;
}

.sub-footer .wrap article ul.menu a:hover{
    color: var(--color1);
}
/* footer */
footer{
    text-align: center;
    padding: 20px 0;
    font-weight: 500;
    color: var(--color5);
}

@media(max-width:800px){
    footer{
        padding: 20px 70px;
    }
}

footer a{
    text-decoration: none;
    color: var(--color1);
    font-weight: 600;
}

/* Modal timeline integraciones (panel) */
.ci-modal.hidden { display: none !important; }
.ci-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; }
.ci-modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.45); backdrop-filter: blur(2px); }
.ci-modal__content { position: relative; background: #fff; border-radius: 10px; width: 520px; max-width: 90%; box-shadow: 0 20px 40px rgba(0,0,0,0.2); padding: 18px 20px 12px; z-index: 2; animation: ciModalIn .25s ease; }
.ci-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ci-modal__header h3 { margin: 0; font-size: 18px; font-weight: 700; }
.ci-modal__close { border: none; background: #f3f4f6; width: 32px; height: 32px; border-radius: 50%; font-size: 18px; line-height: 1; cursor: pointer; }
.ci-modal__body { max-height: 380px; overflow: auto; padding: 4px 0 2px; }

.ci-timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.ci-timeline__item { display: grid; grid-template-columns: 28px 1fr; gap: 8px; align-items: start; padding: 10px 12px; border: 1px solid #e7e9ec; border-radius: 10px; background: #fafbfc; }
.ci-timeline__icon { width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; font-size: 14px; }
.ci-timeline__title { font-weight: 700; margin: 0; font-size: 14px; }
.ci-timeline__desc { margin: 2px 0 0; font-size: 13px; color: #4b5563; }

.ci-status-success .ci-timeline__icon { background: #e7f6ec; color: #1b7f3d; }
.ci-status-warning .ci-timeline__icon { background: #fff6e5; color: #b4690e; }
.ci-status-error .ci-timeline__icon { background: #ffe8e6; color: #b42318; }
.ci-status-pending .ci-timeline__icon { background: #eef2f7; color: #6b7280; }

.ci-status-success .ci-timeline__item { border-color: #d7f0de; background: #f5fbf7; }
.ci-status-warning .ci-timeline__item { border-color: #ffe5c2; background: #fffaf1; }
.ci-status-error .ci-timeline__item { border-color: #ffd1ce; background: #fff7f6; }
.ci-status-pending .ci-timeline__item { border-color: #e7e9ec; background: #fafbfc; }

.ci-icon { font-size: 14px; line-height: 1; display: inline-block; }
.ci-icon--ok { color: #1b7f3d; }
.ci-icon--error { color: #b42318; }
.ci-icon--pending { color: #6b7280; }

.ci-hidden { opacity: 0; transform: translateY(6px); }
.ci-show { opacity: 1; transform: translateY(0); transition: opacity .25s ease, transform .25s ease; }

@keyframes ciModalIn {
    from { transform: translateY(8px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* page-banner */
.page-banner{
    text-align: center;
}

.page-banner .wrap{
    padding: 70px 0;
    border-radius: 10px;
    background-color: var(--color3);
    
}

@media(max-width:800px){
    .page-banner .wrap{
        padding: 30px 20px;
    }
}

.page-banner h1{
    font-size: 30px;
    color: var(--color4);
    font-weight: 400;
}

.page-banner p{
    color: var(--color4);
    opacity: .7;
}

/* not-found */
.not-found{
    padding: 100px 0;
    text-align: center;
    color: var(--color5);
}


/* property-detail */
.property-detail{
    display: flex;
    gap:20px;
    flex-wrap: wrap;
    gap:40px 2%;
}

.share-actions{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:14px;
}
.share-actions .share-label{
    font-weight:700;
    color:#0f172a;
}
.share-actions .share-buttons{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}
.share-actions .share-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border-radius:999px;
    border:1px solid #e2e8f0;
    background:#f8fafc;
    color:#0f172a;
    font-weight:600;
    font-size:13px;
    text-decoration:none;
    transition:all .15s ease;
}
.share-actions .share-btn:hover{
    background:#0f172a;
    color:#ffffff;
    border-color:#0f172a;
    transform:translateY(-1px);
    box-shadow:0 6px 18px rgba(0,0,0,0.08);
}
.share-actions .share-btn--fb{background:#e8f0fe;border-color:#d2def7;}
.share-actions .share-btn--tw{background:#e8f5ff;border-color:#cde7ff;}
.share-actions .share-btn--wa{background:#e7fff2;border-color:#c9f4df;}
.share-actions .share-btn--mail{background:#f4f5f7;border-color:#e5e7eb;}

.property-detail section.info-property-single{
    width: 65%;
}

.property-contact{
    margin:20px 0 0 0;
}

.property-detail section.contact-property-single{
    width: 33%;
     display:block;
}
/* Contacto propiedad - estilos modernos */
.contact-property-single{
    display: flex;
    flex-direction: column;
     gap:20px;
}

.contact-property-single .property-card{
    border:1px solid #e5e7eb;
    border-radius:14px;
    box-shadow:0 16px 28px rgba(15,23,42,0.06);
    background:#fff;
    padding:18px;
}

.contact-property-single .property-card h3{
    margin:0 0 10px;
    font-size:18px;
    color:#0f172a;
}

.contact-property-single .map-frame{
    border-radius:12px;
    overflow:hidden;
    border:1px solid #e2e8f0;
    min-height:280px;
    margin:0 0 18px 0;
}

.contact-property-single .contact-form-box{margin:0;padding:0;border:none;background:transparent;}
.contact-property-single .contact-form-box form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.contact-property-single .contact-form-box label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
    color:#0f172a;
    font-size:13px;
}
.contact-property-single .contact-form-box input,
.contact-property-single .contact-form-box textarea{
    width:100%;
    border:1px solid #d7ddeb;
    border-radius:10px;
    padding:11px 12px;
    font-size:14px;
    background:#f8fafc;
    transition:all .2s;
    outline:none;
}
.contact-property-single .contact-form-box input:focus,
.contact-property-single .contact-form-box textarea:focus{
    border-color:#0f172a;
    box-shadow:0 0 0 3px rgba(15,23,42,0.08);
    background:#fff;
}
.contact-property-single .contact-form-box textarea{min-height:110px;grid-column:1/-1;resize:vertical;}
.contact-property-single .contact-form-box .full{grid-column:1/-1;}
.contact-property-single .contact-form-box #fc-feedback{grid-column:1/-1;}
.contact-property-single .contact-form-box .form-actions{grid-column:1/-1;display:flex;justify-content:flex-start;}
.contact-property-single .contact-form-box button{
    background:linear-gradient(135deg,#111827,#0f172a);
    color:#fff;
    border:none;
    border-radius:12px;
    padding:13px 16px;
    font-weight:700;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.contact-property-single .contact-form-box button:hover{transform:translateY(-1px);box-shadow:0 12px 22px rgba(15,23,42,0.18);}
.contact-property-single .contact-form-box button:active{transform:translateY(0);opacity:.9;}
.contact-property-single .contact-form-box .notice{margin-top:8px;color:#475569;font-size:13px;}
.contact-property-single .contact-form-box .btn-contact-whatsapp{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    margin-top:14px;
    padding:13px 16px;
    border-radius:12px;
    background:#25d366;
    color:#0f5132;
    text-decoration:none;
    font-weight:700;
    transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    box-shadow:0 12px 22px rgba(37,211,102,0.22);
}
.contact-property-single .contact-form-box .btn-contact-whatsapp:hover{transform:translateY(-1px);box-shadow:0 14px 24px rgba(37,211,102,0.28);color:#0b3d25;}
.contact-property-single .contact-form-box .btn-contact-whatsapp:active{transform:translateY(0);opacity:.92;}
.contact-property-single .contact-form-box .btn-contact-whatsapp .icon-whatsapp{font-size:18px;line-height:1;}

.btn-ver-mas-anunciante{
    display:flex;
    align-items:center;
    gap:10px;
    width:100%;
    padding:15px 20px;
    border-radius:14px;
    background: var(--color3);
    color:#fff;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    border:none;
    margin:20px 0 0 0;
    box-shadow:0 4px 20px rgba(30,64,175,0.22);
    transition:transform .2s ease,box-shadow .2s ease,opacity .15s ease;
    box-sizing:border-box;
}
.btn-ver-mas-anunciante:hover{
    box-shadow:0 8px 28px rgba(30,64,175,0.35);
    color:#fff;
    opacity:.93;
}
.btn-ver-mas-anunciante:active{transform:translateY(0);opacity:.85;}
.btn-ver-mas-anunciante strong{font-weight:700;}
.btn-ver-mas-anunciante .material-symbols-outlined{font-size:20px;flex-shrink:0;}

@media(max-width:960px){
    .contact-property-single .contact-form-box form{grid-template-columns:1fr;}
}


@media(max-width:800px){
    .property-detail{
        display: block;
    }

    .property-detail section.info-property-single,
    .property-detail section.contact-property-single{
        width: 100%;
    }
}


.galeria {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    position: relative;
    overflow: hidden;
}

@media(max-width:800px) {
    .galeria {
        width: 100%;
        margin: 0 auto 30px auto;
    }
}

.galeria .main-gallery {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}
.galeria .main-gallery .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color5);
    gap:10px;
}
.galeria .main-gallery img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform .4s ease;
    cursor: zoom-in;
}
.galeria .main-gallery img:hover {
    transform: scale(1.02);
}
.galeria .thumbs-gallery {
    margin-top: 15px;
    padding-bottom: 5px;
}
.galeria .thumbs-gallery .swiper-wrapper {
    display: flex;
    gap:10px;
    justify-content: left;
    flex-wrap: wrap;
}
.galeria .thumbs-gallery .swiper-slide {
    width: 80px !important;
    opacity: .6;
    margin:10px 0 0 0;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all .3s ease;
}
.galeria .thumbs-gallery .swiper-slide-thumb-active {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: none !important;
}
.galeria .thumbs-gallery img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 8px;
    margin:0 0 -5px 0;
}
.galeria .swiper-button-next,
.galeria .swiper-button-prev {
    color: var(--color4);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color5b);
    transition: background .3s ease;
}
.galeria .swiper-button-next:hover,
.galeria .swiper-button-prev:hover {
    background: var(--color5);
}
.galeria .swiper-button-next::after,
.galeria .swiper-button-prev::after {
    font-size: 18px;
}
.detalle-propiedad {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    padding: 40px 20px 60px;
}

@media(max-width:800px){
    .detalle-propiedad{
        width: 100%;
        padding: 20px 0 40px;
    }
}

.detalle-propiedad h2,
.detalle-propiedad h3 {
    font-weight: 700;
    color: var(--color5);
    margin-bottom: 10px;
}
.detalle-propiedad p {
    font-size: 17px;
    color: var(--color5b);
    line-height: 1.7;
    margin-bottom: 30px;
}
.detalle-propiedad ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    gap:20px;

    flex-wrap: wrap;
}
.detalle-propiedad ul li {
    background: var(--color4b);
    border-radius: 10px;
    padding: 12px 0px;
    font-size: 15px;
    color: var(--color5b);
    display: inline-block;
    margin:10px 1%;
    align-items: center;
    transition: all .25s ease;
    text-align: center;
    justify-content: center;
    border: solid 1px var(--color1b);
    position: relative;
    white-space: pre;
    width: 22%;
    cursor: pointer;
}

@media(max-width:800px){
    .detalle-propiedad ul li{
        width: 100%;
        margin:10px 0;
    }
}

.detalle-propiedad ul li:hover{
    background-color: var(--color1b);
    border-color: var(--color1);
}

/* ==============================
   Directorio público de servicios
============================== */
.services-layout{
    margin-top: 30px;
    display: grid;
    grid-template-columns: 260px minmax(0,1fr);
    gap: 24px;
    align-items: flex-start;
}

@media(max-width:900px){
    .services-layout{
        grid-template-columns: 1fr;
    }
}

.services-sidebar{
    background:#f8fafc;
    border-radius:14px;
    padding:16px 14px 18px;
    border:1px solid #e2e8f0;
}

.services-sidebar h2{
    font-size: 15px;
    margin:0 0 10px 0;
    color:#0f172a;
}

.services-categories{
    list-style:none;
    margin:0;
    padding:0;
}

.services-categories li{
    padding:8px 12px;
    border-radius:999px;
    font-size:13px;
    color:#475569;
    cursor:pointer;
    margin-bottom:6px;
    transition:background-color .18s ease, color .18s ease, transform .12s ease;
}

.services-categories li:hover{
    background-color:#e2e8f0;
}

.services-categories li.active{
    background:#0f172a;
    color:#ffffff;
}

.services-results{
    min-height: 120px;
}

.services-loading,
.services-empty{
    font-size:14px;
    color:#6b7280;
    margin:12px 0;
}

.services-list{
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap:18px;
}

.service-card{
    background:#ffffff;
    border-radius:14px;
    border:1px solid #e5e7eb;
    padding:16px 14px 14px;
    box-shadow:0 14px 30px rgba(15,23,42,0.04);
    display:flex;
    flex-direction:column;
    gap:6px;
}

.service-card__category{
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.08em;
    color:#64748b;
    font-weight:700;
}

.service-card__title{
    font-size:16px;
    font-weight:700;
    color:#0f172a;
}

.service-card__company{
    font-size:13px;
    color:#4b5563;
}

.service-card__location{
    font-size:12px;
    color:#6b7280;
}

.service-card__description{
    font-size:13px;
    color:#4b5563;
    margin-top:4px;
}

.service-card__footer{
    margin-top:8px;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    gap:8px;
    align-items:center;
}

.service-card__contact{
    font-size:11px;
    color:#6b7280;
}

.service-card__actions{
    display:flex;
    align-items:center;
    gap:6px;
}

.service-card__link{
    font-size:12px;
    text-decoration:none;
    padding:7px 12px;
    border-radius:999px;
    border:1px solid #e2e8f0;
    color:#0f172a;
    font-weight:600;
    transition:background-color .18s ease, color .18s ease, border-color .18s ease;
}

.service-card__link:hover{
    background:#0f172a;
    color:#ffffff;
    border-color:#0f172a;
}

.detalle-propiedad ul li span{
    width: 100%;
    display: block;
}

.detalle-propiedad ul li strong {
    font-weight: 600;
}

.detalle-propiedad ul li em{
    font-style: normal;
    color: var(--color4);
    background-color: var(--color1);
    padding: 5px 10px;
    border-radius: 3px;
    position: relative;
    margin:10px 0 0 0px;
    font-weight: 600;
    font-size: 12px;
    position: absolute;
    top:100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
    z-index: 99;
}

.detalle-propiedad ul li:hover em{
    transform: translateX(-50%) translateY(0px);
    opacity: 1;
}

.detalle-propiedad ul li em:before{
    content: "";
    position: absolute;
    border-bottom: solid 5px var(--color1);
    border-left:solid 5px transparent;
    border-right: solid 5px transparent;
    left: 50%;
    top:-5px;
    transform: translateX(-50%);
}

.detalle-propiedad .video-wrapper {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
}
.detalle-propiedad .video-wrapper iframe {
    width: 100%;
    height: 420px;
    border: none;
}
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 9999;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    animation: zoomIn .35s ease;
}
@keyframes zoomIn {
    from { transform: scale(.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
@media (max-width: 768px) {
    .galeria .main-gallery img { height: 320px; }
    .galeria .thumbs-gallery img { height: 70px; }
    .detalle-propiedad p { font-size: 16px; }
    .detalle-propiedad ul { grid-template-columns: 1fr; }
}


/* suscription-page */
.suscription-page{
    color: var(--color5);
    display: flex;
    gap:2%;
    flex-wrap: wrap;
    align-items: start;
}

.suscription-page .suscripcion-form{
    width: 60%;
    padding: 40px;
    background-color: var(--color1b);
}

.suscription-page .suscripcion-form .test-mode-alert{
    background-color: #ffdddd;
    border: solid 1px #ff5c5c;
    color: #a70000;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 40px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap:10px;
}

.suscription-page .suscripcion-form form label{
    display: block;
    margin:15px 0 5px 0;
    font-size: 14px;
    font-weight: 500;
    font-size: 14px;
}

.suscription-page .suscripcion-form form label input[type="text"],
.suscription-page .suscripcion-form form label input[type="email"],
.suscription-page .suscripcion-form form label input[type="tel"],
.suscription-page .suscripcion-form form label input[type="password"],
.suscription-page .suscripcion-form form label select{
    width: 100%;
    padding: 16px 15px;
    outline: none;
    border:none;
    border-radius:15px;
}

.suscription-page .suscripcion-form form label select{
    cursor: pointer;
}

.suscription-page .suscripcion-form form button{
    background-color: var(--color1);
    border:none;
    border-radius: 5px;
    cursor: pointer;
    padding: 17px 30px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    margin:20px 0 0 0;
    transition: background-color .3s ease, color .3s ease;
}

.suscription-page .suscripcion-form form button:hover{
    background-color: var(--color5);
    color: var(--color1);
}

.suscription-page .sidebar-signup{
    width: 38%;
    padding: 40px;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f9f9f9;
}

.suscription-page .sidebar-signup .inter h3{
    font-size: 30px;
    margin-bottom: 20px;
}


.suscription-page .sidebar-signup .inter ul{
    padding: 20px;
    font-size: 20px;
    line-height: 1.8;
}


.suscription-page .sidebar-signup .inter .price{
    padding: 20px 10px;
    font-size: 20px;
    font-weight: 500;
    background-color: var(--color3);
    color: var(--color4) !important;
    text-align: center;
}


@media(max-width:800px){
    .suscription-page .suscripcion-form,
    .suscription-page .sidebar-signup{
        width: 100%;
        padding: 20px;
    }
}

/* signup */
.signup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 16px;
}
.signup-overlay__box {
    color: #212121;
    border-radius: 12px;
    padding: 20px;
    max-width: 720px;
    width: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.signup-overlay video {
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}
.signup-overlay__success {
    display: none;
}
.signup-overlay__countdown {
    font-size: 14px;
    opacity: 0.9;
}
.signup-overlay lottie-player {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* card-form */
.card-form{
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    margin:20px 0 0 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1);
}

.card-form .info-security{
    background-color: #055160;
    color: #ffffff;
    padding: 10px;
    display: flex;
    align-items: center;
    gap:10px;
    font-size:14px;
    border-radius: 10px;
    margin:20px 0 0px 0;
}

.card-form .info-security span{
    font-size: 40px;
    font-weight: 300;
}

/* servicios */

body {
    background: #f8fafc;
    color: #0f172a;
}

.servicios-header {
    background: linear-gradient(135deg, #23A5D9 0%, #B9D948 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.servicios-header h1 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    font-weight: 800;
}

.servicios-header p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

.servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.servicios-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0;
}

.tab-button {
    padding: 12px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
}

.tab-button:hover {
    color: #0f172a;
}

.tab-button.active {
    color: #23A5D9;
    border-bottom-color: #23A5D9;
}

.tab-button i {
    font-size: 18px;
}

.tab-button .count {
    font-size: 12px;
    background: #e2e8f0;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
    color: #475569;
}

.tab-button.active .count {
    background: #E3F2FD;
    color: #23A5D9;
}

.servicios-planes {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.servicios-planes__grupo {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 12px 24px rgba(15,23,42,0.06);
    border: 1px solid #e2e8f0;
}

.servicios-planes__titulo {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
}

.servicios-planes__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #0f172a;
    font-weight: 700;
}

.servicios-planes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    align-items: stretch;
    justify-items: center;
}

.servicios-planes__card {
    max-width: 100%;
    width: 100%;
    max-width: 360px;
    padding: 32px 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    box-shadow: 0 6px 18px rgba(15,23,42,0.06);
}

.servicios-planes__switch {
    display: inline-flex;
    background: #e2e8f0;
    border-radius: 999px;
    padding: 4px;
    gap: 6px;
    margin-bottom: 14px;
    border: 1px solid #cbd5e1;
}

.servicios-planes__switch-btn {
    border: none;
    background: transparent;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all .2s ease;
}

.servicios-planes__switch-btn.active {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.servicios-planes__grupo--hidden {
    display: none;
}

.servicios-planes__card .price-meta {
    margin: 0 0 8px;
    color: #475569;
    font-weight: 600;
}

.servicios-planes__card .price-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    margin: 6px 0 -6px;
    font-weight: 700;
}

.servicios-planes__cta {
    background: #0f172a;
    color: #fff;
    border-radius: 14px;
    padding: 26px;
    display: grid;
    gap: 10px;
    align-items: center;
    box-shadow: 0 12px 24px rgba(15,23,42,0.18);
}

.servicios-planes__cta h3 {
    margin: 0;
    font-size: 22px;
}

.servicios-planes__cta p {
    margin: 0;
    color: #e2e8f0;
}

.servicios-planes__cta .btn-contratar {
    justify-self: start;
    background: #22c55e;
    border-color: #16a34a;
}

.servicios-tab-content {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.servicios-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.servicio-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.servicio-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.servicio-card.destacado {
    border: 2px solid #FFB700;
    background: linear-gradient(135deg, #fff 0%, #FFFBF0 100%);
}

.badge-destacado {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FFB700 0%, #FF9800 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    z-index: 10;
}

.servicio-logo {
    height: 120px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e2e8f0;
}

.servicio-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.servicio-content {
    padding: 20px;
    flex: 1;
}

.servicio-content h3 {
    margin: 0 0 5px 0;
    font-size: 17px;
    color: #0f172a;
    font-weight: 700;
}

.servicio-empresa {
    margin: 5px 0 15px 0;
    font-size: 12px;
    color: #23A5D9;
    font-weight: 600;
}

.servicio-descripcion {
    margin: 0 0 15px 0;
    font-size: 13px;
    color: #64748b;
    line-height: 1.6;
}

.servicio-categoria {
    display: inline-block;
    font-size: 11px;
    background: #E8F4F8;
    color: #23A5D9;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 10px;
    font-weight: 600;
}

.servicio-contacto {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.servicio-contacto.servicio-contacto-icons {
    flex-direction: row;
    gap: 10px;
}

.contact-container{
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.contact-container > div{
    width: 50%;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
    .contact-container > div {
        width: 100%;
    }
}

.contacto-icon {
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    font-size: 18px;
}

.contacto-icon:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.contacto-telefono { background: #23A5D9; }
.contacto-whatsapp { background: #25D366; }
.contacto-email { background: #EA4335; }
.contacto-sitio { background: #0f172a; }

.contacto-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.9);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.contacto-icon:hover::after {
    opacity: 1;
}

.btn-contacto {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    background: #23A5D9;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    transition: background 0.3s;
    font-family: 'Montserrat', sans-serif;
    border: none;
    cursor: pointer;
}

.btn-contacto:hover {
    background: #1A7BA8;
}

.btn-contacto.btn-whatsapp {
    background: #25D366;
}

.btn-contacto.btn-whatsapp:hover {
    background: #20BA5A;
}

.btn-contacto.btn-email {
    background: #EA4335;
}

.btn-contacto.btn-email:hover {
    background: #D33426;
}

.servicio-footer {
    padding: 12px 20px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    font-size: 11px;
    color: #94a3b8;
}

.plan-badge {
    display: inline-block;
    background: #E3F2FD;
    color: #1565C0;
    padding: 4px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.no-servicios {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.no-servicios i {
    font-size: 48px;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.no-servicios h2 {
    color: #64748b;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .servicios-header h1 {
        font-size: 1.8rem;
    }
    
    .servicios-grid {
        grid-template-columns: 1fr;
    }
    
    .servicios-tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* resultados de búsqueda (mismo diseño de tarjetas del home) */
.properties-slider.properties-slider-static .gallery-properties {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.properties-slider.properties-slider-static .gallery-properties li.item {
    padding: 0;
}

/* skeleton loader */
.properties-slider.properties-slider-static .properties-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
    overflow: hidden;
    animation: skeleton-fade 0.8s ease 0.6s forwards;
}

.properties-skeleton.hidden {
    display: none;
}

.properties-slider.properties-slider-static.is-ready .properties-skeleton {
    display: none;
}

.skeleton-card .inter {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
}

.skeleton-image,
.skeleton-line {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 37%, #f1f5f9 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.2s ease-in-out infinite;
    border-radius: 8px;
}

.skeleton-image {
    height: 180px;
}

.skeleton-line {
    height: 14px;
    margin: 14px 16px;
}

.skeleton-line.short {
    width: 60%;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes skeleton-fade {
    to {
        opacity: 0;
        max-height: 0;
        margin: 0;
        padding: 0;
        pointer-events: none;
    }
}

/* forzar botón ver + en grilla estática */
.properties-slider.properties-slider-static .gallery-properties li.item .inter .btn-more {
    opacity: 1;
    pointer-events: all;
    top: 20px;
    left: 20px;
    transform: none;
}

/* Blog */
.blog-hero {
    background: linear-gradient(135deg, #1c5d99, #23A5D9);
    color: #fff;
    padding: 70px 0 60px;
    margin-top: 20px;
}

.blog-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.blog-hero p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 640px;
}

.blog-breadcrumb {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    opacity: 0.8;
}

.blog-gallery {
    padding: 50px 0 80px;
    background: #f7f9fb;
}

.blog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: start;
}

.blog-main {
    min-width: 0;
}

.blog-sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-sidebar-card h4 {
    margin-bottom: 12px;
    font-size: 16px;
}

.blog-sidebar-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-sidebar-card a {
    text-decoration: none;
    color: #1f2937;
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.blog-sidebar-card a.active {
    color: #1c5d99;
}

.blog-sidebar-card span {
    color: #6b7280;
    font-weight: 500;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-image-placeholder {
    height: 200px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-weight: 600;
}

.blog-content {
    padding: 22px 22px 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

/* Página 404 */
.page-404 {
    padding: 80px 0 100px;
}

.page-404-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
}

.page-404-image {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    mix-blend-mode: multiply;
}

.page-404-image img{
    mix-blend-mode: multiply;
}
.page-404-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-404 {
        padding: 60px 0 80px;
    }

    .page-404-image {
        max-width: 220px;
    }
}

.blog-category {
    display: inline-block;
    background: rgba(28, 93, 153, 0.12);
    color: #1c5d99;
    font-weight: 600;
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    align-self: flex-start;
}

.blog-content h3 {
    font-size: 20px;
    color: #1f2937;
}

.blog-content h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-content p {
    color: #4b5563;
    line-height: 1.6;
}

.blog-link {
    color: #1c5d99;
    text-decoration: none;
    font-weight: 600;
}

.blog-empty {
    padding: 40px;
    background: #fff;
    border-radius: 14px;
    text-align: center;
    color: #6b7280;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.blog-filter {
    margin-bottom: 18px;
    color: #1f2937;
    font-weight: 600;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    color: #4b5563;
}

.blog-pagination a {
    text-decoration: none;
    color: #1c5d99;
    font-weight: 600;
}

.blog-detail {
    padding: 50px 0 80px;
    max-width: 900px;
    margin:auto;
}

.blog-detail-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
}

.blog-detail-content {
    color: #1f2937;
    line-height: 1.8;
    font-size: 16px;
}

.blog-detail-actions {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-detail-nav {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.blog-nav-link {
    color: #1c5d99;
    text-decoration: none;
    font-weight: 600;
    max-width: 48%;
    line-height: 1.4;
}

.blog-nav-link.prev {
    text-align: left;
}

.blog-nav-link.next {
    text-align: right;
    margin-left: auto;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 28px;
    }

    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===============
   Public pages UI (Publica gratis / Informes / Tasación)
   =============== */
.publica-gratis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: start;
}

.public-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.public-card-alt {
    background: #f8fafc;
}

.public-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
}

.public-cta-dark {
    background: #0f172a;
    color: #fff !important;
}

.public-cta-primary {
    background: #2563eb;
    color: #fff !important;
}

.public-cta-info {
    background: #0ea5e9;
    color: #fff !important;
}

.public-form {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.public-form label {
    display: grid;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #1f2937;
}

.public-form input,
.public-form select,
.public-form textarea {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.public-form input:focus,
.public-form select:focus,
.public-form textarea:focus {
    border-color: var(--color2);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    outline: none;
}

.public-submit {
    margin-top: 8px;
    background: var(--color2);
    color: #fff;
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}

.public-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.firmas-info-page {
    position: relative;
    padding: 26px 0 40px;
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.08), transparent 26%),
        linear-gradient(180deg, #f7faf9 0%, #eef2f1 100%);
}

.firmas-info-page .wrap {
    max-width: 1240px;
}

.firmas-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.8fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 24px;
}

.firmas-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 24px;
    align-items: start;
    margin-bottom: 24px;
}

.firmas-info-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.firmas-info-card-main {
    background:
        radial-gradient(circle at top right, rgba(16, 185, 129, 0.15), transparent 32%),
        linear-gradient(135deg, #ffffff 0%, #f1fbf5 100%);
}

.firmas-info-card-accent {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.firmas-info-card-wide {
    grid-column: 1 / -1;
}

.firmas-info-kicker,
.firmas-info-module__eyebrow,
.firmas-support-strip__eyebrow,
.firmas-hero__aside-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(20, 83, 45, 0.08);
    color: #166534;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.firmas-hero__main,
.firmas-hero__aside,
.firmas-layout .public-card,
.firmas-info-module,
.firmas-support-strip {
    padding: 28px;
}

.firmas-hero__main h1 {
    margin: 18px 0 14px;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    line-height: .98;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.firmas-hero__lead {
    max-width: 720px;
    margin: 0;
    color: #475569;
    font-size: 17px;
    line-height: 1.75;
}

.firmas-info-callout {
    display: grid;
    gap: 4px;
    margin: 22px 0;
    padding: 18px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0f172a 0%, #12263f 100%);
    color: #e2e8f0;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.firmas-info-callout strong {
    color: #fff;
    font-size: 14px;
}

.firmas-info-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 22px 0 22px;
}

.firmas-hero__points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-top: 10px;
}

.firmas-hero__point {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.firmas-hero__point strong,
.firmas-info-step strong,
.firmas-info-feature strong {
    display: block;
    color: #0f172a;
    margin-bottom: 6px;
}

.firmas-hero__point span,
.firmas-info-step p,
.firmas-info-feature p,
.firmas-hero__aside p {
    margin: 0;
    color: #475569;
    line-height: 1.65;
}

.firmas-hero__aside {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.firmas-hero__aside h2 {
    margin: 18px 0 10px;
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.firmas-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.firmas-hero__stat {
    padding: 16px 14px;
    border-radius: 18px;
    background: #0f172a;
    color: #fff;
    text-align: center;
}

.firmas-hero__stat strong {
    display: block;
    font-size: 24px;
    line-height: 1;
    margin-bottom: 8px;
}

.firmas-hero__stat span {
    display: block;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.74);
}

.firmas-info-steps {
    display: grid;
    gap: 14px;
    margin-top: 14px;
}

.firmas-info-step {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    align-items: start;
    padding: 16px 0;
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.firmas-info-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.firmas-info-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    font-weight: 800;
    box-shadow: inset 0 0 0 1px rgba(22, 101, 52, 0.08);
}

.firmas-info-module {
    background: linear-gradient(180deg, #ffffff 0%, #f7faf9 100%);
}

.firmas-info-module__head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 18px;
}

.firmas-info-module__head h3 {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #0f172a;
}

.firmas-info-module__head p {
    max-width: 420px;
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.firmas-info-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.firmas-info-feature {
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fafc 0%, #eefbf2 100%);
    border: 1px solid #dbeafe;
}

.firmas-info-list {
    margin: 14px 0 0;
    padding-left: 20px;
    color: #334155;
}

.firmas-info-list li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.firmas-support-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    border-radius: 28px;
    background: linear-gradient(135deg, #0f172a 0%, #14324b 100%);
    color: #fff;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

.firmas-support-strip h3 {
    margin: 14px 0 8px;
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.firmas-support-strip p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    max-width: 720px;
}

.firmas-support-strip__eyebrow {
    background: rgba(255, 255, 255, 0.08);
    color: #d1fae5;
}

.firmas-support-strip__actions {
    display: flex;
    align-items: center;
}

.portales-asociados {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
    color: #475569;
    margin: 0 0 10px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .public-card {
        padding: 20px;
    }

    .firmas-hero,
    .firmas-layout,
    .firmas-support-strip,
    .firmas-info-module__head {
        grid-template-columns: 1fr;
        display: grid;
    }

    .firmas-hero__main,
    .firmas-hero__aside,
    .firmas-layout .public-card,
    .firmas-info-module,
    .firmas-support-strip {
        padding: 22px;
    }

    .firmas-hero__stats,
    .firmas-hero__points,
    .firmas-info-features {
        grid-template-columns: 1fr;
    }

    .firmas-info-actions {
        flex-direction: column;
    }

    .firmas-info-actions .public-cta,
    .firmas-info-actions .btn-contratar {
        width: 100%;
    }

    .firmas-info-step {
        grid-template-columns: 1fr;
    }

    .firmas-info-module__head h3,
    .firmas-support-strip h3,
    .firmas-hero__aside h2 {
        font-size: 28px;
    }
}

.morosos-banner {
    background: linear-gradient(120deg, #0f172a 0%, #16324f 50%, #0a192f 100%);
    color: #fff;
    padding: 56px 0;
    width: 90%;
    max-width: 1430px;
    margin:0 auto 20px auto;
    border-radius: 20px;
}
.morosos-banner__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: center;
}
.morosos-banner__text h2 {
    margin: 10px 0 8px;
    font-size: 32px;
    line-height: 1.2;
}
.morosos-banner__text p {
    color: #e2e8f0;
    margin: 0 0 12px;
    max-width: 520px;
}
.morosos-banner__pill {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #cbd5e1;
}
.morosos-banner__list {
    margin: 0 0 18px;
    padding-left: 18px;
    color: #cbd5e1;
}
.morosos-banner__list li {
    margin-bottom: 6px;
}
.morosos-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.morosos-banner__actions .btn-contratar {
    background: #22c55e;
    color: #0f172a;
    text-decoration: none;
}
.morosos-banner__actions .btn-ghost {
    border: 1px solid #94a3b8;
    color: #e2e8f0;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    transition: all .2s ease;
    text-decoration: none;
}
.morosos-banner__actions .btn-ghost:hover {
    background: rgba(148, 163, 184, 0.12);
}
.morosos-banner__legal {
    font-size: 13px;
    color: #e2e8f0;
    margin-top: 10px;
}
.morosos-banner__legal a {
    color: #93c5fd;
    text-decoration: underline;
}
.morosos-banner__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.morosos-banner__card h3 {
    margin: 10px 0 8px;
    font-size: 22px;
    line-height: 1.3;
}
.morosos-banner__card p {
    color: #cbd5e1;
    margin: 0 0 16px;
}
.morosos-banner__badge {
    display: inline-block;
    background: #22c55e;
    color: #0f172a;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    border-radius: 10px;
    text-transform: uppercase;
}
.morosos-banner__stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.morosos-banner__stat-number {
    font-size: 28px;
    font-weight: 800;
}
.morosos-banner__stat-label {
    color: #cbd5e1;
    letter-spacing: 0.01em;
}
@media (max-width: 640px) {
    .morosos-banner {
        padding: 44px 0;
    }
    .morosos-banner__text h2 {
        font-size: 26px;
    }
    .morosos-banner__card {
        order: -1;
    }
}

        .planes-toggle {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin: 18px 0 28px;
            flex-wrap: wrap;
        }
        .planes-toggle .toggle-btn {
            border: 1px solid #1c5d99;
            background: #fff;
            color: #1c5d99;
            border-radius: 999px;
            padding: 10px 18px;
            cursor: pointer;
            font-weight: 600;
            letter-spacing: 0.02em;
            transition: all .2s ease;
        }
        .planes-toggle .toggle-btn.active {
            background: #1c5d99;
            color: #fff;
            box-shadow: 0 10px 24px rgba(28, 93, 153, 0.18);
        }
        .plan .plan-link {
            font-size: 14px;
            margin-top: 10px;
            color: #666;
        }
        .price-old {
            text-decoration: line-through;
            color: #888;
            margin-top: -8px;
        }
        .price-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: #64748b;
            margin: 6px 0 -6px;
            font-weight: 700;
        }
        .plan-details {
            margin-top: 14px;
            margin-bottom: 14px;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 14px;
            background: #f8fafc;
        }
        .plan-details summary {
            cursor: pointer;
            font-weight: 700;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
        }
        .plan-details summary::-webkit-details-marker {
            display: none;
        }
        .plan-details ul {
            margin: 10px 0 0 0;
            padding: 0;
        }
        .plan-compare {
            margin-top: 32px;
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
            overflow: hidden;
        }
        .plan-compare__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 22px;
            background: linear-gradient(135deg, #0f172a, #1c5d99);
            color: #fff;
        }
        .plan-compare__header h3 {
            margin: 0;
            font-size: 18px;
            letter-spacing: 0.01em;
        }
        .plan-compare__table {
            width: 100%;
            border-collapse: collapse;
            min-width: 720px;
        }
        .plan-compare__table thead {
            background: #f8fafc;
        }
        .plan-compare__table th {
            padding: 12px 14px;
            font-size: 13px;
            text-align: center;
            color: #0f172a;
            font-weight: 700;
            border-bottom: 1px solid #e2e8f0;
        }
        .plan-compare__table td {
            padding: 14px;
            font-size: 14px;
            color: #0f172a;
            border-bottom: 1px solid #eef2f6;
            text-align: center;
        }
        .plan-compare__table tbody tr:nth-child(even) {
            background: #f9fbfd;
        }
        .plan-compare__table tbody tr:hover {
            background: #eef4fb;
            transition: background .2s ease;
        }
        .pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 12px;
            border-radius: 999px;
            font-weight: 700;
            font-size: 12px;
            letter-spacing: 0.02em;
            border: 1px solid transparent;
        }
        .pill--ci {
            background: #ecfdf3;
            color: #166534;
            border-color: #bbf7d0;
        }
        .pill--portales {
            background: #e0f2fe;
            color: #1d4ed8;
            border-color: #bfdbfe;
        }
        .pill--muted {
            background: #f1f5f9;
            color: #475569;
            border-color: #e2e8f0;
        }
        .plan-compare__cell-muted {
            color: #475569;
            font-weight: 600;
        }
        .plan-compare__wrap {
            overflow: auto;
        }


.canjeable{
    background-color:#0f5132;
    color:#ffffff;
    border-radius: 5px;
    padding:16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-weight: 500;
}

/* Toggle password visibility button */
.toggle-password {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--color3);
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: var(--color1);
}

.toggle-password .material-symbols-outlined {
    font-size: 20px;
}
