/* ============================================
   BLOG PAGE STYLES
   ============================================ */

/* Blog Hero Section */
.blog-hero-section {
    position: relative;
    background: linear-gradient(135deg, #750037 0%, #c09559 100%);
    padding: 120px 20px 80px;
    text-align: center;
    overflow: hidden;
}

.blog-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern.png') repeat;
    opacity: 0.05;
}

.blog-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 149, 89, 0.2) 0%, transparent 70%);
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d7ae75;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.blog-hero-content p {
    font-size: 1.3rem;
    color: #fafafa;
    margin: 0;
}

/* Blog Posts Section */
.blog-posts-section {
    padding: 80px 20px;
    background: #fafafa;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(117, 0, 55, 0.15);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: block;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #750037;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #c09559;
}

.blog-card-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.blog-card-content h2 a {
    color: #043249;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-content h2 a:hover {
    color: #750037;
}

.blog-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #750037;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-read-more:hover {
    gap: 12px;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #c09559;
    background: white;
    color: #043249;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: #750037;
    border-color: #750037;
    color: white;
}

/* Newsletter Section */
.blog-newsletter-section {
    background: linear-gradient(135deg, #750037 0%, #c09559 100%);
    padding: 80px 20px;
    text-align: center;
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-content h2 {
    color: #d7ae75;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.newsletter-content h2 i {
    font-size: 2rem;
}

.newsletter-content p {
    color: #fafafa;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #d7ae75;
    background: white;
}

.newsletter-form button {
    padding: 18px 35px;
    white-space: nowrap;
}

/* ============================================
   BLOG POST (INDIVIDUAL) STYLES
   ============================================ */

/* Post Hero */
.post-hero {
    position: relative;
    background: linear-gradient(135deg, #750037 0%, #043249 100%);
    padding: 100px 20px 60px;
    overflow: hidden;
}

.post-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(192, 149, 89, 0.2) 0%, transparent 70%);
}

.post-header {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.post-category-badge {
    display: inline-block;
    background: #d7ae75;
    color: #750037;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.post-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.post-meta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: #d7ae75;
}

/* Post Content Layout */
.post-content-section {
    padding: 80px 20px;
    background: #fafafa;
}

.post-layout {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.post-main {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-image {
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Post Text Content */
.post-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.post-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #043249;
    margin-bottom: 30px;
    border-left: 4px solid #d7ae75;
    padding-left: 20px;
}

.post-text h2 {
    font-size: 2rem;
    color: #750037;
    margin: 50px 0 20px 0;
    font-weight: 700;
}

.post-text h3 {
    font-size: 1.6rem;
    color: #043249;
    margin: 40px 0 15px 0;
    font-weight: 700;
}

.post-text h4 {
    font-size: 1.3rem;
    color: #750037;
    margin: 30px 0 10px 0;
}

.post-text p {
    margin-bottom: 20px;
}

.post-text strong {
    color: #750037;
}

/* Info Boxes */
.info-box {
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.info-box h4 {
    color: #2196f3;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box p {
    margin: 0;
    color: #333;
}

/* Winery Cards */
.winery-card {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    border-left: 5px solid #c09559;
    padding: 25px;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.winery-card h4 {
    color: #750037;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.winery-card h4 i {
    color: #d7ae75;
}

.winery-card p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.winery-card strong {
    color: #043249;
}

/* Photo Gallery (Galeria de Thumbnails) */
.photo-gallery {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border: 2px solid #d7ae75;
    border-radius: 12px;
    padding: 35px;
    margin: 50px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.photo-gallery h3 {
    color: #750037;
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.photo-gallery h3 i {
    color: #d7ae75;
    font-size: 1.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s ease;
    aspect-ratio: 4/3;
}

.gallery-item::before {
    content: '\F415'; /* Bootstrap Icons: zoom-in */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
    pointer-events: none;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(117, 0, 55, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before,
.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(117, 0, 55, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    text-align: center;
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-caption i {
    color: #c09559;
    font-size: 1.1rem;
}

/* Post Image Gallery */
.post-image-gallery {
    margin: 40px 0;
    text-align: center;
}

.post-image-gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-image-gallery img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    font-style: italic;
}

.image-caption i {
    color: #d7ae75;
    margin-right: 5px;
}

/* Share Section */
.share-section {
    margin: 60px 0 0 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.share-section h4 {
    font-size: 1.3rem;
    color: #043249;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.share-section h4::before {
    content: '\F52C'; /* Bootstrap Icons: share */
    font-family: 'bootstrap-icons';
    color: #c09559;
    font-size: 1.5rem;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.share-btn:hover::before {
    left: 100%;
}

.share-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.share-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.share-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-btn:active {
    transform: translateY(-2px);
}

/* Facebook Button */
.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c5cca 100%);
    color: white;
    border-color: #1877f2;
}

.share-btn.facebook:hover {
    background: linear-gradient(135deg, #0c5cca 0%, #0a4ba8 100%);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

/* Twitter/X Button */
.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
    color: white;
    border-color: #1da1f2;
}

.share-btn.twitter:hover {
    background: linear-gradient(135deg, #0d8bd9 0%, #0a75c0 100%);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

/* LinkedIn Button */
.share-btn.linkedin {
    background: linear-gradient(135deg, #0a66c2 0%, #004182 100%);
    color: white;
    border-color: #0a66c2;
}

.share-btn.linkedin:hover {
    background: linear-gradient(135deg, #004182 0%, #003366 100%);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.4);
}

/* WhatsApp Button */
.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-color: #25d366;
}

.share-btn.whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #0a6e61 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Responsive Share Buttons */
@media (max-width: 768px) {
    .share-section {
        padding: 30px 20px;
    }
    
    .share-buttons {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .share-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .share-section h4 {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .share-section {
        padding: 25px 15px;
        margin: 40px 0 0 0;
    }
    
    .share-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .share-btn i {
        font-size: 1.1rem;
    }
}

/* Animation for share buttons on load */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.share-btn {
    animation: slideInUp 0.5s ease forwards;
}

.share-btn:nth-child(1) {
    animation-delay: 0.1s;
}

.share-btn:nth-child(2) {
    animation-delay: 0.2s;
}

.share-btn:nth-child(3) {
    animation-delay: 0.3s;
}

.share-btn:nth-child(4) {
    animation-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }

    .blog-hero-content p {
        font-size: 1.1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-content h2 {
        font-size: 2rem;
        flex-direction: column;
    }
    
    /* Blog Post Responsive */
    .post-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .post-main {
        padding: 30px 20px;
    }
    
    .featured-image {
        margin: -30px -20px 30px -20px;
    }
    
    .featured-image img {
        height: 300px;
    }
    
    .post-text {
        font-size: 1rem;
    }
    
    .post-text .lead {
        font-size: 1.15rem;
    }
    
    .post-text h2 {
        font-size: 1.7rem;
    }
    
    .quote-block {
        padding: 30px 20px;
    }
    
    .quote-block p {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-box .cta-buttons {
        flex-direction: column;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .blog-hero-section {
        padding: 80px 15px 60px;
    }

    .blog-hero-content h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 10px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-content h2 {
        font-size: 1.3rem;
    }
    
    .post-hero {
        padding: 80px 15px 50px;
    }
    
    .post-header h1 {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .post-main {
        padding: 25px 15px;
    }
    
    .featured-image {
        margin: -25px -15px 25px -15px;
    }
    
    .featured-image img {
        height: 250px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.contact-section .container {
    max-width: 800px;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
        margin-top: 30px;
    }
}

/* Timeline Items (para Blog Passeio Básico) */
.timeline-item {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    border-left: 4px solid #339966;
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.timeline-badge {
    background: linear-gradient(135deg, #339966 0%, #2d8a5a 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(51, 153, 102, 0.3);
    min-width: 90px;
    text-align: center;
}

.timeline-item p {
    margin: 0;
    line-height: 1.7;
}

.timeline-item strong {
    color: #043249;
    font-weight: 600;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.checklist li {
    padding: 12px 0;
    border-bottom: 1px solid #e8eef3;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li i {
    color: #339966;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Attractions List */
.attractions-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: block; /* Força lista vertical */
}

.attractions-list li {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 15px 20px;
    margin: 12px 0;
    border-radius: 8px;
    border-left: 3px solid #d7ae75;
    display: block; /* Força cada item em linha própria */
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.attractions-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-left-color: #c09559;
}

.attractions-list li i {
    color: #d7ae75;
    font-size: 1.2rem;
    margin-right: 12px;
    vertical-align: middle;
}

.attractions-list li strong {
    color: #043249;
}

/* Optional Attractions Cards */
.optional-attractions {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.attraction-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e8eef3;
    border-radius: 12px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #d7ae75;
}

.attraction-card h4 {
    color: #043249;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attraction-card h4 i {
    color: #d7ae75;
    font-size: 1.4rem;
}

.attraction-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    min-height: 60px;
}

.attraction-card .price {
    display: inline-block;
    background: linear-gradient(135deg, #750037 0%, #5a002a 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
}

.attraction-card .badge-recommended {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
    }

    .timeline-badge {
        align-self: flex-start;
    }

    .optional-attractions {
        grid-template-columns: 1fr;
    }

    .attraction-card {
        padding: 20px;
    }

    .attraction-card p {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        padding: 15px 20px;
    }

    .timeline-badge {
        font-size: 1rem;
        padding: 8px 15px;
        min-width: 75px;
    }

    .checklist li {
        font-size: 0.9rem;
        padding: 10px 0;
    }

    .attractions-list li {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .attraction-card h4 {
        font-size: 1.1rem;
    }

    .attraction-card .badge-recommended {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eef3 100%);
    padding: 80px 0;
    margin-top: 60px;
}

.contact-section .container {
    max-width: 800px;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
        margin-top: 30px;
    }
}

/* Category Badge Variations */
.blog-category {
    animation: fadeInDown 0.5s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.blog-card.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.destination-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #e8eef3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.destination-card:hover {
    transform: translateY(-5px);
    border-color: #d7ae75;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.destination-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d7ae75 0%, #c09559 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(215, 174, 117, 0.3);
}

.destination-icon i {
    font-size: 2rem;
    color: white;
}

.destination-card h4 {
    color: #043249;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.destination-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-section {
    margin: 40px 0;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid #e8eef3;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d7ae75;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    background: linear-gradient(135deg, #043249 0%, #065a7d 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.faq-question i {
    font-size: 1.5rem;
    color: #d7ae75;
    flex-shrink: 0;
}

.faq-question h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 25px;
    background: white;
}

.faq-answer p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #d7ae75;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-answer a:hover {
    color: #c09559;
    text-decoration: underline;
}

/* Included Attractions */
.included-attractions {
    margin-top: 20px;
}

.attraction-included {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #2196f3;
}

.attraction-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.attraction-badge.included {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
}

.attraction-included h5 {
    color: #043249;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.attraction-included h5 i {
    color: #2196f3;
}

.attraction-included p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

.season-info {
    color: #ff6b6b !important;
    font-weight: 600;
    font-size: 0.9rem;
}

.season-info i {
    color: #ff6b6b;
}

/* Free Attractions List */
.free-attractions-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.free-attractions-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.free-attractions-list li i {
    color: #4caf50;
    font-size: 1.3rem;
}

/* Quiz Box */
.quiz-box {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
    margin: 30px 0;
}

.quiz-box h4 {
    color: #043249;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.quiz-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.quiz-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
}

.quiz-answer {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    font-style: italic;
    color: #555;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.comparison-card {
    padding: 25px;
    border-radius: 12px;
    position: relative;
}

.comparison-card.guia-local {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border: 2px solid #ef5350;
}

.comparison-card.guia-brasileiro {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 3px solid #4caf50;
    box-shadow: 0 8px 24px rgba(76, 175, 80, 0.3);
}

.badge-destaque {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #d7ae75 0%, #c09559 100%);
    color: #043249;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(215, 174, 117, 0.4);
}

.comparison-card h4 {
    color: #043249;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 0.95rem;
}

.comparison-card.guia-local ul li i {
    color: #ef5350;
    font-size: 1.2rem;
}

.comparison-card.guia-brasileiro ul li i {
    color: #4caf50;
    font-size: 1.2rem;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.topic-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e8eef3;
    transition: all 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-5px);
    border-color: #d7ae75;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.topic-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d7ae75 0%, #c09559 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.topic-icon i {
    font-size: 1.8rem;
    color: white;
}

.topic-card h4 {
    color: #043249;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.topic-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    margin: 40px 0;
}

.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d7ae75 0%, #c09559 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(215, 174, 117, 0.3);
}

.benefit-content h4 {
    color: #043249;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-content h4 i {
    color: #d7ae75;
}

.benefit-content p {
    color: #555;
    line-height: 1.7;
}

/* Credentials Box */
.credentials-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2196f3;
    margin: 40px 0;
}

.credentials-box h4 {
    color: #043249;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credentials-box h4 i {
    color: #2196f3;
    font-size: 1.5rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.credential-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.credential-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.credential-item i {
    font-size: 2rem;
    color: #2196f3;
    flex-shrink: 0;
}

.credential-item p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.credential-item strong {
    color: #043249;
    font-weight: 700;
}

/* Simple List */
.simple-list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.simple-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}

.simple-list li i {
    color: #4caf50;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .topics-grid {
        grid-template-columns: 1fr;
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .badge-destaque {
        top: -10px;
        right: 10px;
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}

@media (max-width: 480px) {
    .quiz-box {
        padding: 20px;
    }

    .comparison-card {
        padding: 20px;
    }

    .topic-card {
        padding: 20px;
    }

    .topic-icon {
        width: 50px;
        height: 50px;
    }

    .topic-icon i {
        font-size: 1.5rem;
    }

    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .credentials-box {
        padding: 20px;
    }

    .credential-item {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .credential-item i {
        font-size: 1.7rem;
    }
}
