
/*contacto ------------------*/
.contacto{
    padding: 0px 0 80px 0;
    background: black;
    color: white;
}
.contacto h3{
    width: 100%;
    text-align: center;
    display: block;
    padding: 30px 0;
    font-size: 25px;
}
.contacto form{
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
@media only screen and (max-width: 600px){
	.contacto form{
		display: block;
        padding: 0 10px;
	}
}
.contacto label {
	width: 20%;
}
.contacto label span{
	display: block;
	margin-bottom: 5px;
}
.contacto label input{
    height: 40px;
    border-radius: 10px;
    border: 0;
    width: calc(100% - 10px);
}
@media only screen and (max-width: 500px){
	.contacto label input{
		margin:0 0 10px 0;
	}
}
.contacto  input.btn{
	width: calc(20% - 20px);
    border-radius: 20px;
    height: 47px;
    margin-top: 20px;
    border: 0;
    font-size: 20px;
    transition: all 0.2s linear;
}
.contacto  input.btn:hover{
    background: orange;
}
@media only screen and (max-width: 500px){
	.contacto  input.btn{
		width: calc(100% - 60px);
		margin:30px;
	}
}
.contacto input.btn{
    background: white;
}




.boda,
.xv,
.bautizo{
    background: white;
    padding: 10px 0 6px 0;
}
.boda a{
    background: url(../images/cover-bodas.jpg);
    background-size: cover;
    background-position: left;
    height: 400px;
    display: block;
    position: relative;
    transition: all 0.2s linear;    
}
@media only screen and (max-width: 600px){
    .boda a{
        background: url(../images/cover-bodas.jpg);
        background-size: cover;
        background-position: center;
        height: 150px;
    }   
}
.xv a{
    background: url(../images/cover-xv.jpg);
    background-size: cover;
    background-position: right;
    height: 400px;
    display: block;
    position: relative;
}
@media only screen and (max-width: 600px){
    .xv a{
        background: url(../images/cover-xv.jpg);
        background-size: cover;
        background-position: center;
        height: 150px;
    }   
}
.bautizo a{
    background: url(../images/cover-bautizo.jpg);
    background-size: cover;
    background-position: center;
    height: 400px;
    display: block;
    position: relative;
}
@media only screen and (max-width: 600px){
    .bautizo a{
        background: url(../images/cover-bautizo.jpg);
        background-size: cover;
        background-position: center;
        height: 150px;
    }   
}
.boda a div,
.xv a div,
.bautizo a div{
    display: block;
    background: black;
    color: white;
    padding: 20px;
    font-size: 30px;
    width: 250px;
    position: absolute;
    top: calc(50% - 35px);
    transition: all 0.2s linear;
}
@media only screen and (max-width: 600px){
    .boda a div,
    .xv a div,
    .bautizo a div{
        font-size: 20px;
        padding: 10px;
        bottom: 0;
        top: auto;
        width: calc(100% - 20px);
    }
}
.boda a:hover div,
.xv a:hover div,
.bautizo a:hover div{
    width: 270px;
    padding: 40px;
    top: calc(50% - 45px);
}
@media only screen and (max-width: 600px){
    .boda a:hover div,
    .xv a:hover div,
    .bautizo a:hover div{
        font-size: 20px;
        padding: 10px;
        bottom: 0;
        top: auto;
        width: calc(100% - 20px);
    }   
}
.testimonios{
    background: white;
    padding: 30px 10px;
}
@media only screen and (max-width: 600px){
    .testimonios{
        padding: 10px 10px;
    }   
}
.testimonios h3{
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}
@media only screen and (max-width: 600px){
    .testimonios h3{
        font-size: 30px;
    }    
}
.testimonios h4{
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}
.testimonios p{
    margin-bottom: 10px;
}
.testimonios .owl-carousel .item{
    padding: 10px;
}
.testimonios .owl-carousel .owl-nav{
    position: absolute;
    top: -46px;
    left: calc(50% - 250px);
    width: 500px;
    display: flex;
    justify-content: space-between;  
}
.testimonios .owl-carousel .owl-nav button.owl-prev,
.testimonios .owl-carousel .owl-nav button.owl-next{
    font-size: 30px;
}
.detalles{
    display: flex;
    grid-gap: 20px;
    flex-wrap: wrap;
}
.detalles h3{
    font-size: 25px;
    font-weight: bold;
    color: black;
    margin: 30px 20px 20px 20px;
}
@media only screen and (max-width: 600px){
    .detalles h3{
        margin: 0px 20px 20px 20px;
    }   
}
.detalles p{
    margin: 0 20px 20px 20px;
}
.detalles div{
    width: calc(50% - 10px);
}
@media only screen and (max-width: 600px){
    .detalles div{
        width: 100%;
    }
    .detalles div.img{
        order: 1;
    }
    .detalles div.txt{
        order: 2;
    }
}
.detalles div a{
    color: orange;
    font-weight: bold;  
    font-size: 20px;  
}
.subnavegacion{
    background: black;
}
.subnavegacion nav ul{
    list-style: none;
    display: flex;
    grid-gap: 30px;
    padding: 15px;
    justify-content: center;
}
@media only screen and (max-width: 600px){
    .subnavegacion nav ul{
        display: block;
    }
}
.subnavegacion nav ul li a{
    color: white;
    font-size: 18px;
    background: white;
    color: black;
    border-radius: 10px;
    margin: 10px;
    display: block;
    padding: 10px;
    transition: all 0.2s linear;
}
@media only screen and (max-width: 600px){
    .subnavegacion nav ul li a{
        font-weight: bold;
        text-align: center;
    }
    .subnavegacion nav ul li a span{
        display: none;
    }
}
.subnavegacion nav ul li a:hover{
    background: orange;
}
.titulo-paquetes h2{
    font-size: 50px;
    padding: 20px;
    text-align: center;
}
.paquetes{
    margin-top: 30px;
}
.paquetes .wrapper{
    display: flex;
    grid-gap: 30px;
    flex-wrap: wrap;
    width: calc(100% - 40px);
    margin: 0 20px;
    max-width: 100%;
}
.paquetes .wrapper .paquete{
    border: 3px solid black;
    border-radius: 20px;
    padding: 20px;
    width: calc(33.3% - 66px);
}
.paquetes.cuarto .wrapper .paquete{
    width: 100%;
}
@media only screen and (max-width: 600px){
    .paquetes .wrapper .paquete{
        margin: 10px;
        width: calc(100% - 20px);
    }
}
.paquetes .wrapper .paquete h3{
    font-size: 25px;
    margin-bottom: 20px;
    text-align: center;
}
.paquetes .wrapper .paquete ul{
    list-style: circle;
    margin: 20px 0 0 0;
}
.paquetes.cuarto .wrapper .paquete .lista{
    display: flex;
    grid-gap: 20px;
    flex-wrap: wrap;
}
.paquetes.cuarto .wrapper .paquete .lista ul{
    width: calc(33.3% - 20px);
}
.paquetes .wrapper .paquete ul li{
    margin-bottom: 10px;
}
.paquetes .wrapper .paquete .precio{
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.paquetes .wrapper .paquete .tachado{
    font-size: 20px;
    text-decoration: line-through;
    text-align: center;
}
.paquetes .wrapper .paquete a{
    color: orange;
    text-decoration: underline;
    font-weight: bold;
}
.paquetes .wrapper .paquete a.boton{
    color: black;
    font-weight: bold;
    background: orange;
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0 0 0;
    display: block;
    text-align: center;
    transition: all 0.2s linear;
    text-decoration: none;
    font-size: 20px;
}
.paquetes .wrapper .paquete a.boton:hover{
    background: black;
    color: white;
}
.portafolio {
    margin: 30px 20px 0 20px;
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
}
.portafolio .col-simple{
    width: calc(25% - 10px);
}
.portafolio .col-doble{
    width: calc(50% - 10px);
}

.portafolio-dos .content{
    display: flex;
    grid-gap: 10px;
    margin-top: 10px;
}
@media only screen and (max-width: 600px){
    .portafolio-dos .content{
        display: flex;
        grid-gap: 10px;
        margin-top: 10px;
        flex-wrap: wrap;
    }   
}
.portafolio-dos .content .content-four{
    display: flex;
    flex-wrap: wrap;
    grid-gap: 10px;
    width: calc(50% - 5px);
}
@media only screen and (max-width: 600px){
    .portafolio-dos .content .content-four{
        width: 100%;
    }   
}
.portafolio-dos .content .content-one{
    width: calc(50% - 5px);
}
@media only screen and (max-width: 600px){
    .portafolio-dos .content .content-one{
        width: 100%;
    }   
}
.portafolio-dos .content .content-four img{
    width: calc(50% - 10px);
}
.portafolio-dos .content-h{
    width: 100%;
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;    
}
.portafolio-dos .content-h img{
    width: calc(25% - 12px);
}
@media only screen and (max-width: 600px){
    .portafolio-dos .content-h img{
        width: calc(50% - 12px);
    }   
}
.portafolio-dos .content .two{
    width: calc(23% - 12px);
}
.portafolio-dos .content .uno{
    width: calc(54% - 12px);
}
.portafolio-dos .content .tres{
    width: calc(37% - 5px);
}
.portafolio-dos .content .tres-u{
    width: calc(24% - 5px);
}
/*lightbox: inicio; ----------*/
.gallery {
}
.gallery-item {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s linear;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border: 2px solid #fff;
    border-radius: 4px;
}
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}
.prev,
.next {
    position: absolute;
    top: 50%;
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 16px;
    cursor: pointer;
    user-select: none;
}
.prev {
    left: 20px;
}
.next {
    right: 20px;
}
.prev:hover,
.next:hover {
    color: #bbb;
}
/*lightbox:fin ----------*/
.logro{
    padding: 30px 0;
    background: #333;
    color: white;    
}
@media only screen and (max-width: 600px){
    .logro{
        padding: 10px 0;
    }
}
.logro h3{
    font-size: 35px;
    text-align: center;
    margin-bottom: 30px;
}
@media only screen and (max-width: 600px){
    .logro h3{
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 10px;
    }
}
.logro .flex{
    display: flex;
    justify-content: center;
    grid-gap: 30px;
    font-size: 20px;
    text-align: center;
}
@media only screen and (max-width: 600px){
    .logro .flex{
        font-size: 15px;
    }
}
.equipo-titulo{
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    background: #333;
    color: white;
    padding: 20px 0 40px 0;
}
@media only screen and (max-width: 600px){
    .equipo-titulo{
        font-size: 30px;
        padding: 10px 0;
    }
}
.equipo{
    display: flex;
    grid-gap: 80px;
    justify-content: center;
    background: #333;
    color: white;
    padding: 0 10px 10px 10px;
}
.equipo img{
    width: 100px;
    border-radius: 100px;
    height: 100px;
}
.equipo h4{
    font-weight: bold;
    margin-top: 10px;
}
.equipo div{
    text-align: center;
}
.como-trabajamos-title h3{
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
@media only screen and (max-width: 600px){
    .como-trabajamos-title h3{
        font-size: 30px;
    }
}
.como-trabajamos{
    padding: 0 10px;
}
.como-trabajamos .description{
    padding: 0 10px 30px 10px;
}
.como-trabajamos h4{
    font-weight: bold;
    padding: 0 0 20px 0;
}
.como-trabajamos .owl-carousel .owl-nav{
    position: absolute;
    top: -116px;
    left: calc(50% - 150px);
    width: 300px;
    display: flex;
    justify-content: space-between;  
}
.como-trabajamos .owl-carousel .owl-nav button.owl-prev,
.como-trabajamos .owl-carousel .owl-nav button.owl-next{
    font-size: 30px;
}
.faqs-title{
    background: #333;
    color: white;
    padding: 10px;
}
.faqs-title h3{
    font-weight: bold;
    font-size: 25px;
    width: 100%;
    text-align: center;
}
@media only screen and (max-width: 600px){
    .faqs-title h3{
        font-size: 30px;
    }
}
/* modulo acordeon ---------------------*/
.faqs{
    background: #EAEAEA;
    padding: 0 0 30px 0;
}
.accordion {
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
}
.faqs .accordion-item {
    border-top: 1px solid #ccc;
}
.faqs .accordion-header {
    color: black;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    transition: all 0.2s linear;
}
.faqs .accordion-header:hover{
    background: orange;
    color: black;
}
.faqs .accordion-body {
    padding: 0px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease; /* Aumenta la duraciÃ³n de la transiciÃ³n a 0.6s */
}
.faqs .accordion-body.show {
    max-height: 500px; /* Altura mÃ¡xima deseada */
    padding-bottom: 50px;
    background: white;
}
.faqs .accordion-body p{
    text-align: center;
    padding: 10px;
    font-size: 20px;
}
/* footer --------------------*/
footer{
    background: #333;
    text-align: center;
    color: white;
    font-size: 12px;
    padding: 10px 0 50px 0;
}
footer a{
    color: white;
    font-size: 12px;
    margin: 0 10px;
}
footer p{
    margin-bottom: 10px;
}
footer .flex{
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
    justify-content: center;
    align-items: center;
}
@media only screen and (max-width: 500px){
    footer .flex{
        gap: 10px;
    }   
}
footer .flex div,
footer .flex > p{
    text-align: center;
    width: calc(33% - 70px);
}
@media only screen and (max-width: 500px){
    footer .flex div,
    footer .flex > p{
        text-align: left;
        width: calc(100% - 70px);
    }   
}
footer h4{
    font-size: 15px;
    margin-bottom: 5px;
}