/*
Theme Name: Horóscopo do Meme
Theme URI: https://horoscopodomeme.com
Author: Horóscopo do Meme Team
Author URI: https://horoscopodomeme.com
Description: Tema personalizado para o site Horóscopo do Meme com design moderno e funcionalidades de signos e memes.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: horoscopodomeme
*/

/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.site-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 25px;
}

.site-navigation a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 0;
    color: white;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Seções */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Grid de Signos */
.signs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.sign-card {
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.sign-symbol {
    font-size: 48px;
    margin-bottom: 15px;
}

.sign-name {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.sign-date-range {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.sign-details {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.sign-detail {
    text-align: center;
}

.detail-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
}

/* Grid de Memes */
.memes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.meme-card {
    position: relative;
    overflow: hidden;
}

.meme-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.meme-content {
    padding: 20px 0;
}

.meme-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.meme-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.meme-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.like-button {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.like-button:hover {
    transform: scale(1.2);
}

.like-count {
    color: #666;
    font-size: 14px;
}

/* Botões */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
}

.view-all-button {
    text-align: center;
    margin-top: 30px;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.2);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .site-navigation ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
        flex-direction: column;
    }
    
    .signs-grid {
        grid-template-columns: 1fr;
    }
    
    .memes-grid {
        grid-template-columns: 1fr;
    }
}

/* Formulários */
form input,
form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: inherit;
    font-size: 14px;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

form button {
    width: 100%;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Loading */
.loading {
    text-align: center;
    padding: 40px;
    color: white;
    font-size: 18px;
}

/* Categorias */
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.category-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.category-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.category-tag.active {
    background: #667eea;
}

/* Paginação */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination a {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.pagination a:hover {
    background: #667eea;
    color: white;
}

.pagination .current {
    background: #667eea;
    color: white;
}

/* Estilos Adicionais para Templates */

/* Breadcrumb */
.breadcrumb {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #667eea;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.7);
}

/* Post Header */
.post-header, .page-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-title, .page-title {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.post-meta {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 20px;
}

.post-meta span {
    margin-right: 15px;
}

/* Post Content */
.post-thumbnail, .page-thumbnail {
    margin-bottom: 30px;
    text-align: center;
}

.featured-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

.post-body, .page-body {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
}

.post-body h2, .page-body h2 {
    color: #667eea;
    margin: 30px 0 15px;
    font-size: 28px;
}

.post-body h3, .page-body h3 {
    color: #764ba2;
    margin: 25px 0 12px;
    font-size: 24px;
}

.post-body p, .page-body p {
    margin-bottom: 20px;
}

/* Post Actions */
.post-actions, .page-actions {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
}

.like-section {
    margin-bottom: 30px;
}

.like-button.large {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 18px;
    margin-right: 15px;
}

.like-button.large:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.like-count {
    font-size: 16px;
    color: #666;
}

.share-section h3 {
    margin-bottom: 15px;
    color: #333;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-button.facebook {
    background: #1877f2;
}

.share-button.twitter {
    background: #1da1f2;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Posts */
.related-posts {
    margin-top: 60px;
}

.related-posts h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.related-post {
    text-align: center;
}

.related-thumbnail img {
    border-radius: 10px;
    margin-bottom: 15px;
}

.related-content h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.related-content h3 a {
    color: #333;
    text-decoration: none;
}

.related-content h3 a:hover {
    color: #667eea;
}

.related-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.related-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

/* Comments */
.comments-section {
    margin-top: 60px;
}

.comments-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

/* Category Header */
.category-header {
    margin-bottom: 40px;
}

.sign-hero {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sign-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.sign-hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.sign-hero-symbol {
    font-size: 120px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sign-hero-info {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.sign-hero-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
}

.sign-hero-date {
    font-size: 18px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 15px;
}

.sign-hero-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sign-hero-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.sign-detail {
    text-align: center;
}

.sign-detail .detail-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.sign-detail .detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
}

.category-hero {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.category-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.tab-button.active {
    background: #667eea;
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Category Filters */
.category-filters {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tab {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.3);
}

.filter-tab.active {
    background: #667eea;
    color: white;
}

.filter-sort select {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* Search */
.search-header {
    text-align: center;
    margin-bottom: 40px;
}

.search-title {
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

.search-count {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.search-form-container {
    text-align: center;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.search-submit {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
}

.search-submit:hover {
    background: #764ba2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.result-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.result-thumbnail {
    flex-shrink: 0;
    width: 120px;
}

.result-thumbnail img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.result-content {
    flex: 1;
}

.result-type {
    font-size: 12px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 8px;
}

.result-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.result-title a {
    color: #333;
    text-decoration: none;
}

.result-title a:hover {
    color: #667eea;
}

.result-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 10px;
}

.result-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.result-actions {
    margin-top: 10px;
}

.result-link {
    flex-shrink: 0;
    align-self: center;
}

.no-results {
    text-align: center;
}

.no-results h2 {
    color: white;
    margin-bottom: 20px;
}

.search-suggestions {
    text-align: left;
    margin: 20px 0;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Error 404 */
.error-404 {
    text-align: center;
    padding: 60px 0;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.error-visual {
    margin-bottom: 40px;
}

.error-number {
    font-size: 120px;
    font-weight: bold;
    color: #667eea;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.error-icon {
    font-size: 60px;
    margin-top: -20px;
}

.error-title {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
}

.error-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.error-suggestions {
    text-align: left;
    margin-bottom: 30px;
}

.error-suggestions h3 {
    color: #333;
    margin-bottom: 15px;
}

.error-suggestions ul {
    list-style: none;
    padding: 0;
}

.error-suggestions li {
    margin-bottom: 10px;
    color: #666;
}

.error-search {
    margin-bottom: 30px;
}

.error-search .search-form {
    max-width: 400px;
}

.quick-links h3 {
    color: #333;
    margin-bottom: 15px;
}

.link-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.popular-signs h3 {
    color: #333;
    margin-bottom: 15px;
}

.signs-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.sign-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sign-link:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.sign-symbol {
    font-size: 24px;
    margin-bottom: 5px;
}

.sign-name {
    font-size: 12px;
    font-weight: 500;
}

.error-message {
    background: rgba(102, 126, 234, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #667eea;
}

.error-message p {
    margin: 0;
    color: #666;
    font-style: italic;
}

/* Buttons Small */
.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* Posts List */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.post-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.post-item h3 a {
    color: #333;
    text-decoration: none;
}

.post-item h3 a:hover {
    color: #667eea;
}

.post-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}

.post-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin-bottom: 15px;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Adicional */
@media (max-width: 768px) {
    .sign-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .sign-hero-info {
        text-align: center;
    }
    
    .sign-hero-details {
        justify-content: center;
    }
    
    .category-filters {
        flex-direction: column;
        text-align: center;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
    }
    
    .result-thumbnail {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .link-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .signs-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   COMPATIBILIDADE DOS SIGNOS
   =================================== */

/* Grid de Compatibilidade */
.compatibilidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.compat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.compat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.compat-card h3 {
    margin: 0 0 20px 0;
    color: #667eea;
    font-size: 1.8em;
    font-weight: 700;
}

.compat-card p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555;
}

.compat-card strong {
    color: #667eea;
    font-weight: 600;
}

/* Dicas Adicionais */
.compat-tips {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.compat-tips h2 {
    color: #667eea;
    margin-bottom: 30px;
    font-size: 2em;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tip-card {
    background: rgba(102, 126, 234, 0.05);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.tip-card:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.tip-card h3 {
    color: #667eea;
    margin: 0 0 15px 0;
    font-size: 1.3em;
}

.tip-card p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Seção de Retenção */
.retention-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.retention-section h2 {
    margin: 0 0 15px 0;
    font-size: 2em;
}

.retention-section p {
    margin: 0 0 25px 0;
    opacity: 0.9;
    font-size: 1.1em;
}

.retention-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.retention-actions .btn {
    padding: 15px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.retention-actions .btn-primary {
    background: white;
    color: #667eea;
}

.retention-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.retention-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Seção de Compartilhamento */
.share-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.share-section h3 {
    color: #667eea;
    margin: 0 0 10px 0;
    font-size: 1.5em;
}

.share-section p {
    margin: 0 0 20px 0;
    color: #666;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-button {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    color: white;
}

.share-button.whatsapp {
    background: #25d366;
}

.share-button.facebook {
    background: #1877f2;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsividade para Compatibilidade */
@media (max-width: 768px) {
    .compatibilidade-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .compat-card {
        padding: 20px;
    }
    
    .compat-card h3 {
        font-size: 1.5em;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .retention-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .retention-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-button {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

/* ===================================
   HORÓSCOPO DIÁRIO POR SIGNO
   =================================== */

/* Estilos para Páginas de Horóscopo de Ontem e Amanhã */
.horoscope-date-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.horoscope-date-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.horoscope-date-page .page-title {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.horoscope-date-page .page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.signs-selection-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 35px;
}

.section-header .crystal-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.section-header h2 {
    color: #667eea;
    font-size: 28px;
    margin: 0;
    font-weight: 600;
}

.signs-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.sign-button-link {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sign-button-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.sign-button-link .sign-icon {
    font-size: 20px;
    color: #667eea;
    transition: color 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.sign-button-link:hover .sign-icon {
    color: white;
}

.sign-button-link .sign-label {
    flex: 1;
    text-align: left;
}

.back-to-today {
    text-align: center;
    margin-top: 30px;
}

.today-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.today-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Destaque especial para o primeiro signo (Áries) - estilo da imagem */
.sign-button-link:first-child {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

.sign-button-link:first-child .sign-icon {
    color: white;
}

/* ===================================
   PÁGINA DE CONTATO
   =================================== */

.contact-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.contact-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-page .page-title {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.contact-page .page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.contact-card h3 {
    color: #667eea;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
}

.contact-description {
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.social-link {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.contact-form-section h2 {
    color: #667eea;
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.back-to-home {
    text-align: center;
    margin-top: 30px;
}

.home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.home-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.contact-success-message {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

/* Responsividade para página de contato */
@media (max-width: 768px) {
    .contact-page {
        padding: 20px 15px;
    }
    
    .contact-page .page-title {
        font-size: 32px;
    }
    
    .contact-page .page-subtitle {
        font-size: 16px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    .contact-icon {
        font-size: 40px;
    }
    
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px;
    }
    
    .contact-form-section {
        padding: 25px 15px;
    }
    
    .submit-btn {
        padding: 14px 24px;
        font-size: 16px;
    }
}

/* Estilos para página de Horóscopo de Amanhã */
.signos-links {
    margin: 40px 0;
    text-align: center;
}

.signos-links h3 {
    color: white;
    font-size: 28px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.signos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.sign-link-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sign-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.sign-link-card .sign-symbol {
    font-size: 36px;
    margin-bottom: 5px;
}

.sign-link-card .sign-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.hoje-link {
    text-align: center;
    margin: 40px 0;
}

.hoje-link .btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hoje-link .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Conteúdo Principal */
.main-content {
    padding: 40px 0;
    min-height: 60vh;
}

.single-page {
    max-width: 800px;
    margin: 0 auto;
}

/* Link para Horóscopo Diário em Posts de Signos */
.horoscope-daily-link {
    margin: 30px 0;
}

.link-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border: 2px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.2);
}

.sign-icon {
    font-size: 3em;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
    flex-shrink: 0;
}

.link-content {
    flex: 1;
}

.link-content h3 {
    color: #667eea;
    margin: 0 0 10px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.link-content p {
    color: #555;
    margin: 0 0 15px 0;
    line-height: 1.5;
}

.daily-link-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.daily-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Responsividade para o Link Card */
@media (max-width: 768px) {
    .link-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .sign-icon {
        font-size: 2.5em;
    }
    
    .link-content h3 {
        font-size: 1.2em;
    }
    
    .daily-link-btn {
        width: 100%;
        text-align: center;
    }
}

/* Conteúdo de Posts Personalizados */
.custom-post-content {
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.custom-post-content h2,
.custom-post-content h3,
.custom-post-content h4 {
    color: #667eea;
    margin: 20px 0 10px 0;
    font-weight: 600;
}

.custom-post-content p {
    margin: 0 0 15px 0;
    line-height: 1.6;
}

.custom-post-content ul,
.custom-post-content ol {
    margin: 0 0 15px 0;
    padding-left: 25px;
}

.custom-post-content li {
    margin: 5px 0;
    line-height: 1.5;
}

.custom-post-content strong {
    color: #667eea;
    font-weight: 600;
}

.custom-post-content em {
    font-style: italic;
    color: #555;
}

/* Conteúdo do Horóscopo Diário */
.horoscope-daily-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.horoscope-content {
    line-height: 1.8;
    color: #333;
}

/* Cards de Signos - Horóscopo Diário */
.sign-horoscope-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.sign-horoscope-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.sign-horoscope-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.sign-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.1);
}

.sign-title {
    font-size: 2em;
    color: #667eea;
    margin: 0;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.sign-symbol {
    font-size: 1.5em;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.sign-period {
    font-size: 0.9em;
    color: #666;
    font-weight: 400;
    background: rgba(102, 126, 234, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
}

.sign-content {
    color: #333;
}

.horoscope-intro {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #667eea;
    font-size: 1.1em;
    line-height: 1.6;
}

.horoscope-sections {
    display: grid;
    gap: 20px;
    margin-bottom: 25px;
}

.horoscope-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.horoscope-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
}

.horoscope-section h3 {
    color: #667eea;
    margin: 0 0 15px 0;
    font-size: 1.3em;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.horoscope-section p {
    margin: 0;
    line-height: 1.6;
    color: #555;
    font-size: 1.05em;
}

/* Links de Retenção */
.retention-actions {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.retention-actions h4 {
    color: #667eea;
    margin: 0 0 25px 0;
    font-size: 1.4em;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

.action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.action-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.8);
    color: #667eea;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.1);
    text-align: center;
    white-space: nowrap;
    flex: 0 0 auto;
    min-width: 180px;
}

.action-link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

/* Botão Compartilhar WhatsApp */
.share-section {
    text-align: center;
    margin-top: 20px;
}

.whatsapp-share-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-share-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Anúncios AdSense */
.adsense-middle {
    margin: 25px 0;
    text-align: center;
}

.adsense-top,
.adsense-bottom {
    margin: 30px 0;
    text-align: center;
}

/* Bloco de Retenção Final */
.final-retention {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.final-retention h2 {
    color: #667eea;
    margin: 0 0 20px 0;
    font-size: 2em;
    font-weight: 700;
}

.final-retention p {
    color: #555;
    margin: 0 0 30px 0;
    font-size: 1.1em;
    line-height: 1.6;
}

.retention-quick-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.retention-quick-links a {
    background: rgba(255, 255, 255, 0.8);
    color: #667eea;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.retention-quick-links a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

/* Responsividade para Cards de Signos */
@media (max-width: 768px) {
    .sign-horoscope-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .sign-title {
        font-size: 1.5em;
        flex-direction: column;
        gap: 10px;
    }
    
    .sign-period {
        margin-top: 5px;
    }
    
    .horoscope-intro {
        padding: 15px;
        font-size: 1em;
    }
    
    .horoscope-section {
        padding: 15px;
    }
    
    .action-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .action-link {
        width: 100%;
        max-width: 280px;
        white-space: normal;
    }
    
    .retention-quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .retention-quick-links a {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .final-retention {
        padding: 25px;
    }
    
    .final-retention h2 {
        font-size: 1.5em;
    }
}

/* Seções de Previsão */
.horoscope-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.prediction-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    border-radius: 15px;
    padding: 30px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.prediction-section:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.prediction-section h2 {
    color: #667eea;
    margin: 0 0 15px 0;
    font-size: 1.4em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prediction-section p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Navegação entre Signos */
.sign-navigation {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.sign-navigation h3 {
    color: #667eea;
    margin: 0 0 25px 0;
    font-size: 1.8em;
}

.signs-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.sign-nav-link {
    display: block;
    background: rgba(102, 126, 234, 0.05);
    color: #667eea;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sign-nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.2);
}

.sign-nav-link.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: #667eea;
}

/* Links Relacionados */
.related-links {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.related-links h3 {
    color: #667eea;
    margin: 0 0 20px 0;
    font-size: 1.5em;
}

.link-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.link-buttons .btn {
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.link-buttons .btn-secondary {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.link-buttons .btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Responsividade para Horóscopo Diário */
@media (max-width: 768px) {
    .horoscope-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .prediction-section {
        padding: 20px;
    }
    
    .signs-nav-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .link-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .link-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Responsividade para páginas de horóscopo de ontem/amanhã */
    .horoscope-date-page {
        padding: 20px 15px;
    }
    
    .horoscope-date-page .page-title {
        font-size: 32px;
    }
    
    .horoscope-date-page .page-subtitle {
        font-size: 16px;
    }
    
    .signs-selection-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header .crystal-icon {
        font-size: 20px;
    }
    
    .signs-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sign-button-link {
        padding: 14px 16px;
        font-size: 14px;
        gap: 10px;
    }
    
    .sign-button-link .sign-icon {
        font-size: 18px;
        width: 20px;
    }
    
    .today-link {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .signs-buttons-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .sign-button-link {
        padding: 16px 18px;
        font-size: 15px;
        justify-content: center;
        text-align: center;
    }
    
    .sign-button-link .sign-label {
        text-align: center;
    }
}

/* Menu Hambúrguer Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 400px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mobile-menu-section {
    margin-bottom: 40px;
}

.mobile-menu-section h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-section ul {
    list-style: none;
}

.mobile-menu-section li {
    margin-bottom: 15px;
}

.mobile-menu-section a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 8px;
    display: block;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-section a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Responsividade Menu Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-navigation {
        display: none;
    }
    
    .header-content {
        justify-content: space-between;
    }
}

/* ===================================
   HOMEPAGE WITH CAROUSELS - STYLES
   =================================== */

/* Hero Section */
.home-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

/* Memes Carousel Section */
.memes-carousel-section {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Horoscopes Carousel Section */
.horoscopes-carousel-section {
    padding: 80px 0;
    background: white;
}

/* Carousel Base Styles */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.carousel-btn.prev-btn {
    left: 20px;
}

.carousel-btn.next-btn {
    right: 20px;
}

.carousel-btn svg {
    color: #667eea;
    stroke-width: 2.5px;
}

/* Zodiac Cards (Memes Carousel) */
.zodiac-card {
    flex: 0 0 280px;
    margin: 0 15px;
    position: relative;
}

.zodiac-link {
    display: block;
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    height: 320px;
}

.zodiac-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.zodiac-symbol {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.zodiac-info {
    text-align: center;
}

.zodiac-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.zodiac-dates {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.zodiac-element {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.element-fogo {
    background: #ffebee;
    color: #d32f2f;
}

.element-terra {
    background: #f3e5f5;
    color: #7b1fa2;
}

.element-ar {
    background: #e3f2fd;
    color: #1976d2;
}

.element-agua {
    background: #e0f2f1;
    color: #00796b;
}

.meme-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.count-number {
    font-weight: 700;
    color: #667eea;
}

.zodiac-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.zodiac-card:hover .zodiac-overlay {
    transform: translateY(0);
}

.overlay-text {
    font-weight: 600;
}

.arrow-icon {
    animation: bounceRight 1s infinite;
}

/* Horoscope Cards */
.horoscope-card {
    flex: 0 0 320px;
    margin: 0 15px;
}

.horoscope-link {
    display: block;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 30px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 280px;
    position: relative;
    overflow: hidden;
}

.horoscope-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.horoscope-link:hover .horoscope-name,
.horoscope-link:hover .horoscope-date,
.horoscope-link:hover .horoscope-title,
.horoscope-link:hover .horoscope-excerpt {
    color: white;
}

.horoscope-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.horoscope-symbol {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.horoscope-link:hover .horoscope-symbol {
    -webkit-text-fill-color: white;
}

.horoscope-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.horoscope-date {
    font-size: 0.9rem;
    color: #666;
}

.horoscope-content {
    margin-bottom: 20px;
}

.horoscope-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.horoscope-excerpt {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.horoscope-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
}

.horoscope-link:hover .horoscope-footer {
    color: white;
}

.read-more {
    transition: transform 0.3s ease;
}

.horoscope-link:hover .read-more {
    transform: translateX(5px);
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scale(1.2);
}

/* CTA Button */
.horoscope-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(5px);
}

/* Highlights Section */
.highlights-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceRight {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(0);
    }
    40% {
        transform: translateX(5px);
    }
    60% {
        transform: translateX(3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .zodiac-card {
        flex: 0 0 250px;
        margin: 0 10px;
    }
    
    .horoscope-card {
        flex: 0 0 280px;
        margin: 0 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev-btn {
        left: 10px;
    }
    
    .carousel-btn.next-btn {
        right: 10px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .home-hero {
        padding: 60px 0;
    }
    
    .memes-carousel-section,
    .horoscopes-carousel-section,
    .highlights-section {
        padding: 60px 0;
    }
    
    .zodiac-card,
    .horoscope-card {
        flex: 0 0 220px;
        margin: 0 8px;
    }
    
    .zodiac-link {
        padding: 20px;
        height: 280px;
    }
    
    .horoscope-link {
        padding: 20px;
        height: 240px;
    }
    
    .zodiac-symbol {
        font-size: 3rem;
    }
    
    .horoscope-symbol {
        font-size: 2rem;
    }
}
