/* Regra global */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Body */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    width: 100%;
    overflow-x: hidden;
}

/* Main */
main {
    margin-top: 80px;
    min-height: calc(100vh - 80px - 200px);
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    z-index: 1000;
   
   
}


/* ========== CONTEÚDO PRINCIPAL ========== */
main {
    position: relative;
    margin-top: 100px; /* Espaço para o header fixo */
    min-height: calc(100vh - 80px); /* Altura mínima da viewport - header */
    height: auto;
   
    flex-direction: column;
}

/* ========== INÍCIO COM IMAGEM DE FUNDO ========== */
/* Ajuste para #iniciDiv */
#iniciDiv {
    width: 100%;
    display: flex; /* Usar flex para organizar os elementos verticalmente */
    flex-direction: column; /* Empilhar os elementos de cima para baixo */
    min-height: auto; /* Altura mínima para ocupar a tela, ajustável */
    overflow: hidden;
}

/* Background e Overlay */
.backgroundinicio {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.backgroundinicio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: auto;
    background: rgba(0, 51, 102, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    gap: 20px;
    text-align: center;
}

/* Título e descrição */
.overlay h1 {
    font-size: 4.5rem;
    font-weight: bold;
}

.overlay p {
    font-size: 1.2rem;
}

/* Botão Explorar */
.btn-explore {
    background-color: rgba(0, 51, 102, 0.7);
    color: white;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.btn-explore:hover {
    background-color: #ff9900;
}







/* Carrossel */
.carrossel {
    overflow: hidden;
    width: 100%;
    margin-top: 20px;
}

.carrossel-images {
    display: flex;
    transition: transform 0.9s ease-in-out; /* animação suave */
}

.carrossel-item {
    min-width: 100%; /* um item por vez */
    background: rgba(255,255,255,0);
    padding: 10px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-weight: bold;
    color: #fff;
    text-align: center;
}


/* Seta flutuante para baixo */
.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}


/* ========== SEÇÃO DE DESTINOS ========== */
.destinations-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.destinations-header {
    text-align: center;
    margin-bottom: 60px;
}

.destinations-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #005599;
    margin-bottom: 10px;
}

.destinations-header p {
    font-size: 1.1rem;
    color: #555555;
    max-width: 700px;
    margin: 0 auto;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media(min-width: 640px) {
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(min-width: 1024px) {
    .destinations-grid { grid-template-columns: repeat(4, 1fr); }
}

.destinations-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s;
}

.destinations-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.destinations-card-image {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.destinations-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.destinations-card-image:hover img {
    transform: scale(1.1);
}

.destinations-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.destinations-card-info {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #ffffff;
}

.destinations-card-info h3 {
    font-size: 1.25rem;
    font-weight: bold;
}

.destinations-card-info p {
    font-size: 0.875rem;
}

.destinations-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f62525;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 999px;
}

.destinations-card-footer {
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.destinations-flight-info {
    font-size: 0.875rem;
    color: #555555;
}



.destinations-btn-explore {
    margin-top: 10px;
    width: 100%;
    background-color: #005599;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s;
}

.destinations-btn-explore:hover {
    background-color: #ff9900;
}

.destinations-footer {
    text-align: center;
    margin-top: 40px;
}

.destinations-footer a {
    color: #004aad;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.destinations-footer a:hover {
    color: #005599;
}


/* Seção geral */
/* Estilos principais */
#services {
    padding: 80px 20px;
    background-color: #f9fafb;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #004aad;
    margin-bottom: 10px;
}

.section-header p {
    color: #4b5563;
    max-width: 600px;
    margin: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.icon1 {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 74, 173, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    margin-bottom: 20px;
}

.icon1 i {
    font-size: 2rem;
    color: #004aad;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #004aad;
    margin-bottom: 10px;
}

.service-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-card a {
    display: inline-block;
    margin-top: 15px;
    color: #004aad;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.service-card:hover {
    color: #004aad;
}
  .service-card {
            transition: all 0.3s ease;
        }
        
        .service-card:hover{
             background-color: #0055b3;
            transform: scale(1.05);
        
         
             }
             /* Mudança de cor nos elementos internos quando o card é hover */
.service-card:hover h3,
.service-card:hover p,
.service-card:hover a,
.service-card:hover .icon1 i {
    color: #ffffff; /* muda a cor do texto e ícone */
    transition: color 0.3s ease;
}
     
        


/* Modal */
/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    width: 800px;
    max-width: 90%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    position: relative;
    animation: fadeIn 0.3s ease;
}

.modal-img {
    width: 40%;
    background-size: cover;
    background-position: center;
}

.modal-text {
    width: 60%;
    padding: 20px;
    overflow-y: auto;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

/* Botão de fechar */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    font-weight: bold;
}

.close-btn:hover {
    color: #004aad;
}

/* Animação */
@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}



/* Esconde elementos das divs inativas */
.conteudo:not(.ativo) .overlay,
.conteudo:not(.ativo) .backgroundinicio, 
.conteudo:not(.ativo) .ServicoDivConteudo
{
    display: none;
}

/* ========== CARROSSEL DE DESTINOS ========== */
.carrossel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carrossel-images {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

/* Cada item do carrossel */
.carrossel-item {
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 20px;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

/* Item visível */
.carrossel-item.show {
    opacity: 1;
    transform: translateX(0);
}

/* Item anterior escondido */
.carrossel-item.hide {
    opacity: 0;
    transform: translateX(-100%);
}

/* ========== ÁREAS DE CONTEÚDO ========== */
.conteudo {
    flex: 1;
    width: 100%;
    background-color: rgba(0, 51, 102, 0.9);
    color: white;
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Mostra a div ativa */
.conteudo.ativo {
    display: flex;
}

/* ========== MENU E LOGO ========== */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.logo {
    left: 10px;
    height: 80px;
    width: auto;
}

header nav {
    display: flex;
    position: relative;
    top: -12px;
    justify-content: flex-end;
    width: 100%;
}

/* Lista de navegação */
header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
} 

header nav ul li {
    display: inline;
}

header nav ul li a {
    text-decoration: none;
    color: #003366;
    font-size: 18px;
    font-weight: lighter;
    text-align: left;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ffffff;
}

header nav ul li:hover {
    background-color: #003366;
}

/* Estilo para item selecionado */
.MenuItmsEdit {
    background: linear-gradient(135deg, #003366, #005599);
    color: #ffffff;
}

/* Estilo do menu da página inicial */
.inicioPg {
    background: linear-gradient(135deg, #003366, #005599);
    color: white;
}

/* ========== RESPONSIVO: TELAS MENORES ========== */
@media screen and (max-width: 768px) {
    .logo {
        position: absolute;
        left: 10px;
        top: 5px;
        height: 80px;
        width: auto;
    }

    header {
        height: 100px;
    }

    main {
        margin-top: 100px;
        min-height: calc(100vh - 80px);
        display: flex;
        flex-direction: column;
    }

    /* Estilo do menu hamburguer */
    header nav ul {
        position: absolute;
        top: 42px;
        right: 30px;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        width: 100px;
        flex-direction: column;
        transform-origin: top right;
        gap: 0px;
        transform: scale(0);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    }

    header nav ul.active {
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }

    header nav ul li {
        display: block;
    }

    header nav ul li a {
        color: #003366;
        padding: 10px;
        text-decoration: none;
        display: block;
        font-weight: lighter;
        text-align: left;
    }

    .menu-btn {
        display: block;
        background-color: #003366;
        color: white;
        height: 30px;
        width: 30px;
        font-size: 14px;
        border: none;
        cursor: pointer;
        position: absolute;
        top: 12px;
        right: 30px;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    .menu-btn .menu-icon::before {
        content: "☰"; /* Ícone de menu */
        transition: transform 0.3s ease-in-out;
    }

    .menu-btn.active .menu-icon::before {
        content: "X"; /* Ícone de fechar */
        transform: rotate(90deg);
    }

    .menu-btn:hover {
        background-color: #0055b3;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    .menu-btn.menu-btn.active:hover {
        background-color: gray;
    }

    footer {
        padding: 30px 15px; /* Reduz padding em telas menores */
    }

    footer #contato h2 {
        font-size: 24px; /* Reduz o título */
    }

    footer #contato p {
        font-size: 14px; /* Reduz o texto */
    }
}

/* ========== TELAS MAIORES ========== */
@media screen and (min-width: 769px) {
    .menu-btn {
        display: none; /* Esconde botão em telas grandes */
    }

    header nav ul {
        display: flex;
        position: static;
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
    footer #contato p:not(:last-child)::after {
        content: " | "; /* Separador */
        color: #ffffff;
        margin: 0 10px;
    }
}

/* ========== MENU DE IDIOMAS ========== */
.dropdown {
    padding: 0;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 40px;
    right: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100px;
    flex-direction: column;
    transform-origin: top right;
    transform: scale(0);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.dropdown.active .dropdown-content {
    display: block;
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.dropdown-content a {
    padding: 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #003366;
    color: #ffffff;
}

.dropbtn {
    display: block;
    background-color: #003366;
    color: white;
    height: 30px;
    width: 30px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
}

.dropbtn .icon::before {
    content: "🌐"; /* Ícone de idioma */
}

.dropdown.active .dropbtn .icon::before {
    content: "X"; /* Ícone de fechar */
    background-color: gray;
}

.dropbtn:hover {
    background-color: #0055b3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.dropdown.active .dropbtn {
    background-color: gray;
}

/* ========== SEÇÕES EM GERAL ========== */
section {
    padding: 40px 20px;
    background-color: white;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

section:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Estilo da seção "Sobre Nós" */
/* Container do carrossel */
/* Container do carrossel */
.sobre-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Linha de imagens */
.sobre-images {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

/* Imagem do carrossel */
.sobre-item {
    min-width: 100%;
    height: 350px;
    object-fit: cover;
}

/* Animação fade opcional */
.sobre-item.show {
    opacity: 1;
}
.sobre-item.hide {
    opacity: 0;
}





/* Call to Action */
.cta-section {
    padding: 5rem 0;
    background-color: #003366; /* primary */
    color: white;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media(min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-phone,
.cta-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-phone {
    background-color: white;
    color: #003366;
}

.cta-phone:hover {
    background-color: #f0f0f0;
}

.cta-email {
    background-color: #ff9900; /* accent */
    color: white;
}

.cta-email:hover {
    opacity: 0.9;
}


/* Contact Section */
#contact {
    background-color: #ffffff;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-flex {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-flex {
        flex-direction: row;
        gap: 4rem;
    }
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-info p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0,51,102,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #003366;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.contact-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.25rem;
}

.contact-item p {
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

.contact-item p a {
    color: #003366;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: #ff9900;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0,51,102,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(0,51,102,0.2);
}

/* Formulário */
.contact-form {
    flex: 1;
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    line-height: 1.4;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #ff9900;
    box-shadow: 0 0 0 2px rgba(255,153,0,0.2);
}

.contact-form button {
    width: 100%;
    background: #ff9900;
    color: #ffffff;
    padding: 1rem 0;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: #e68a00;
}

/* Responsividade */
@media (max-width: 1023px) {
    .contact-form {
        height: auto;
    }
}


/* CSS da Notificação - Classes específicas */
.custom-notification-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-notification-dialog.show {
    display: flex;
    opacity: 1;
}

.custom-notification-content {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
}

.custom-notification-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.custom-notification-icon {
    font-size: 48px;
    margin-bottom: 15px;
    text-align: center;
}

.custom-notification-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
}

.custom-notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.custom-notification-button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

/* Classes de estado */
.custom-notification-success .custom-notification-icon {
    color: #4CAF50;
}

.custom-notification-success .custom-notification-button {
    background-color: #4CAF50;
    color: white;
}

.custom-notification-error .custom-notification-icon {
    color: #f44336;
}

.custom-notification-error .custom-notification-button {
    background-color: #f44336;
    color: white;
}



/* Estilo geral do footer */
/* Footer */
footer {
    background:#003366;
 
    width: 100%;
    padding: 60px 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    font-family: 'Arial', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-info {
    max-width: 250px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.footer-info p {
    margin: 5px 0;
    color: #a09797;
    font-size: 16px;
    line-height: 1.6;
}

.footer-links h4,
.footer-services h4,
.footer-contacts h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
}

.footer-links ul,
.footer-services ul,
.footer-contacts ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-services li,
.footer-contacts li {
    margin: 8px 0;
    font-size: 15px;
}

.footer-links a,
.footer-services a,
.footer-contacts a {
    color: #a09797;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contacts a:hover,
.footer-contacts ul li:hover,
.footer-terms a:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(255,255,255,0.5);
}

.footer-contacts li i {
    margin-right: 8px;
    font-size: 14px;
    
}
.footer-contacts ul li {
    color:#a09797
}
.footer-bottom {
    border-top: 1px solid rgb(255, 255, 255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}
.footer-bottom p{

    color: #ffffff;
}

.footer-terms a {
    margin-left: 15px;
    color: #a09797;
}

@media(max-width:768px){
    .footer-container,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-terms a {
        margin-left: 0;
        margin-right: 15px;
    }

    .footer-info,
    .footer-links,
    .footer-services,
    .footer-contacts {
        max-width: 100%;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background-color: #ff9900;
    color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 50;
}

.back-to-top.visible { opacity: 1; visibility: visible; }

.back-to-top:hover { background-color: rgba(255,153,0,0.9); }

.back-to-top i { font-size: 1.25rem; }

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: #fff;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 50;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { background-color: #1ebe57; }

.whatsapp-float i { font-size: 1.5rem; }

/* Pulse animation */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

