@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fffaf4;
    font-family: "Barlow", sans-serif;
    font-style: normal;
}

.title-wag {
    font-family: "Caudex", serif;
}

.right_column {
    padding: 3%;
    font-size: 1.5rem;
    box-shadow: 0px 3px 2px 2px rgba(0, 0, 0, 0.2);
    border-radius: 24px;
    width: 50%;
}

a {
    text-decoration: none;
    transition-duration: .3s;
}

a:hover {
    opacity: 70%;
    transition-duration: .3s;
}

/* SOCIAL BUTTONS */

.social-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.social-main-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #309257;
    color: white;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.social-main-btn:hover {
    background-color: #ffde59;
    transform: scale(1.1);
}

.social-icons {
    position: absolute;
    bottom: 80px;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 10px;
}

.social-icons.show {
    display: flex;
    animation: slideUp 0.3s ease-in-out;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons .facebook { background-color: #3b5998; }
.social-icons .whatsapp { background-color: #25D366; }
.social-icons .telegram { background-color: #0088cc; }
.social-icons .instagram { background-color: #e4405f; }

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



/* NAVBAR */

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 222, 89, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");;
}

.language_btns .btn {
    background-color: #309257 !important;
    border: 0px !important;
}

.translations {
    background-color: #309257 !important;
    min-width: unset;
    width: 100%;
    text-align: center;
}

.translations li {
    transition-duration: .3s;
}


.translations li:hover {
    opacity: 70%;
    transition-duration: .3s;
}

.navbar-nav .dropdown {
    position: relative;
}

.navbar-brand {
    max-width: max-content;
}

.navbar-brand img {
    width: 100px;
    height: 100px;
}


.navbar-nav .dropdown-menu {
    position: absolute !important;
}

.navbar {
    background-color: #309257;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
  
.nav-link {
    transition: .3s;
}

.navbar .nav-link,
.navbar .dropdown-toggle,
.navbar a {
    color: #ffde59 !important;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.4rem;
    transition-duration: .3s;
}

.navbar .nav-link:hover,
.navbar .dropdown-toggle:hover {
    opacity: 70%;
    transition-duration: .3s;
}

.navbar-toggler {
    border: none;
    transition-duration: .3s;
}

.navbar-toggler:hover {
    opacity: 70%;
    transition-duration: .3s;
}

.navbar-toggler:active {
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.dropdown-menu {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.services-bg {
    background-color: #309257;
}

.dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #ffde59;
}

.dropdown-item:hover {
    background-color: #f0f0f0;
    color: #ffde59;
}

.btn-group .btn {
    background-color: #ffffff;
    border: 1px solid #ccc;
    color: #ffde59;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-group .btn:hover {
    background-color: #f9f9f9;
}

/* BODY */

.body-content {
    padding-top: 1rem;
    padding-bottom: 4rem;
}

.body-content ul {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}
  
.body-content ul li {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.6rem;
    position: relative;
}

.body-content ul li::marker {
    color: black;
}

.body-content b {
    color: #111;
}
  
h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #606060;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #606060;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h4 {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
    font-size: 2rem;
    text-align: center;
}

.block-border {
    box-shadow: 0px -8px 6px -6px rgba(0, 0, 0, 0.1);
}

.image-bg {
    text-align: center;
    background: url(../../../media/images/width_2400.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 5%;
}

.image-bg p {
    width: 80%;
    color: #606060;
    font-size: 1.9rem;
}

.color-bg {
    background-color: #f4ded5;
    font-size: 1.9rem;
    padding: 3%;
    text-align: center;
}

.lead {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.8;
}

.img-fluid {
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}
.img-fluid:hover {
    transform: scale(1.03);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
}

/* home */

.home-content i {
    color: #309257;
}

.columns_section .lead {
    font-size: 1.5rem;
}

.custom_ul li::marker {
    content: '- ';
    font-size: 1.5rem;
}

.image_block img {
    width: 200px;
    height: 200px;
}

/* service */

.owl-one .item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.owl-carousel {
    margin: 0 auto;
    max-width: 1200px;
}

.owl-two {
    background-color: #fafafa;
}

/* about */

.gen_info_about .lead {
    font-size: 1.4rem;
}

.about_text {
    font-size: 1.5rem;
}

/* price */

.body-content a[data-bs-toggle="collapse"] {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: black;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}
  
.body-content a[data-bs-toggle="collapse"]:hover {
    color: #309257;
}
  
.body-content .collapse {
    transition: all 0.35s ease-in-out;
}
  
.body-content .card.card-body {
    border: 1px solid #eee;
    border-radius: 0.75rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    margin: 0 auto 1rem;
    max-width: 600px;
    padding: 1.25rem 1.5rem;
    background-color: #fff;
}
  
.body-content .card.card-body p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}
  
.body-content .collapse:not(.show) {
    display: none;
}

/* contacts */

.contact-page h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 2rem;
    text-align: center;
}

.home_links a {
    color: #666;
    font-size: 1rem;
    text-decoration: none;
}
.home_links a:hover {
    color: #28A745;
}
.home_links span {
    color: #28A745;
    margin: 0 5px;
}


/* map */

.map-and-info {
    gap: 3rem;
    margin-top: 2rem;
    align-items: flex-start;
}
  
.map iframe {
    width: 100%;
    max-width: 100%;
    height: 350px;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
  
.socials {
    margin-top: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}
  
.socials a {
    display: flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.25rem;
    transition-duration: 0.3s;
}
  
.socials a i {
    font-size: 1.3rem;
    margin-right: 0.5rem;
    
}
  
.socials a:hover {
    opacity: 70%;
    transition-duration: .3s;
}

.socials .facebook { color: #3b5998; }
.socials .whatsapp { color: #25D366; }
.socials .telegram { color: #0088cc; }
.socials .instagram { color: #e4405f; }
  
.info {
    max-width: 500px;
}
  
.rows_info {
    border: 1px solid #ebebeb;
    border-radius: 24px;
    color: black;
    font-size: 1rem;
    line-height: 1.6;
}

.rows_info .lower_row p {
    margin-bottom: 0;
}
  
.photos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
  
.photos img {
    width: 100%;
    max-width: 150px;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
  
.ask-button {
    display: inline-block;
    margin-top: 2rem;
    background-color: #309257;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition-duration: .3s;
    border: 0;
}
  
.ask-button:hover {
    opacity: 70%;
    transition-duration: .3s;
}


/* service info */

.service-info {
    color: #444;
    line-height: 1.6;
    font-size: 1.3rem;
}
.service-info ul {
    list-style: none;
    padding-left: 0;
}
.service-info ul li {
    position: relative;
    padding-left: 20px;
    font-size: 1.2rem;

    margin-bottom: 8px;
}
.service-info ul li:before {
    content: "•";
    color: #28A745;
    position: absolute;
    left: 0;
    font-size: 18px;
}
  
.home_links a:hover {
    text-decoration: underline;
}