@charset "utf-8";

/*
Theme Name: MinhaMulher 2025
Theme URI:    MinhaMulher.com
Description:  Tema Minha Mulher 
Author:       MinhaMulher.com
Author URI:   MinhaMulher.com
Requires PHP: 8.0
Version: 1.0.0
*/

/* Dark Mode Variables */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    --accent-primary: #a99576;
    --accent-secondary: #b8a082;
    --border-color: #333333;
}

/* Global Styles */
body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(to bottom, #151515 0%, #0a0a0a 100%) !important;
    overflow-x: hidden;
    min-height: 100vh;
}

a, img {
    color: var(--accent-primary);
    border: 0;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

a:hover {
    color: var(--accent-secondary);
}

/* Menu Topo */
.menu-topo {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    margin: 0 0 10px 0;
    padding: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-topo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-primary);
    z-index: 1;
}

.menu-topo ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3px;
}

.menu-topo ul li {
    margin: 0;
    padding: 0;
}

.menu-topo ul li a {
    color: #fff;
    font-family: 'Inter', 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    font-size: 10px;
    padding: 3px 6px;
    margin: 2px;
    display: block;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    white-space: nowrap;
}

.menu-topo ul li a:hover {
    color: var(--text-primary);
    background: var(--accent-primary);
    border-color: var(--accent-secondary);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Header */
header {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    float: left;
    transition: all 0.25s linear;
    transform: translateX(0);
}

header #logo {
    width: 300px;
    height: 136px;
    float: left;
    margin: 0;
    padding: 0;
}

header #logo a {
    width: 642px;
    height: 136px;
    display: block;
    background: url(img/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

header #logo img {
    display: none;
}

header .header-primeiro {
    width: 650px;
    height: 290px;
    float: left;
    margin: 0;
    padding: 0 0 0 10px;
    background-color: #1a1a1a;
    color: var(--text-primary);
    border-radius: 10px;
}

header .header-primeiro .textwidget {
    float: left;
    width: 300px;
    height: 250px;
    overflow: hidden;
    margin: 20px 10px;
}

header .header-primeiro .textwidget img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    overflow: hidden;
}

header .header-primeiro h3 {
    display: none;
}

header #header-direito {
    width: 340px;
    height: 463px;
    float: right;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 110%;
}

/* Main Content */
main {
    width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 1;
    contain: layout;
    overflow: hidden;
    border-radius: 8px;
}

main section {
    width: 680px;
    float: left;
    margin: 0;
    padding: 0;
}

main section article {
    background: var(--bg-secondary);
    border-radius: 8px;
    margin: 0 0 20px 0;
    padding: 0;
    border: 1px solid var(--border-color);
}

main section article .titulo a, 
main section article .titulo h1 {
    padding: 15px 25px 15px 15px;
    display: block;
    font-weight: bold;
    line-height: 1.3;
    color: var(--text-primary);
}

main section article .data {
    color: var(--text-muted);
    font-size: 12px;
    padding: 0 25px 10px 15px;
}

main section article .conteudo {
    padding: 0 25px 20px 15px;
    color: var(--text-primary);
    line-height: 1.6;
}

main section article .conteudo img {
    border-radius: 6px;
    overflow: hidden;
    display: block;
    margin: 16px auto;
}

main section article .bottom {
    background: var(--bg-tertiary);
    padding: 15px;
    border-radius: 0 0 8px 8px;
}

main section article .bottom a {
    color: var(--accent-primary);
    font-weight: 600;
}

/* Blockquote */
main section article .conteudo blockquote {
    font-style: italic;
    border-left: 3px solid var(--accent-primary);
    padding-left: 25px;
    margin: 5px 0 20px 0;
    color: var(--text-primary);
    background: rgba(169, 149, 118, 0.05);
    padding: 20px 20px 20px 25px;
    border-radius: 0 6px 6px 0;
    position: relative;
    font-size: 1.1em;
    line-height: 1.6;
}

/* Sidebar */
main aside {
    width: 300px;
    float: right;
    margin: 0;
    padding: 0;
}

main aside .widget {
    background: var(--bg-secondary);
    border-radius: 8px;
    margin: 0 0 20px 0;
    padding: 0;
    border: 1px solid var(--border-color);
}

main aside .widget h3 {
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 15px 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px 8px 0 0;
}

main aside .widget .textwidget {
    padding: 15px;
    color: var(--text-primary);
}

main aside .widget .textwidget img {
    max-width: 100%;
    height: auto;
    border: 0;
    display: block;
    margin: 0 auto;
    border-radius: 6px;
    overflow: hidden;
}

/* Search */
main aside #search {
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 15px;
    margin: 0 0 20px 0;
    border: 1px solid var(--border-color);
}

main aside #search input[type=text] {
    background-color: #222;
    color: var(--text-primary);
    border-radius: 4px;
    padding: 8px;
    border: 1px solid var(--border-color);
    width: calc(100% - 80px);
}

main aside #search input[type=submit] {
    background: var(--accent-primary) url(https://www.minhamulher.com/wp-content/themes/tema/img/search.png) center no-repeat;
    border-radius: 4px;
    width: 60px;
    height: 36px;
    border: 1px solid var(--border-color);
}

main aside #search input[type=submit]:hover {
    background: var(--accent-primary) url(https://www.minhamulher.com/wp-content/themes/tema/img/search.png) center no-repeat;
}

/* Mail */
main aside #mail {
    background: var(--accent-primary);
    border-radius: 6px;
    padding: 15px;
    margin: 0 0 20px 0;
}

main aside #mail div {
    background: url(https://www.minhamulher.com/wp-content/themes/tema/img/mail.png) left no-repeat;
    font-size: 15px;
    text-align: left;
    text-transform: uppercase;
    margin: 0;
    position: relative;
    top: 9px;
    left: 15px;
    padding: 1px 12px 0 57px;
    float: left;
}

main aside #mail form {
    width: 290px;
    height: 30px;
    float: left;
    margin: 23px 0 0 15px;
}

main aside #mail input[type=text] {
    border: 0;
    padding: 0 10px;
    width: 200px;
    height: 30px;
    float: left;
    margin: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}

main aside #mail input[type=submit] {
    width: 80px;
    height: 30px;
    border: 0;
    cursor: pointer;
    float: right;
    text-indent: -9999px;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

/* Footer */
footer {
    width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    line-height: 40px;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

footer #conteudo {
    width: 94%;
    margin: 3%;
    line-height: normal;
    color: var(--text-primary);
}

footer #conteudo .widget h3 {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    padding: 0 0 8px 2px;
    margin: 6% 0 10px 0;
    color: var(--accent-primary);
}

footer #conteudo ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

footer #conteudo ul li {
    width: 100%;
    height: auto;
    margin: 2% 0;
    padding: 10px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    margin: 10px 0;
}

footer #conteudo ul li a {
    width: 100%;
    display: inline-block;
    color: var(--text-primary);
}

footer #conteudo ul li span {
    width: 100%;
    display: inline-block;
    color: var(--text-muted);
}

footer .bottom {
    width: 100%;
    height: 40px;
    display: inline-block;
    margin: 5% 0 0 0;
    background: var(--bg-tertiary);
    border-radius: 0 0 8px 8px;
}

footer .bottom a {
    color: var(--accent-primary);
}

footer .bottom span {
    display: none;
}

/* Comments */
#comments {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

#comments h3 {
    color: var(--accent-primary);
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 0;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 10px;
}

.commentlist li {
    background: var(--bg-tertiary);
    border-radius: 6px;
    padding: 15px;
    margin: 0 0 15px 0;
    border: 1px solid var(--border-color);
}

.comment-author {
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 14px;
}

.comment-meta {
    color: var(--text-muted);
    font-size: 12px;
    margin: 5px 0;
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.6;
    margin: 10px 0;
}

#respond {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid var(--border-color);
}

#respond h3 {
    color: var(--accent-primary);
    font-size: 18px;
    margin: 0 0 20px 0;
    padding: 0;
    border-bottom: 2px solid var(--accent-primary);
    padding-bottom: 10px;
}

.commentwarn {
    color: var(--text-primary);
}

/* Pagination */
.wp-pagenavi {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
    border: 1px solid var(--border-color);
}

.wp-pagenavi a, .wp-pagenavi span {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 8px 12px;
    margin: 0 2px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.wp-pagenavi a:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
}

.wp-pagenavi .current {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Tablet Styles */
@media screen and (min-width:751px) and (max-width:1015px) {
    main {
        width: 95%;
        margin: 0 auto;
        padding: 0;
        position: relative;
        z-index: 1;
        contain: layout;
        overflow: hidden;
        border-radius: 8px;
    }
    
    header {
        width: 95%;
        height: auto;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        float: left;
        transition: all 0.25s linear;
        transform: translateX(0);
    }
    
    header #logo {
        width: 95%;
        height: auto;
        margin: 5px auto;
        max-width: 100%;
        overflow: hidden;
    }
    
    header #logo a {
        width: 100%;
        height: auto;
        display: block;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    header #logo img {
        display: none;
    }
    
    header .header-primeiro {
        width: 94%;
        height: auto;
        float: left;
        margin: 0 1% 1% 1%;
        padding: 2% 2%;
        background: var(--bg-secondary);
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }
    
    header .header-primeiro .textwidget {
        float: left;
        width: 300px;
        height: 250px;
        overflow: hidden;
        margin: 2% 3%;
    }
    
    header .header-primeiro .textwidget img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 6px;
        overflow: hidden;
    }
    
    header .header-primeiro h3 {
        display: none;
    }
    
    header #header-direito {
        display: none;
    }
    
    main section {
        width: 65%;
        float: left;
        margin: 0;
        padding: 0;
    }
    
    main aside {
        width: 32%;
        float: right;
        margin: 0;
        padding: 0;
    }
    
    footer {
        width: 95%;
        height: auto;
        margin: 0 auto;
        padding: 0;
        text-align: center;
        line-height: 40px;
        background: var(--bg-secondary);
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }
}

/* Mobile Styles */
@media screen and (max-width:750px) {
    main {
        width: 100%;
        padding: 0;
        margin: 20px 0 0 0;
        position: relative;
        z-index: 1;
        contain: layout;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .menu-topo {
        display: none;
    }
    
    header {
        width: 100%;
        height: auto;
        position: relative;
        z-index: 1;
        margin: 0;
        float: left;
        transition: all 0.25s linear;
        transform: translateX(0);
    }
    
    header #header-direito {
        display: none;
    }
    
    header #logo {
        width: 95%;
        height: auto;
        margin: 5px auto;
        max-width: 100%;
        overflow: hidden;
    }
    
    header #logo a {
        width: 100%;
        height: auto;
        display: block;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    
    header #logo img {
        display: none;
    }
    
    header #menu {
        display: none;
    }
    
    header .menu {
        width: 100%;
        height: 50px;
        position: relative;
        margin: 0;
        z-index: 999;
    }
    
    header .menu .menuanchor {
        width: 40px;
        height: 30px;
        vertical-align: middle;
        text-indent: -9999px;
        overflow: hidden;
        cursor: pointer;
        background: none;
        float: left;
        margin: 10px 0 0 10px;
    }
    
    header .menu .menuanchor:before {
        content: "";
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 6px;
        border-radius: 50px;
        background: var(--text-primary);
    }
    
    .menu #search {
        width: 65%;
        height: 40px;
        margin: 5px;
        float: right;
        position: relative;
        z-index: 5;
        display: block;
    }
    
    .menu #search input[type=text] {
        width: 70%;
        height: 40px;
        border: 0;
        padding: 0 6%;
        float: left;
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 15px;
        border-radius: 0;
        background: var(--bg-primary);
        color: var(--text-primary);
    }
    
    .menu #search input[type=submit] {
        width: 18%;
        height: 40px;
        border: 0;
        cursor: pointer;
        float: right;
        text-indent: -9999px;
        border-radius: 0;
        background: var(--accent-primary) url(https://www.minhamulher.com/wp-content/themes/tema/img/search.png) center no-repeat;
    }
    
    header .header-primeiro {
        width: 100%;
        height: auto;
        margin: 0 0 15px 0;
        float: left;
        padding: 0;
        text-align: center;
    }
    
    header .header-primeiro .textwidget {
        width: 100%;
        height: auto;
        overflow: visible;
        margin: 0;
        padding: 0;
    }
    
    header .header-primeiro .textwidget img {
        width: 100%;
        height: auto;
        object-fit: cover;
        margin: 0;
        padding: 10px;
        display: block;
        border-radius: 6px;
        overflow: hidden;
    }
    
    header .header-primeiro iframe {
        width: 300px;
        height: 250px;
        margin: 0 auto;
        border-radius: 6px;
        display: block;
        box-sizing: border-box;
    }
    
    header .header-primeiro h3 {
        display: none;
    }
    
    header #header-direito {
        display: none;
    }
    
    main section {
        width: 100%;
        float: left;
        margin: 0;
        padding: 0;
    }
    
    main aside {
        width: 100%;
        float: left;
        margin: 0;
        padding: 0;
    }
    
    main aside .widget .textwidget {
        text-align: left;
    }
    
    main aside .widget .textwidget img {
        display: block;
        margin: 0 auto;
        border-radius: 6px;
        overflow: hidden;
    }
    
    footer {
        width: 100%;
        height: auto;
        margin: 0;
        padding: 0;
        text-align: center;
        line-height: 40px;
        background: var(--bg-secondary);
        border-radius: 8px;
        border: 1px solid var(--border-color);
    }
}
