@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --color-primario: #FECDCD;
    --color-primario-50: #FECDCD80;
    --color-primario-hover: #FEDCD8;
    --color-secundario: #ABC09E;
    --color-background: #FFF5F0;
    --color-box-product: #e6ece2;
    --font-color-primaria: #631F37;
    --font-color-primaria-50: #631f37b2;
    --font-size-base: 1.2rem;
    --font-size-large: 2rem;
    --font-size-small: 0.8rem;
    --font-size-extralarge: 3rem;
    --font-general: "Noto Serif", serif;
    --font-title: "PT Serif", serif;
}

html,
body {
    height: 100%;
    font-family: var(--font-general);
    background-color: var(--color-background);
}

.font-general {
    font-family: var(--font-general);
    color: #000000;
}

.font-title {
    font-family: var(--font-title);
    color: var(--font-color-primaria);
}

body {
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.navbar {
    background-color: var(--color-background);
}

.navbar-brand,
.navbar-brand:hover {
    display: flex;
    align-items: center;
    color: var(--font-color-primaria);
}

.brand-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
}
.language-buttons {
    display: flex;
    justify-content: center;
    margin-top: 5px;
}
.language-buttons button {
    background: none;
    border: none;
    padding: 0;
}

.navbar-brand img {
    margin-right: 10px;
}

.navbar-brand span {
    font-size: 1.5rem;
}

.custom-navbar-color {
    color: var(--font-color-primaria);
}

.custom-navbar-color-active {
    color: var(--font-color-primaria);
    font-weight: 700;
    font-style: normal;
    background-color: #ffffff;
    border-radius: 999999px;
}

.nav-link:hover {
    color: var(--font-color-primaria);
    background-color: #ffffff;
    border-radius: 999999px;

}

.custom-width-500 {
    max-width: 500px;
}

.custom-max-width-600{
    max-width: 600px;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        width: 75%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        width: 100%;
    }

    .nav-item {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-link {
        text-align: left;
        padding-left: 20px;
        color: var(--font-color-primaria);
    }
}

.container {
    flex: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;    
    box-sizing: border-box;
}

#cookieConsent {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #000;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    text-align: center;
}

#cookieConsent a {
    color: #4b8efc;
    text-decoration: underline;
}

#cookieConsent button {
    margin-top: 10px;
    background-color: #4b8efc;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    display: block;
    width: 100%;
}

#cookieConsent button#rejectCookies {
    background-color: #d9534f;
    margin-top: 5px;
}

.modal-container {
    position: relative;
    width: 90%;
    height: 400px;
}

.modal-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.modal-dialog {
    max-width: 90vw;
    max-height: 90vh;
    margin: auto;
}

.modal-content {
    height: 90vh;
    position: relative;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 0;
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 100%;
    display: block;
    justify-content: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    border-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.modal-header h5 {
    margin: 0;
    font-size: var(--font-size-large);
    text-align: center;
    flex-grow: 1;
}

.btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
}

.modal-footer {
    display: flex;
    justify-content: center;
    border-top: 1px solid #dee2e6;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 1rem;
}


.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 50%;
    right: 20px;
    background-color: #25d36680;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-icon {
    margin-top: 0%;
    width: 35px;
    height: 35px;
}

.whatsapp-float:hover {
    background-color: #25d366;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    width: 750px;
    max-height: 750px;
    border-radius: 25px;
}

#message {
    height: 130px;
}

.modal-custom {
    max-width: 60%;
    height: 80vh;
}

.modal-content-custom {
    height: 100%;
    overflow-y: auto;
}

.grid-container {
    display: inline-flex;
    justify-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.template-mockup {
    width: 395px;
    height: 525px;
    position: relative;
}

.template-mockup img {
    width: 350px;
    height: auto;
}

.template-mockup iframe {
    position: absolute;
    top: 7.5%;
    left: 22.3%;
    width: 92.2%;
    height: 120%;
    border: none;
    transform: scale(0.6);
    transform-origin: 0 0;
}

.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--font-color-primaria);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s, visibility 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 9999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top i {
    font-size: 24px;
}

.custom-btn {
    background-color: var(--font-color-primaria);
    color: #ffffff;
    border-radius: 9999px;
}

.custom-btn:hover {
    background-color: var(--color-primario);
}

.custom-btn-news {
    background-color: var(--color-primario);
    color: black;
    border-radius: 25px;
    border-color: var(--color-primario);
}

.custom-btn-news:hover {
    background-color: var(--color-primario-hover);
}

.flag-button:hover img {
    width: 30px;
    height: 25px;
    border-radius: 5px ;
}

.flag-button img{
    border-radius: 5px;
}

.flag-button{
    border-radius: 5px ;
}
.selected-language {
    border: 2px solid var(--font-color-primaria);
    border-radius: 5px;
    padding: 2px; 
    background-color: var(--color-primario-hover);
    transition: all 0.3s ease; 
}

.selected-language img {
    width: 30px; 
    height: 25px;
    transition: all 0.3s ease;
}

.package1-info-container {
    flex-wrap: wrap;
    overflow: hidden;    
}

.package1-info-box {
    border: 1px solid var(--color-primario);
    padding: 20px;
    margin: 10px;
    width: 130px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
}

.offer-info-container {
    flex-wrap: wrap;
    overflow: hidden;
}

.offer-info-box {
    background-color: var(--color-primario-50);
    border: 1px solid var(--color-primario);
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
}

.contratacion-info-container {
    flex-wrap: wrap;
    overflow: hidden;
}

.contratacion-info-box {
    background-color: var(--color-primario-50);
    border: 1px solid var(--color-primario);
    padding: 20px;
    margin: 10px;
    width: 250px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
}

.precio-info-container {
    flex-wrap: wrap;
    overflow: hidden;
}

.precio-info-box, .precio-info-box2, .precio-info-box3 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.precio-info-box {
    background-color: var(--color-primario-50);
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
}

.precio-info-box2 {
    border: 1px solid var(--color-primario);
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
}

.precio-info-box3 {
    background-color: var(--color-box-product);
    border: 1px solid var(--color-box-product);
    padding: 20px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 25px;
}
.custom-max-width-80{
    max-width: 95%;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-items: center;
}

.grid-item {
    
    background-color: var(--color-box-product);
    /*border: 1px solid var(--color-primario);*/
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    border-radius: 25px;
    max-width: 300px;
    min-width: 250px;
    display: flex;
    flex-direction: column;
}

.grid-item img {
    width: 75px;
    height: 75px;
}

.custom-margin{
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    text-align: center;
}

.custom-products-title{
    width: 125px;
    height: 1rem;
    text-align: center;
}

.custom-products-amount{
    padding-right: 20px;
}

form .invalid-feedback {
    display: none;
}

form .form-control.is-invalid~.invalid-feedback {
    display: block;
}

.form-floating .form-control:focus~label,
.form-floating .form-control:not(:placeholder-shown)~label,
.form-floating textarea:focus~label,
.form-floating textarea:not(:placeholder-shown)~label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
}


.form-check-input:checked {
    background-color: var(--font-color-primaria);
    border-color: var(--font-color-primaria);

}

.form-check-input {
  margin-top: 0;
}

.small-form {
    margin: 0 auto;
    max-width: 400px; 
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ced4da;
    border-radius: 10px;
}

.small-form .form-control {
    font-size: 0.9rem; 
    padding: 5px;
}

.small-form .form-floating > label {
    font-size: 0.8rem;
}

.small-form .btn {
    font-size: 0.9rem;
}   

.contact-text-small{
    font-size: 0.6rem;
    margin-left: 10px;
}

.custom-text-align-left{
    text-align: justify;
}


.slideInUp  {
    animation: slideInUp 2s ease-out forwards;
}

.slideInDown  {
    animation: slideInDown 2s ease-out forwards;
}

.slideInRight {
    animation: slideInRight 2s forwards;
}

.slideInLeft {
    animation: slideInLeft 2s forwards;
}

.fadeIn {
    animation: fadeIn 4s forwards;
}

.fadeIn3seg {
    animation: fadeIn 2s forwards;
}

.fadeOut {
    animation: fadeOut 4s forwards;
}


@keyframes slideInUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(75px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-75px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.footer {
    width: 100%;
    background-color: var(--font-color-primaria);
    color: #fff;
    padding: 40px 0;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

footer a {
    text-decoration: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer-item {
    margin-bottom: 20px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #f8f9fa;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #a9a9a9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-icons a {
    margin-right: 15px;
    font-size: 30px;
    color: #a9a9a9;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    font-size: 14px;
    color: #a9a9a9;
}

.footer-rights {
    margin: 0;
}

#bodas-net-logo{
    background-color: white;
    padding-bottom: 5px;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 5px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.btn-link {
    display: inline-block;
    padding: 0.2em 0.6em; 
    background-color: var(--font-color-primaria); 
    color: #a9a9a9; 
    text-decoration: none; 
    border-radius: 9999px; 
    font-size: 1em; 
    line-height: 1.5;
    transition: background-color 0.3s; 
}

.btn-link:hover {
    background-color: var(--font-color-primaria-50);
    color: #FFF;
    transition: color 0.3s ease;
}

.email-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--font-color-primaria);
    font-weight: bold;
    transition: color 0.3s ease;
}

.email-link i {
    margin-right: 8px;
    color: var(--font-color-primaria);
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: var(--font-color-primaria-50);
}

.email-link:hover i {
    color: var(--font-color-primaria-50);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #28a745;
    font-weight: bold;
    transition: color 0.3s ease;
}

.phone-link i {
    margin-right: 8px;
    color: #28a745;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #218838;
}

.phone-link:hover i {
    color: #218838;
}

#faqs-search {
    border-radius: 25px;
}

.accordion-button {
    background-color: var(--font-color-primaria-50);
    color: white;
}

.accordion-button:not(.collapsed) {
    color: white;
    background-color: var(--font-color-primaria);
}

.accordion-button:focus {
    box-shadow: none;
    color: white;
}

.accordion-item{
    margin-top: 10px;
}

.accordion-button.collapsed::after {
    background-color: white !important;
}

.accordion-button:not(.collapsed)::after {
    background-color: white !important;

}

.accordion-body{
    text-align: left;
}

.package {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    color: #631F37;
}

.header-esencia {
    background-color: #C0C0C0;
    color: #631F37;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 20px -20px;
}

.header-elegancia {
    background-color: #B76E79;
    color: #631F37;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 20px -20px;
}

.header-exclusivo {
    background-color: #FFD700;
    color: #631F37;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    margin: -20px -20px 20px -20px;
}

.package ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 50px;
    flex-grow: 1;
    text-align: left;
}

.package ul li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.package ul li:last-child {
    border-bottom: none;
}

.package ul li span:first-child {
    flex: 8;
}

.package ul li span:last-child {
    flex: 6;
    text-align: right;
}

.tick {
    font-size: 20px;
}

.custom-center-justify {
    text-align: center !important;
}

.custom-font-size {
    font-size: 12px;
}

.total-sum {
    font-size: 20px;
    font-weight: bold;
    color: #631F37;
    margin-top: 20px;
}

.custom-margin-top{
    padding-top: 40px;
}
.form-check-input {
    margin-left: 10px;
}

.background-image-section-url{
    background-image: url('../assets/images/img_over_1.webp');    
}
.background-image-section-url-1{
    background-image: url('../assets/images/img_over_2.webp');    
}
.background-image-section-url-2{
    background-image: url('../assets/images/img_over_4.webp');    
}

.background-image-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    width: 100%;
}

.background-overlay {
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}


@media (max-width: 768px) {
    body {
        padding-top: 120px;
    } 
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .min-h-screen {
        min-height: 20svh;
    }
    .background-overlay {
        height: 20svh;
    }
    .background-image-section{
        background-attachment: unset;
    }    
}

@media (min-width: 768px) {
    .min-h-screen {
        min-height: 30svh;
    }
    .background-overlay {
        height: 30svh;
    }
    .background-image-section{
        background-attachment: fixed;
    }    
}