/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais */
    --primary: #0ea5e9;
    --primary-dark: #0284c7;
    --primary-light: #38bdf8;
    --accent: #f97316;
    --accent-dark: #ea580c;
    
    /* Neutros */
    --bg: #f8fafc;
    --bg-light: #ffffff;
    --text: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: #e2e8f0;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Espaçamento */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transições */
    --transition: all 0.3s ease;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-light);
}
/* CÓDIGO CORRIGIDO para style.css */
/* Define um padrão mais limpo para a maioria dos títulos */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif; /* Usa a fonte limpa padrão */
    font-weight: 700; /* Garante que sejam títulos em negrito */
}
/* CÓDIGO CORRIGIDO (adiciona os títulos dos cards e do rodapé) */
.hero-title, 
.section-title, 
.page-title,
.tour-title,
.contact-item h4,
.footer-column h4 {
    font-family: 'Pirata One', cursive;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 85%);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    gap: var(--spacing-md);
}

.logo img {
    height: 110px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: #ababab;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);*/
    background-image: url('img/background-image.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgb(0 0 0 / 5%), rgb(15 23 42 / 42%) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Section */
.section {
    padding: var(--spacing-2xl) 0;
}

.section.bg-light {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.tour-card {
    background: var(--bg-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.tour-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tour-content {
    padding: var(--spacing-md);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tour-title {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: var(--spacing-sm);
}

.tour-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.tour-info {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.tour-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.tour-info-item svg {
    color: var(--primary);
}

.tour-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.price-info {
    flex: 1;
}

.price-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005rem;
    font-weight: 700;
    color: var(--primary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-light);
    border-radius: 16px;
    padding: var(--spacing-xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--border);
    color: var(--text);
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-lg);
    padding-right: 40px;
}

.date-selector {
    margin-bottom: var(--spacing-lg);
}

.date-selector label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text);
}

.date-input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.date-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.ticket-selector {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.ticket-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg);
    border-radius: 12px;
}

.ticket-info {
    flex: 1;
}

.ticket-name {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.ticket-desc {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ticket-counter {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.ticket-counter button {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 2px solid var(--border);
    background: var(--bg-light);
    color: var(--text);
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticket-counter button:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(14, 165, 233, 0.1);
}

.ticket-counter span {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
}

.ticket-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 100px;
    text-align: right;
}

.modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: var(--bg);
    border-radius: 12px;
    margin-bottom: var(--spacing-lg);
    font-size: 1.25rem;
    font-weight: 600;
}

.total-value {
    color: var(--primary);
    font-size: 1.75rem;
}

.modal-actions {
    display: flex;
    gap: var(--spacing-md);
}

.modal-actions button {
    flex: 1;
}

.modal-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* Cart Section */
.cart-section {
    background: var(--bg);
    padding: var(--spacing-xl) 0;
}

.cart-container {
    background: var(--bg-light);
    border-radius: 16px;
    padding: var(--spacing-xl);
    box-shadow: var(--shadow);
}

.cart-empty {
    text-align: center;
    padding: var(--spacing-2xl);
    color: var(--text-muted);
}

.cart-empty svg {
    margin: 0 auto var(--spacing-md);
    opacity: 0.5;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--bg);
    border-radius: 12px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.cart-item-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cart-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    min-width: 100px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cart-summary {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 2px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    font-size: 1.125rem;
}

.summary-row.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: var(--spacing-sm);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg);
    border-radius: 12px;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-md) var(--spacing-md);
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer p + p {
    padding-top: var(--spacing-sm);
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-2xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-item svg {
    flex-shrink: 0;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h4 {
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.footer-column p,
.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
    font-size: 14px;
}

.footer-column a:hover {
    color: white;
}

.footer-logo {
    margin: auto;
    height: 100px;
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav-content {
    padding: 5px;
}
.logo img {
    height: 71px;
}
    
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-light);
        flex-direction: column;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-md);
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-lg {
        width: 100%;
    }
    
    .tours-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: var(--spacing-md);
    }
    
    .tour-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tour-price button {
        width: 100%;
    }
    
    .ticket-type {
        flex-wrap: wrap;
    }
    
    .modal-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-price {
        width: 100%;
        text-align: left;
    }
}

/* ============================================ */
/* CART PAGE STYLES */
/* ============================================ */

.cart-page {
    padding: calc(80px + var(--spacing-2xl)) 0 var(--spacing-2xl);
    min-height: 80vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--spacing-xl);
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-xl);
    align-items: start;
}

.cart-main {
    min-height: 400px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.cart-item-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.cart-item-card:hover {
    box-shadow: var(--shadow);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.cart-item-header h3 {
    font-size: 1.25rem;
    color: var(--text);
    flex: 1;
}

.remove-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.detail-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.detail-row svg {
    color: var(--primary);
    flex-shrink: 0;
}

.cart-item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.order-summary {
    background: var(--bg-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow);
}

.order-summary h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.summary-section {
    padding-bottom: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--text);
}

.summary-total span:last-child {
    color: var(--primary);
}

.payment-methods {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border);
}

.payment-methods p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.payment-icons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.payment-icons span {
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    background: var(--bg);
    border-radius: 6px;
}

.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: rgba(14, 165, 233, 0.1);
    border-radius: 8px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.help-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.help-card h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.help-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

/* ============================================ */
/* BLOG PAGE STYLES */
/* ============================================ */

.blog-header {
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-lg);
    background: var(--bg-light);
}

.blog-section {
    padding: var(--spacing-2xl) 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-2xl);
}

.blog-main {
    min-height: 600px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.blog-post {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-post.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    margin-bottom: var(--spacing-lg);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-post.featured .post-image {
    height: 100%;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.post-title {
    margin-bottom: var(--spacing-sm);
}

.blog-post.featured .post-title {
    font-size: 2rem;
}

.blog-post:not(.featured) .post-title {
    font-size: 1.25rem;
}

.post-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.post-title a:hover {
    color: var(--primary);
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

.post-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.post-link:hover {
    color: var(--primary-dark);
    gap: 0.5rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-2xl);
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 var(--spacing-sm);
    border: 2px solid var(--border);
    background: var(--bg-light);
    color: var(--text);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.pagination-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-light);
    border-radius: 12px;
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.search-form {
    display: flex;
    gap: var(--spacing-sm);
}

.search-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-btn {
    padding: 0.75rem;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: var(--spacing-sm);
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--bg);
    color: var(--primary);
}

.category-list span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.popular-post {
    display: flex;
    gap: var(--spacing-sm);
}

.popular-post img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.popular-post h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.popular-post h4 a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.popular-post h4 a:hover {
    color: var(--primary);
}

.popular-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.newsletter-widget h3,
.newsletter-widget p {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.newsletter-input {
    padding: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
}

.cta-widget {
    background: var(--bg);
    text-align: center;
}

.cta-widget h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.cta-widget p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 0.9375rem;
}

/* Responsive - Cart & Blog */
@media (max-width: 1024px) {
    .cart-layout,
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-sidebar,
    .blog-sidebar {
        position: static;
    }
    
    .blog-post.featured {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cart-page,
    .blog-header {
        padding-top: calc(70px + var(--spacing-lg));
    }
    
    .cart-item-card {
        padding: var(--spacing-md);
    }
    
    .cart-item-header h3 {
        font-size: 1.125rem;
    }
    
    .blog-post.featured .post-title {
        font-size: 1.5rem;
    }
}
.carrossel-container {
            position: relative;
            margin: 2rem 0;
            overflow: hidden;
        }
        
        .carrossel-track {
            display: flex;
            transition: transform 0.5s ease;
            gap: 1.5rem;
            padding: 0.5rem;
        }
        
        .carrossel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.8);
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 10;
            transition: all 0.3s ease;
        }
        
        .carrossel-btn:hover {
            background: white;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }
        
        .carrossel-btn--anterior {
            left: 10px;
        }
        
        .carrossel-btn--proximo {
            right: 10px;
        }
        
        .carrossel-btn svg {
            width: 24px;
            height: 24px;
            color: #0ea5e9;
        }
        
        .carrossel-indicadores {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
        
        .carrossel-indicador {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #cbd5e1;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .carrossel-indicador.ativo {
            background: #0ea5e9;
            transform: scale(1.2);
        }
        
        /* Responsividade (ajustada para 3 cards no desktop) */
        @media (max-width: 768px) {
            .carrossel-container {
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 1rem;
            }
            
            .carrossel-track {
                flex-wrap: nowrap;
                scroll-snap-type: x mandatory;
                padding: 0 1rem;
            }
            
            .tour-card {
                flex: 0 0 85%;
                scroll-snap-align: start;
            }
            
            .carrossel-btn {
                display: none;
            }
            
            .carrossel-indicadores {
                display: none;
            }
            
            /* Esconder a barra de rolagem no mobile */
            .carrossel-container::-webkit-scrollbar {
                display: none;
            }
        }
        
        @media (min-width: 769px) {
            .carrossel-container {
                overflow: hidden;
            }
            
            .carrossel-track {
                flex-wrap: nowrap;
            }
            
            .tour-card {
                flex: 0 0 calc(33.333% - 1rem); /* Sempre 3 cards por view no desktop */
            }
        }

        /* ============================================ */
/* ESTILO DO NOVO BOTÃO DE CARRINHO (NAVBAR)
/* ============================================ */

/* O container do link (o <a>) */
.cart-button {
    position: relative; /* Essencial para o badge */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white; /* Cor do ícone SVG */
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent; /* Borda para alinhamento */
}

/* Efeito hover */
.cart-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light); /* Azul claro no hover */
}

/* O ícone SVG */
.cart-button svg {
    width: 28px;
    height: 28px;
}

/* O "badge" (o span#cart-count) */
.cart-button #cart-count {
    position: absolute;
    top: -5px;   /* Posição acima do ícone */
    right: -8px; /* Posição à direita do ícone */
    
    background: var(--accent); /* Laranja (a cor do botão antigo) */
    color: white;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    
    min-width: 20px;
    height: 20px;
    padding: 4px;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    border: 2px solid var(--bg-light); /* Borda branca para destacar */
    
    /* Animação para esconder/mostrar */
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

/* Regra para MOSTRAR o badge */
/* O JS abaixo vai adicionar a classe 'has-items' */
.cart-button.has-items #cart-count {
    opacity: 1;
    transform: scale(1);
}
.tour-times {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.time-label {
    font-weight: 600;
    color: var(--text);
}

.time-badge {
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.time-badge:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}
/* ============================================ */
/* NOVOS ESTILOS - HERO COM VÍDEO (VIMEO)
/* ============================================ */

.hero {
    /* Garante que o conteúdo de vídeo não "vaze" */
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Fica atrás do overlay e conteúdo */
    overflow: hidden;
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Nova abordagem para "cobrir" (cover):
      - Ocupa 100% da largura (vw) OU 100% da altura (vh), o que for MAIOR.
      - A proporção de 16:9 é 56.25% (9 / 16 = 0.5625)
    */
    width: 100vw;
    height: 56.25vw; /* 100 * (9/16) = 56.25 */
    
    /* Se a altura da tela for maior que a largura (celular) */
    min-height: 100vh;
    min-width: 177.77vh; /* 100 * (16/9) = 177.77 */

    pointer-events: none; /* Impede que o mouse clique no vídeo */
}

.hero-overlay {
    z-index: 2; /* Garante que fique sobre o vídeo */
}

.hero-content {
    z-index: 3; /* Garante que fique sobre o overlay */
}

.scroll-indicator {
    z-index: 3; /* Garante que fique sobre o overlay */
}

/* ============================================ */
/* MELHORIAS NO RODAPÉ E CABEÇALHO */
/* ============================================ */

/* MELHORIAS NO CABEÇALHO */
.navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(15px);
}

.nav-content {
    padding: 8px 0;
}

.logo img {
    height: 95px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 70px;
}

/* Destaque para links do menu */
.nav-links a {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    background: var(--accent);
    height: 3px;
    bottom: 0;
}

/* Redes sociais no cabeçalho (mobile) */
.nav-social-mobile {
    display: none;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.nav-social-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.nav-social-mobile a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .nav-links.active + .nav-social-mobile {
        display: flex;
    }
}

/* MELHORIAS NO RODAPÉ */
.footer {
    background: #000;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

/* Destaque para redes sociais no rodapé */
.footer-column:nth-child(4) {
    text-align: center;
}

.footer-column:nth-child(4) h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-column:nth-child(4) p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-links a {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links a[aria-label="Facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.3);
}

.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
}

.social-links a[aria-label="WhatsApp"]:hover {
    background: #25d366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.social-links svg {
    width: 26px;
    height: 26px;
}

/* Newsletter no rodapé */
.newsletter-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-align: center;
}

.newsletter-footer h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: white;
}

.newsletter-footer p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background: var(--accent-dark);
}

/* Melhorias no botão do WhatsApp */
.whatsapp-float {
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-column:nth-child(4) {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}
/* ============================================ */
/* CORREÇÕES DO NAVBAR COM REDES SOCIAIS */
/* ============================================ */

/* Container principal do navbar */
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: var(--spacing-md);
    width: 100%;
}

/* Logo à esquerda */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 95px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 70px;
}

/* Links de navegação centralizados */
.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    margin: 0 auto;
}

.nav-links a {
    color: #ababab;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Container para elementos do lado direito */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

/* Redes sociais no desktop - LADO DIREITO */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.nav-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.nav-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.nav-social svg {
    width: 18px;
    height: 18px;
}

/* Botão do carrinho */
.cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.cart-button svg {
    width: 24px;
    height: 24px;
}

.cart-button #cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-light);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.cart-button.has-items #cart-count {
    opacity: 1;
    transform: scale(1);
}

/* Menu hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================ */
/* REDES SOCIAIS NO MOBILE - DENTRO DO MENU */
/* ============================================ */

.nav-social-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.nav-social-mobile .social-label {
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.nav-social-mobile .social-icons {
    display: flex;
    gap: 1rem;
}

.nav-social-mobile a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.nav-social-mobile a:hover {
    transform: translateY(-3px);
}

.nav-social-mobile a[aria-label="Facebook"]:hover {
    background: #1877f2;
}

.nav-social-mobile a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.nav-social-mobile svg {
    color:#fff;
    width: 22px;
    height: 22px;
}

/* ============================================ */
/* RESPONSIVIDADE */
/* ============================================ */

/* Tablet - ajustes menores */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--spacing-md);
    }
    
    .nav-social a {
        width: 34px;
        height: 34px;
    }
    
    .nav-social svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile - menu hamburguer */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-social {
        display: none; /* Esconde redes sociais do desktop no mobile */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Mostra redes sociais no menu mobile quando ativo */
    .nav-social-mobile.active {
        display: flex;
        position: fixed;
        top: calc(80px + 100vh - 80px - 150px);
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        z-index: 999;
    }
}

/* Mobile pequeno */
@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .nav-social-mobile .social-icons {
        gap: 0.75rem;
    }
    
    .nav-social-mobile a {
        width: 40px;
        height: 40px;
    }
}
<style>
/* ============================================ */
/* NAVBAR COM REDES SOCIAIS NA BARRA PRINCIPAL */
/* ============================================ */

/* Container principal do navbar */
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: var(--spacing-md);
    width: 100%;
}

/* Logo à esquerda */
.logo {
    flex-shrink: 0;
}

.logo img {
    height: 95px;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 70px;
}

/* Links de navegação centralizados */
.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    margin: 0 auto;
}

.nav-links a {
    color: #ababab;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Container para elementos do lado direito */
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Redes sociais na barra principal - PRÓXIMO AO CARRINHO */
.nav-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 0.75rem;
    margin-right: 0.25rem;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-social a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.nav-social a[aria-label="Facebook"]:hover {
    background: #1877f2;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.nav-social a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.nav-social svg {
    width: 18px;
    height: 18px;
}

/* Botão do carrinho */
.cart-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cart-button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-light);
}

.cart-button svg {
    width: 24px;
    height: 24px;
}

.cart-button #cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 2px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-light);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.cart-button.has-items #cart-count {
    opacity: 1;
    transform: scale(1);
}

/* Menu hamburguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* ============================================ */
/* RESPONSIVIDADE */
/* ============================================ */

/* Tablet - ajustes menores */
@media (max-width: 1024px) {
    .nav-links {
        gap: var(--spacing-md);
    }
    
    .nav-social a {
        width: 34px;
        height: 34px;
    }
    
    .nav-social svg {
        width: 16px;
        height: 16px;
    }
}

/* Mobile - menu hamburguer */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Redes sociais CONTINUAM visíveis no mobile */
    .nav-social {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        padding-right: 0.75rem;
        margin-right: 0.25rem;
    }
    
    .nav-social a {
        width: 32px;
        height: 32px;
    }
    
    .nav-social svg {
        width: 16px;
        height: 16px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Ajuste do carrinho para mobile */
    .cart-button {
        padding: 0.4rem;
    }
    
    .cart-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile pequeno - ajustes adicionais */
@media (max-width: 480px) {
    .logo img {
        height: 60px;
    }
    
    .nav-social {
        gap: 0.25rem;
    }
    
    .nav-social a {
        width: 30px;
        height: 30px;
    }
    
    .nav-social svg {
        width: 14px;
        height: 14px;
    }
    
    .nav-right {
        gap: 0.5rem;
    }
}

/* Para telas muito pequenas, esconder texto se necessário */
@media (max-width: 360px) {
    .nav-social {
        border-right: none;
        padding-right: 0.5rem;
    }
}
.footer img{
    width: 150px;
}