
* {margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background: linear-gradient(135deg, #f8f4e9 0%, #e6dfc8 100%);
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    padding: 20px;
}

.container {
     max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
     position: relative;
 }

.header::after {
     content: "";
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f0e68c, #d4af37);
            margin: 20px auto;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            color: #2c3e50;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.4rem;
            color: #7f8c8d;
            font-weight: 400;
            font-style: italic;
        }

        .ad-banner {
            background: linear-gradient(135deg, #e8e1d1 0%, #f5f0e6 100%);
            border: 2px dashed #d4af37;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            margin: 30px 0;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #7f8c8d;
        }

        .ad-banner h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        .ad-banner p {
            font-size: 0.95rem;
            font-style: italic;
        }

        .poems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }

        .poem-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 18px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
            padding: 30px;
            transition: all 0.3s ease;
            border: 1px solid rgba(212, 175, 55, 0.2);
            position: relative;
            overflow: hidden;
        }

        .poem-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4af37, #f0e68c);
        }

        .poem-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .poem-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #2c3e50;
            margin-bottom: 15px;
            line-height: 1.3;
        }

        .poem-excerpt {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: #34495e;
            line-height: 1.6;
            margin-bottom: 20px;
            min-height: 80px;
        }

        .poem-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #7f8c8d;
            font-size: 0.9rem;
            font-family: 'Montserrat', sans-serif;
        }

        .poem-date {
            font-style: italic;
        }

        .read-btn {
            background: linear-gradient(135deg, #d4af37, #f0e68c);
            color: #2c3e50;
            border: none;
            padding: 8px 20px;
            border-radius: 25px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .read-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
        }

        .ad-sidebar {
            background: linear-gradient(135deg, #f0e68c 0%, #d4af37 100%);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            color: #2c3e50;
            font-weight: bold;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .ad-sidebar h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .ad-sidebar p {
            font-size: 0.9rem;
            font-style: italic;
        }

        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-top: 20px;
        }

        .poems-section {
            grid-column: 1;
        }

        .sidebar {
            grid-column: 2;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #7f8c8d;
        }

        .empty-state h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 20px;
            color: #2c3e50;
        }

        .decorative-flourish {
            position: absolute;
            opacity: 0.05;
            font-size: 6rem;
            font-family: 'Playfair Display', serif;
            color: #d4af37;
            z-index: 0;
        }

        .flourish-1 {
            top: 100px;
            left: 50px;
        }

        .flourish-2 {
            bottom: 100px;
            right: 50px;
            transform: rotate(180deg);
        }

        @media (max-width: 900px) {
            .main-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
     .sidebar {
        grid-column: 1;
         order: -1;
    }
            
    .ad-banner {
         min-height: 100px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
            
    .subtitle {
        font-size: 1.2rem;
    }
            
    .poems-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
            
    .poem-card {
        padding: 25px;
    }
            
    .poem-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
            
    .container {
         padding: 15px;
     }
            
    .flourish-1, .flourish-2 {
        display: none;
    }
            
    .ad-banner, .ad-sidebar {
        min-height: auto;
        padding: 20px;
    }
}
.site-footer {
  margin-top: 60px;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #5a5a5a;
  border-top: 1px solid #eaeaea;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-text {
  margin: 0 0 12px;
  font-style: italic;
  font-weight: 400;
}

.footer-contact {
  margin: 0;
  font-size: 1rem;
  color: #444;
}

.email-link {
  color: #8b6d4b; /* tom terroso/vintage, pode ajustar */
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dotted #8b6d4b;
}

.email-link:hover {
  color: #5d4a35;
  border-bottom-style: solid;

}

