/* Import all CSS files */
@import 'variables.css';
@import 'reset.css';
@import 'animations.css';
@import 'buttons.css';
@import 'header.css';
@import 'hero.css';
@import 'articles.css';
@import 'article.css';
@import 'collaborators.css';
@import 'contact.css';
@import 'footer.css'; 

/* Adicione estes estilos para o botão especial */
.special-button-container {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(255,192,203,0.2), rgba(147,112,219,0.2));
    border-radius: 20px;
    margin: 4rem auto;
    max-width: 90%;
    width: 800px;
}

.special-button {
    font-size: 1.5rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(45deg, #FF69B4, #9370DB);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,105,180,0.4);
    animation: pulse 1.5s infinite;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.special-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255,105,180,0.6);
    background: linear-gradient(45deg, #FF1493, #8A2BE2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255,105,180,0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(255,105,180,0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(255,105,180,0.4);
    }
}

.special-message {
    font-size: 1.5rem;
    color: #FF69B4;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255,105,180,0.2);
}

/* Responsividade para o botão especial */
@media (max-width: 768px) {
    .special-button-container {
        margin: 3rem auto;
        padding: 2rem 1rem;
    }

    .special-button {
        font-size: 1.25rem;
        padding: 1rem 2rem;
    }

    .special-message {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .special-button-container {
        margin: 2rem auto;
        padding: 1.5rem 1rem;
    }

    .special-button {
        font-size: 1.1rem;
        padding: 0.875rem 1.75rem;
    }

    .special-message {
        font-size: 1.1rem;
    }
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: transform 0.3s ease;
}

.mobile-menu-btn span:first-child {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:last-child {
    bottom: 0;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav a {
    display: block;
    padding: 15px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background-color: var(--hover-color);
}

.mobile-menu-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #007bff;
}

/* Navegação principal */
.nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007bff;
}

/* Botão do menu mobile */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Menu mobile */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 2rem;
    transition: 0.3s;
    z-index: 1000;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #333;
}

.mobile-nav ul {
    list-style: none;
    margin-top: 3rem;
}

.mobile-nav li {
    margin: 1.5rem 0;
}

.mobile-nav a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: #007bff;
}

.mobile-menu-footer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Overlay do menu mobile */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media queries */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Ajustes para telas menores */
@media (max-width: 480px) {
    .header .container {
        height: 60px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu {
        width: 100%;
        right: -100%;
    }
}

.articles-section {
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.articles-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.articles-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.articles-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.articles-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.articles-card-meta {
    flex: 1;
}

.articles-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.articles-card-category {
    color: #4070F4;
    font-weight: 600;
}

.articles-card-date {
    color: #666;
    font-size: 0.9rem;
}

.articles-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.articles-card-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.articles-card-link {
    color: #4070F4;
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

@media (max-width: 768px) {
    .articles-section {
        padding: 2rem 0;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .articles-card {
        max-width: 100%;
    }

    .articles-card-image {
        height: 180px;
    }

    .articles-card-content {
        padding: 1rem;
    }

    .articles-card-title {
        font-size: 1.1rem;
    }

    .articles-card-description {
        font-size: 0.95rem;
    }
} 