/* 1. Reset e Base */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}
.realce{
    color: #a74230;
}















body { 
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; 
    line-height: 1.6; 
    color: #333; 
    background: #f4f4f4; 
}

/* 2. Header */
.main-header { 
    background: #2c5380; 
    color: white; 
    padding: 2rem 1rem; 
    text-align: center; 
}

.main-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.main-header nav ul { 
    list-style: none; 
    display: flex; 
    justify-content: center; 
    gap: 20px; 
}

.main-header a { 
    color: white; 
    text-decoration: none; 
    font-weight: bold; 
    transition: opacity 0.3s;
}

.main-header a:hover { opacity: 0.7; }

/* 3. A Grelha Mágica (Responsive Grid) */
/* Substitui o .container e o .grid-destinos antigo */
.grid-destinos {
    display: grid;
    /* Cria colunas automáticas de no mínimo 320px. Se não couberem duas, fica uma. */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 20px;
    max-width: 1300px;
    margin: 0 auto;
}

/* 4. Cartões de Destino */
.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-image img {
    width: 100%;
    height: 250px; /* Altura fixa para alinhar todos os cartões */
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 1.5rem;
    flex-grow: 1; /* Garante que o conteúdo preenche o cartão */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-content h3 {
    margin-bottom: 10px;
    color: #2c5380;
}

/* 5. Botões e Elementos de Ação */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #1a472a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    margin-top: auto; /* Empurra o botão para o fundo do cartão */
    transition: background 0.3s;
}

.btn:hover {
    background-color: #2c5380;
}

/* 6. Espaço para Adsense (Cartão especial) */
.ad-card {
    background: #ebebeb;
    border: 2px dashed #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 350px;
    color: #777;
}

/* 7. Footer */
.main-footer { 
    text-align: center; 
    padding: 3rem 1rem; 
    background: #333; 
    color: white; 
    margin-top: 50px; 
}














/* Secção de Partilha */
.share-section {
    padding: 30px;
    text-align: center;
    background: #f9f9f9;
    border-radius: 10px;
    margin: 20px 0;
}

.share-section h4 {
    margin-bottom: 15px;
    color: #333;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Garante que os botões baixam em ecrãs pequenos */
}

.share-btn {
    text-decoration: none;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform 0.2s, opacity 0.2s;
    display: flex;
    align-items: center;
}

.share-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Cores Oficiais */
.whatsapp { background-color: #25D366; }
.facebook { background-color: #1877F2; }
.twitter  { background-color: #1DA1F2; }

/* Ajuste para mobile */
@media (max-width: 600px) {
    .share-btn {
        width: 100%; /* Botões ocupam a largura toda no telemóvel */
        justify-content: center;
    }
}


.contact-container {
    max-width: 600px;
    margin: 60px auto;
    padding: 20px;
}

.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro h2 {
    color: #333;
    font-size: 2rem;
}

.contact-form {
    background: #fdfaf3; /* Tom de papel como no texto da logística */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    box-sizing: border-box; /* Garante que o padding não rebenta a largura */
}

.submit-btn {
    background-color: #2d5a27; /* Verde escuro do botão 'Explore' */
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    width: 100%;
    transition: background 0.3s;
}

.submit-btn:hover {
    background-color: #ff6b6b; /* Muda para o salmão do logo no hover */
}



.description p {
    padding: 5px;
    
}



/*---------------------------------------------------------------------------------*/


/* About */

.about-me-section {
    padding: 30px 20px;
}

/* Título de introdução com letras maiores */
.about-intro p {
    font-size: 1.3rem;
    color: #2c3e50;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Corpo do texto principal */
.about-body p, .about-closing p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

/* O cartão de destaque da tua missão (Mantra) */
.mission-highlight-card {
    background: #fdfdfd;
    border-left: 6px solid #ff6b6b; /* Usa a cor do "Hidden" */
    padding: 30px;
    margin: 40px 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.mission-text {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
}

/* Ajustes Responsivos para Desktop */
@media (min-width: 900px) {
    .about-me-section {
        max-width: 750px; /* Largura ideal para leitura */
        margin: 0 auto;
    }

    .mission-text {
        font-size: 1.6rem;
    }
}