/* ===================================
   Template Projeto Portugal Excecional 2030
   =================================== */

/* Container Principal */
.projeto-page {
    background-color: #ffffff;
}

.container-projeto {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===================================
   HERO SECTION
   =================================== */

.projeto-hero {
    position: relative;
    min-height: 600px;
    background-color: #ffffff;
    padding: 65px 0 80px 0;
    overflow: hidden;
}

/* Background com pontos coloridos */
.projeto-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    margin-top: 60px;
}

.dots-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/quadrados.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    opacity: 0.8;
}

.projeto-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
    min-height: 500px;
}

/* Grid de duas colunas para imagem e descrição */
.projeto-content-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Logotipo 2030 à esquerda */
.projeto-logo-2030 {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Título no Topo */
.projeto-titulo {
    text-align: center;
}

.projeto-titulo .title-border {
    display: block;
    max-width: 200px;
    height: auto;
    margin: 0 auto 40px auto;
}

.projeto-descricao {
    display: flex;
    align-items: center;
    max-width: 670px;
}

.descricao-box p {
    margin: 0 0 15px 0;
}

.descricao-box p:last-child {
    margin-bottom: 0;
}

/* ===================================
   SECTION DOWNLOADS
   =================================== */

.projeto-downloads {
    background-color: #ffffff;
    padding: 80px 0 100px 0;
}

/* Logotipo Portugal Excecional */
.logo-portugal-excecional {
    text-align: center;
    margin-bottom: 60px;
}

.logo-portugal-excecional img {
    max-width: 500px;
    height: auto;
}

/* Grid de Downloads */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* Cards de Download */
.download-card {
    background: #013146;
    padding: 20px 30px 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.download-card h3 {
    color: #ffffff;
}

/* Botões de Download */
.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background-color: transparent;
    border: 2px solid #ffffff;
    padding: 7px 7px 7px 25px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-download:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1e3a52;
}

.btn-download .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: #ffffff;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    position: relative;
    flex-shrink: 0;
}

.btn-download:hover .icon-circle {
    background-color: #1e3a52;
}

/* Sistema de troca de ícones */
.btn-download .icon-circle img {
    width: 18px;
    height: 18px;
    position: absolute;
    transition: opacity 0.3s ease;
}

/* Estado normal: ícone azul visível */
.btn-download .icon-normal {
    opacity: 1;
}

.btn-download .icon-hover {
    opacity: 0;
}

/* Estado hover: ícone branco visível */
.btn-download:hover .icon-normal {
    opacity: 0;
}

.btn-download:hover .icon-hover {
    opacity: 1;
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablets */
@media (max-width: 1200px) {
    .projeto-content-grid {
        grid-template-columns: 300px 1fr;
        gap: 60px;
    }
    
    .logo-2030-outline {
        max-width: 280px;
    }
}

@media (max-width: 992px) {
    .projeto-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projeto-titulo {
        text-align: center;
    }
    
    .projeto-logo-2030 {
        text-align: center;
    }
    
    .logo-2030-outline {
        max-width: 300px;
    }
    
    .downloads-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container-projeto {
        padding: 0 20px;
    }
    
    .projeto-hero {
        padding: 60px 0;
        min-height: auto;
    }
    
    .projeto-downloads {
        padding: 60px 0 80px 0;
    }
    
    .logo-portugal-excecional img {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .download-card {
        padding: 40px 30px;
    }
    
    .download-card h3 {
        font-size: 20px;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
}