/*body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #00795f, #034e40);
    color: #fff;
}*/
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.color-gold {
    color: #9b8b5b;
}

body {
    background-image: url('/images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* ocupa o espaço restante */
}

footer {
    background-color: #0d3020;
    color: white;
    padding: 20px;
    text-align: center;
}

nav.navbar {
    background-color: #0d3020;
    padding: 15px 30px;
}

nav.navbar .nav-link {
    font-size: 1.1rem;
    color: white;
    margin: 0 10px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    nav.navbar .nav-link:hover {
        background-color: #9b8b5b;
        color: #0d3020;
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }

.service-box {
    background-color: transparent;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #ffffff22;
    text-align: center;
}

.cta a {
    background-color: #00b894;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.navbar {
    background-color: transparent;
}

.navbar-brand, .nav-link, footer {
    color: white !important;
}

.btn-success {
    background-color: #2e7d32;
    border-color: #2e7d32;
}

    .btn-success:hover {
        background-color: #27662b;
    }

footer {
    background-color: #1b3b2f;
}

/*
    hero elements custom
    */

.hero-wrapper {
   /* background-color: #0e3125;*/
   background-color: transparent;
    min-height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container img {
  
    object-fit: none;
    
}

.hero-section {
    background: rgba(13, 48, 32, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 60px 20px;
    border-radius: 16px;
    margin: 20px auto;
    text-align: center;
    color: white;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    
}

/* custom btns */

.btn-contact {
    background-color: transparent;
    border: 2px solid #9b8b5b;
    color: #9b8b5b;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

    .btn-contact:hover {
        background-color: #9b8b5b;
        color: #0d3020;
        transform: scale(1.05);
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
    }
/* carousel serviços*/

.carousel-strip-container {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.film-strip {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

    .film-strip img {
        width: 250px;
        border-radius: 12px;
        flex-shrink: 0;
        box-shadow: 0 0 15px rgba(0,0,0,0.2);
        transition: transform 0.3s;
    }

        .film-strip img:hover {
            transform: scale(1.05);
        }

.seta {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    color: #d4af37;
    border: none;
    font-size: 2rem;
    width: 40px;
    height: 60px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.3s;
}

    .seta:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }

.seta-esquerda {
    left: 10px;
}

.seta-direita {
    right: 10px;
}

/* card*/
.card {
    flex: 0 0 260px;
    background-color: #0d3020;
    border: 2px solid #d4af37;
    color: white;
    padding: 25px;
    border-radius: 16px;
    position: relative;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
    box-shadow: 0 0 5px #00000030;
    text-align: center;
}

    .card:hover {
        box-shadow: 0 0 25px #d4af37aa;
        color: white;
    }

    .card.active {
        transform: scale(1.05);
        z-index: 2;
        background-color: #1b3b2a;
        flex: 0 0 780px; /* 3x original width */
    }

    .card i {
        font-size: 2.5rem;
        color: #d4af37;
        margin-bottom: 15px;
        transition: transform 0.3s;
    }

    .card.active i {
        transform: rotate(5deg) scale(1.2);
    }

.card-details {
    display: none;
    margin-top: 15px;
    font-size: 0.95rem;
    animation: fadeIn 0.4s ease forwards;
}

.card.active .card-details {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* service card*/
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
}

.service-card {
   /* background-color: #0d3020;*/
    background-color: white;
    color: black;
    border-radius: 16px;
    padding: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

    .service-card:hover {
        transform: scale(1.05);
        background-color: #1b3b2a;
        color: white;

    }

    .service-card .icon {
        font-size: 2.5rem;
        color: #9b8b5b;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .service-card:hover .icon {
        transform: scale(1.2) rotate(5deg);
    }

    .service-card h5 {
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .service-card:hover h5 {
        color: #9b8b5b;
        transform: scale(1.05);
    }

    .service-card .details {
        opacity: 0;
        height: 0;
        overflow: hidden;
        transition: opacity 0.4s ease, height 0.4s ease;
        text-align: left;
        padding-top: 10px;
        animation: fadeInUp 0.5s ease forwards;
    }

    .service-card:hover .details {
        opacity: 1;
        height: auto;
    }

    .service-card ul {
        padding-left: 20px;
        margin: 0;
        list-style-type: disc;
    }

        .service-card ul li {
            margin-bottom: 5px;
            animation: slideInLeft 0.4s ease forwards;
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*FOOTER*/
footer {
    background-color: #0d3020;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer .social-icons a {
    color: #d4af37;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

footer .social-icons a:hover {
    transform: scale(1.3);
}

footer .links a {
    display: inline-block;
    margin: 10px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

footer .links a:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Adicionado estilo do mapa */
html, body {
    overflow-x: hidden;
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.portugal-map {
    background-color: #0d3020;
    padding: 60px 20px;
    text-align: center;
}

    .portugal-map svg {
        max-width: 100%;
        height: auto;
        cursor: pointer;
    }

    .portugal-map .region {
        fill: #ffffff;
        transition: fill 0.3s;
    }

        .portugal-map .region:hover {
            fill: #9b8b5b;
            animation: pulse 0.6s ease-in-out;
        }

.tooltip {
    position: absolute;
    background-color: #333;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 9999;
}
.pacote {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.pacote:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    background-color: #0d3020;
    color: white;
}

.pacotes-grid .pacote {
    flex: 1 1 280px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color:white;
}
/*SOBRE NOS*/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-fade {
    animation: fadeUp 1s ease-in-out both;
    animation-delay: 0.2s;
}

.section-zoom {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .section-zoom:hover {
        transform: scale(1.02);
        box-shadow: 0 0 25px rgba(212, 175, 91, 0.4);
    }

@keyframes scrollSlides {
    100% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(-100%);
    }
    33% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(0);
    }
}


.film-strip {
    display: flex;
    gap: 20px;
    cursor: grab;
    user-select: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

    .film-strip img {
    
        padding: 4px;
        border-radius: 5px;
        height: 250px;
        width: 375px;
        object-fit: cover;
        box-shadow: 0 0 10px rgba(0,0,0,0.5);
        flex-shrink: 0;
        scroll-snap-align: center;
        touch-action: pan-y;
    }

.carousel-strip-container {
    overflow: hidden;
    width: 100%;
    background-color: #1a3a2e;
    padding: 40px 0;
}

.film-strip::-webkit-scrollbar {
    display: none;
}

/*CONTACT*/
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


/*SERVICE DISPLAY TRY*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-fade {
    animation: fadeInUp 0.7s ease forwards;
}

.section-zoom:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}


