/* Estilos gerais */
:root {
    --primary-color: #151c22; /* Cinza escuro */
    --primary-darker: #1d2228; /* Cinza azulado para contraste/hover */
    --accent-color: #e6e6e6; /* Branco suave para texto */
    --gold: #e6e6e6; /* Branco suave para elementos decorativos */
    --transition-time: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(
    to bottom,
    #1d2228 0%,
    #151c22 100%
  );
    color: var(--accent-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 30px 20px;
    position: relative;
}

/* Estilos do cabeçalho e logo */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-container {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

    .logo-container::after {
    content: 
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: 0 0 25px rgba(230, 230, 230, 0.15);
    opacity: 0;
    animation: pulseShadow 3s infinite alternate;
}

.logo {
    width: 120px;
    height: auto;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
}

/* Linhas decorativas */
.decorative-line {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    opacity: 0;
    animation: fadeIn 1.5s ease forwards;
}

.line {
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    flex-grow: 1;
}

.line-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-color);
    margin: 0 10px;
}

/* Seção Sobre */
.about-section {
    text-align: center;
    padding: 10px 15px;
    margin: 10px 0;
    opacity: 0;
    animation: fadeIn 1.8s ease forwards;
}

.about-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--accent-color);
}

.about-section p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 90%;
    margin: 0 auto;
}

/* Estilos dos links */
.links-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 10px 0;
}

.link-wrapper {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 0.8s ease forwards;
    animation-fill-mode: both;
}

.link-wrapper:nth-child(1) {
    animation-delay: 0.3s;
}

.link-wrapper:nth-child(2) {
    animation-delay: 0.5s;
}

.link-button {
    display: flex;
    align-items: center;
    padding: 18px 22px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 1px solid var(--accent-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--accent-color);
    transition: all var(--transition-time) ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 5px;
}

.link-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 230, 230, 0.1), transparent);
    transition: 0.5s;
}

.link-button:hover::before {
    left: 100%;
}

.link-button:hover {
    background-color: var(--primary-darker);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.link-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 24px;
    margin-right: 15px;
    color: var(--accent-color);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(230, 230, 230, 0.1);
    transition: all var(--transition-time) ease;
}

.link-button:hover .icon {
    background-color: rgba(230, 230, 230, 0.2);
    transform: scale(1.1);
}

.link-content {
    display: flex;
    flex-direction: column;
}

.link-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.link-subtitle-below {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.8;
    margin-top: 20px;
    padding-left: 22px;
    text-align: left;
}

/* Seção de recursos */
.features-section {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 20px 0;
    padding: 15px 0;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
}

.feature i {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--accent-color);
    opacity: 0.9;
}

.feature span {
    font-size: 12px;
    font-weight: 300;
}

/* Estilos do rodapé */
footer {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeIn 2.2s ease forwards;
}

.social-icon {
    color: var(--accent-color);
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(230, 230, 230, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-time) ease;
}

.social-icon:hover {
    background-color: rgba(230, 230, 230, 0.1);
    transform: translateY(-3px);
}

.footer-text {
    font-size: 12px;
    opacity: 0.7;
    font-weight: 200;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseShadow {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        padding: 20px 15px;
    }
    
    .logo-container {
        width: 180px;
        height: 180px;
    }
    
    .link-button {
        padding: 16px 18px;
    }
    
    .link-title {
        font-size: 16px;
    }
    
    .link-subtitle-below {
        font-size: 11px;
        padding-left: 18px;
        margin-top: 16px;
    }
    
    .icon {
        font-size: 20px;
        width: 38px;
        height: 38px;
    }
    
    .about-section h2 {
        font-size: 20px;
    }
    
    .about-section p {
        font-size: 13px;
    }
    
    .features-section {
        flex-direction: column;
        gap: 15px;
    }
    
    .feature {
        margin-bottom: 10px;
    }
}


@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    animation: slideIn 1s ease-out forwards;
}

