/*
Theme Name: Conexão Acadêmica
Theme URI: https://seusite.com
Author: Célsio Assane
Author URI: https://seusite.com
Description: Tema personalizado para o projeto Conexão Acadêmica
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: conexao-academica
*/

/* ============================== */
/* Reset básico */
/* ============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================== */
/* Corpo */
/* ============================== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #005661 50%, #006d5b 50%);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ============================== */
/* HEADER */
/* ============================== */
header {
    background-color: #005661;
    padding: 15px 0;
    color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.custom-logo {
    max-height: 70px;
    width: auto;
}
.logo a {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

/* ============================== */
/* MENU */
/* ============================== */
.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
}

.main-navigation a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* Linha animada */
.main-navigation a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #ffd700;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.main-navigation a:hover::after {
    width: 100%;
}

.main-navigation a:hover {
    color: #ffd700;
}

/* ============================== */
/* HERO */
/* ============================== */
.hero {
    background: url('https://conexacademica.com/wp-content/uploads/2026/03/bckgrd.webp') no-repeat center/cover;
    padding: 60px 20px;
    text-align: center;
}

/* ============================== */
/* BOTÕES */
/* ============================== */
.btn,
.btn-outline {
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    margin: 5px;
}

.btn {
    background-color: #ffd700;
    color: #000;
}

.btn:hover {
    background-color: #e6c200;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #ffd700;
    color: #003366;
}

/* ============================== */
/* CARDS */
/* ============================== */
.cardx {
    background: linear-gradient(to bottom, #2c3e50, #34495e);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.cardx:hover {
    transform: translateY(-5px);
}

/* ============================== */
/* SEÇÕES */
/* ============================== */
.sobre {
    padding: 60px 20px;
    background-color: #2a4c52;
    text-align: center;
}

.destaques {
    padding: 60px 20px;
}

.destaques .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* ============================== */
/* WORDPRESS CLASSES */
/* ============================== */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 15px;
}

.alignright {
    float: right;
    margin-left: 15px;
}

/* ============================== */
/* RODAPÉ */
/* ============================== */
footer {
    background-color: #005661;
    text-align: center;
    padding: 30px 20px;
}

/* Redes sociais */
.footer-social {
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 8px;
    background-color: #ffffff10;
    border-radius: 50%;
    color: #64ffda;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social a:hover {
    background-color: #ffd700;
    color: #000;
    transform: scale(1.2);
}

/* Links */
.footer-links {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: #ffd700;
}

/* Copy */
.footer-copy {
    font-size: 13px;
    opacity: 0.8;
}

/* ============================== */
/* RESPONSIVO */
/* ============================== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }
}