@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');
@font-face {
    font-family: 'Vera Humana 95';
    src: url('fonts/verahb.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
.main-header {
    background-color: #1c1c1c;
    border-bottom: 1px solid #ffffff20;
    padding: 15px 0;
    position: sticky;
    top: 0px;
    z-index: 1000;
}
.main-header img {
    margin-top: 7px;
    margin-left: 7px;
    max-height: 50px;
}
.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}
.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: #FEFCF1;
    border-radius: 2px;
    transition: all 0.5s ease;
}
.main-nav {
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;
    right: 0;
    background-color: #1c1c1c;
    padding-top: 20px;
    padding-bottom: 30px;
    transition: transform 0.4s ease-in-out;
    transform: translateY(-100%);
}
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
.nav-links a {
    color: #FEFCF1;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Quicksand', sans-serif;
}
.nav-links a span {
    color: #191919;
    text-decoration: none;
    font-size: 1.05rem;
    font-family: 'Quicksand', sans-serif;
}
.nav-links a:hover {
    color: #d4d4d4;
    transition: background-color 0.3s, color 0.3s;
}
.nav-links .nav-cta {
    background-color: #d4d4d4;
    padding: 10px 20px;
    border-radius: 30px;
    transition: background-color 0.3s;
}
.nav-links .nav-cta:hover {
    background-color: #000000;
}
.nav-links .nav-cta:hover span {
    color: #FEFCF1;
}
.main-nav.active {
    transform: translateY(0);
}
.hamburger-menu.active {
    position: fixed;
    top: 25px;
    right: 20px;
    z-index: 1002;
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(0px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(2) {
    transform: translateY(0px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(0px) rotate(45deg);
}
@media (min-width: 1024px) {
    .hamburger-menu {
        display: none;
    }
    .main-nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transition: none;
        transform: none;
        padding: 8px;
    }
    .nav-links {
        flex-direction: row;
        gap: 30px;
        padding-top: 0px;
    }
    .nav-links a {
        font-size: 1rem;
    }
    .nav-links .nav-cta {
        padding: 8px 18px;
    }
}
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    height: 100%;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.507);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.png-hero {
    max-width: 450px;
}
.png-hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}
.hero-content h1 {
    font-family: 'Vera Humana 95', sans-serif;
    color: #FEFCF1;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.hero-content p {
    color: #D4D4D4;
    margin-bottom: 40px;
    font-family: 'Quicksand', sans-serif;
}
.our-contact-cta {
    font-family: 'Vera Humana 95', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 30px;
    color: #ffffff;
    background: #1a1a1a;
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.158);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, box-shadow 0.4s ease;
}
.our-contact-cta::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #ffffff;
    z-index: -1;
    transition: height 0.4s ease-in-out;
}

.our-contact-cta:hover {
    color: #0d0d0d;
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.4);
}

.our-contact-cta:hover::before {
    height: 100%;
}
.arrow {
    position: absolute;
    top: 95%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: 0.3s;
}
.arrow:hover {
    background: rgba(255, 255, 255, 0.5);
}
.prev-btn { 
    left: 20px; }
.next-btn { 
    right: 20px; }

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .arrow { padding: 10px; font-size: 1.5rem; }
}
/* ------------------------------------- */
.about-section {
    background-color: #191919;
    color: #ffffff;
    padding: 5rem 1rem;
    font-family: 'Vera Humana 95', sans-serif;
    overflow: hidden;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr; 
        gap: 5rem;
    }
}
.image-wrapper img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 1rem; 
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.6);
    display: block;
    margin: 0 auto;
}
.content-wrapper h1 {
    font-size: 27px;
    margin-bottom: 1.5rem;
    color: #FEFCF1;
}
.description {
    color: #D4D4D4;
    font-size: 1.05rem;
    line-height: 1.3;
    font-family: 'Quicksand', sans-serif;
    margin-bottom: 1.5rem;
}
/* ------------------------------- */
.type-services {
    padding-top: 30px;
    background-color: #c0c0c0;
}
.type-services h1 {
    color: #191919;
    margin-top: 0px;
    padding-bottom: 30px;
    max-width: 95%;
    margin: auto;
    line-height: 1.2;
    font-size: 27px;
    text-align: center;
    font-family: 'Vera Humana 95', sans-serif;
}
/* ------------------------------------- */
.gallery {
    background-color: #d4d4d4;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: visible;
}
.gallery h1 {
    color: #191919;
    margin-bottom: 10px;
    max-width: 95%;
    margin: auto;
    font-size: 27px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Vera Humana 95', sans-serif;
}
.gallery p {
    color: #191919;
    margin-top: 0px;
    padding-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: auto;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}
.gallery-2 {
    background-color: #c0c0c0;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: visible;
}
.gallery-2 h1 {
    color: #191919;
    margin-bottom: 10px;
    max-width: 95%;
    margin: auto;
    font-size: 27px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Vera Humana 95', sans-serif;
}
.gallery-2 p {
    color: #191919;
    margin-top: 0px;
    padding-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: auto;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}
.gallery-3 {
    background-color: #c0c0c0;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: visible;
}
.gallery-3 h1 {
    color: #191919;
    margin-bottom: 10px;
    max-width: 95%;
    margin: auto;
    font-size: 27px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Vera Humana 95', sans-serif;
}
.gallery-3 p {
    color: #191919;
    margin-top: 0px;
    padding-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: auto;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}
.gallery-4 {
    background-color: #d4d4d4;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: visible;
}
.gallery-4 h1 {
    color: #191919;
    margin-bottom: 10px;
    max-width: 95%;
    margin: auto;
    font-size: 27px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Vera Humana 95', sans-serif;
}
.gallery-4 p {
    color: #191919;
    margin-top: 0px;
    padding-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: auto;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}
.swiper-container {
    margin: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 350px;
    padding: 40px 0 70px 0;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}
@media (min-width: 768px) {
    .swiper-container {
        height: 500px;
        padding-top: 40px;
        padding-bottom: 70px;
    }
}
.swiper-slide {
    display: block; 
    width: 300px; 
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.568);
    border: 1px solid #333;
    padding: 0; 
}
@media (min-width: 768px) {
    .swiper-slide {
        width: 450px;
    }
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.swiper-pagination-bullet {
    background-color: #191919 !important;
    width: 12px;
    height: 12px;
    opacity: 0.5;
    transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
    background-color: #FEFCF1 !important;
    width: 30px;
    border-radius: 6px;
    opacity: 1;
}
/* ------------------------------------- */
.cta-contact {
    background-color: #191919;
    padding-top: 30px;
    padding-bottom: 30px;
}
.cta-contact h1 {
    color: #FEFCF1;
    max-width: 95%;
    margin: auto;
    font-size: 27px;
    margin-bottom: 25px;
    text-align: center;
    font-family: 'Vera Humana 95', sans-serif;
}
.cta-contact p {
    color: #FEFCF1;
    max-width: 85%;
    margin-top: 0px;
    padding-bottom: 30px;
    font-size: 1.05rem;
    line-height: 1.2;
    margin: auto;
    text-align: center;
    font-family: 'Quicksand', sans-serif;
}
.cta-contact p span {
    font-weight: 700;
}
.cta-contact a {
    color: #D4D4D4;
    font-weight: 700;
    max-height: 95%;
}

.cta-box {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.cta-whatsapp {
    font-family: 'Vera Humana 95', sans-serif;
    font-size: 23px;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 10px;
    background-color: #26ac57;
    text-shadow: #000000;
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.158);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease, box-shadow 0.4s ease;
}
.cta-whatsapp a {
    color: #000000;
}
.cta-whatsapp::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #e4e4e4;
    z-index: -1;
    transition: height 0.4s ease-in-out;
}

.cta-whatsapp:hover {
    color: #000000;
    box-shadow: 0 0 85px rgba(255, 255, 255, 0.151);
}

.cta-whatsapp:hover::before {
    height: 100%;
}

/* ------------------------------------- */
.insta-section, .insta-section * {
    box-sizing: border-box;
}
.insta-section {
    background-color: #FEFCF1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
}
.insta-section .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}
.insta-card {
    background-color: #1a1a1a;
    border: 1px solid #333;
    border-radius: 20px;
    width: 100%; 
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0 auto;
}
.insta-img-wrapper {
    width: 100%;
    max-width: 280px;
}
.insta-img-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    display: block;
}
.insta-cta-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}
.insta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(45deg, #FEFCF1 0%, #FEFCF1 25%, #FEFCF1 50%, #acaaa4 75%, #acaaa4 100%);
    color: white;
    text-decoration: none;
    width: 100%;
    max-width: 350px;
    padding: 15px 20px;
    border-radius: 50px;
    font-family: 'Vera Humana 95', sans-serif;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.insta-btn i {
    color: #191919;
    font-size: 1.8rem;
    display: flex;
    line-height: 1;
}
.insta-btn span {
    color: #191919;
    padding-top: 30px;
    display: flex;
    max-width: 95%;
    font-size: 21px;
    margin-bottom: 30px;
    font-family: 'Vera Humana 95', sans-serif;
}
.insta-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(148, 148, 148, 0.6);
}
@media (min-width: 768px) {
    .insta-card {
        flex-direction: row;
        justify-content: space-around;
        padding: 50px;
        gap: 50px;
    }
    .insta-img-wrapper {
        max-width: 350px;
        margin-bottom: 0;
    }
    .insta-cta-wrapper {
        width: auto;
        display: block;
    }
    .insta-btn {
        width: auto;
        padding: 15px 40px;
        font-size: 1.2rem;
    }
}
/* ------------------------------------- */
.footer {
    background-color:#191919;
}
.footer-content {
    display: flex;
    flex-direction: column;
    text-align: center;
}
.footer-about h1 {
    text-align: left;
    margin-left: 10px;
    color: #FEFCF1;
    max-width: 95%;
    font-size: 24px;
    padding-top: 15px;
    margin-bottom: 10px;
    font-family: 'Vera Humana 95', sans-seri
}
.footer-about p {
    color: #FEFCF1;
    text-align: left;
    margin-left: 10px;
    font-size: 1.05rem;
    line-height: 1.2;
    font-family: 'Quicksand', sans-serif;
}
.footer-bottom {
    text-align: left;
    margin-left: 10px;
    color: #FEFCF1;
    padding-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.2;
    font-family: 'Quicksand', sans-serif
}
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 1rem; }
    .arrow { padding: 10px; font-size: 1.5rem; }
}
/*----------------------------*/
.img-nymbus {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.nymbus-section p {
    color: #ffffff;
    font-size: 18px;
    font-family: 'Quicksand', sans-serif;
    margin: 0; 
    padding: 0;
}
.img-nymbus img {
    max-width: 80px;
    display: block;
    margin: 0; 
    padding: 0;
}
.nymbus-section {
    background-color: #000000;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: auto;
}
.img-nymbus a {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    transition: opacity 0.3s;
}
.img-nymbus a:hover {
    opacity: 0.7;
}