/* Estilos para replicar fielmente o site neymarjr.com com esquema preto e branco */

/* Reset e estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #f5f5f5;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container personalizado */
.container-badi73 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.header-badi73 {
    background-color: #000000;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo-badi73 {
    height: 50px;
}

.nav-badi73 {
    display: none;
}

@media (min-width: 992px) {
    .nav-badi73 {
        display: flex;
        align-items: center;
    }
}

.nav-link-badi73 {
    color: #ffffff;
    text-decoration: none;
    margin: 0 15px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link-badi73:hover,
.nav-link-badi73.active {
    color: #ffffff;
}

.nav-link-badi73::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link-badi73:hover::after,
.nav-link-badi73.active::after {
    width: 100%;
}

.menu-toggle-badi73 {
    background: none;
    border: none;
    cursor: pointer;
    display: block;
}

.menu-toggle-badi73 svg path {
    stroke: #ffffff;
}

@media (min-width: 992px) {
    .menu-toggle-badi73 {
        display: none;
    }
}

/* Filtros */
.filters-badi73 {
    background-color: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.filter-button-badi73 {
    background: none;
    border: none;
    padding: 8px 15px;
    margin-right: 10px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.filter-button-badi73:hover,
.filter-button-badi73.active {
    color: #000000;
}

.filter-button-badi73::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #000000;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.filter-button-badi73:hover::after,
.filter-button-badi73.active::after {
    width: 100%;
}

/* Seções */
.section-badi73 {
    padding: 60px 0;
}

/* Cards */
.card-badi73 {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.card-badi73:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-content-badi73 {
    padding: 25px;
}

/* Grid Layout */
.grid-layout-badi73 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.grid-item-badi73-12 {
    grid-column: span 12;
}

.grid-item-badi73-6 {
    grid-column: span 12;
}

.grid-item-badi73-4 {
    grid-column: span 12;
}

.grid-item-badi73-3 {
    grid-column: span 12;
}

@media (min-width: 768px) {
    .grid-item-badi73-6 {
        grid-column: span 6;
    }
    
    .grid-item-badi73-4 {
        grid-column: span 6;
    }
    
    .grid-item-badi73-3 {
        grid-column: span 6;
    }
}

@media (min-width: 992px) {
    .grid-item-badi73-4 {
        grid-column: span 4;
    }
    
    .grid-item-badi73-3 {
        grid-column: span 3;
    }
}

/* Hero Section */
.hero-badi73 {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-color: #f0f0f0;
    overflow: hidden;
}

.hero-image-badi73 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay-badi73 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.hero-content-badi73 {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 600px;
}

.hero-title-badi73 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle-badi73 {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Botões */
.btn-badi73 {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    text-align: center;
}

.btn-badi73:hover {
    background-color: #ffffff;
    color: #000000;
}

.btn-outline-badi73 {
    display: inline-block;
    background-color: transparent;
    color: #000000;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    text-align: center;
}

.btn-outline-badi73:hover {
    background-color: #000000;
    color: #ffffff;
}

/* Galeria de Vídeos */
.video-grid-badi73 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .video-grid-badi73 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .video-grid-badi73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-item-badi73 {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-item-badi73:hover {
    transform: translateY(-5px);
}

.video-thumbnail-badi73 {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.video-play-button-badi73 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-item-badi73:hover .video-play-button-badi73 {
    background-color: #000000;
}

.video-title-badi73 {
    padding: 15px;
    font-weight: 500;
}

/* Galeria de Fotos */
.photo-grid-badi73 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .photo-grid-badi73 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .photo-grid-badi73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.photo-item-badi73 {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.photo-item-badi73:hover {
    transform: translateY(-5px);
}

.photo-item-badi73 img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Timeline */
.timeline-container-badi73 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container-badi73::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: #000000;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item-badi73 {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0;
    margin-bottom: 60px;
}

.timeline-item-badi73:nth-child(even) {
    left: 50%;
}

.timeline-year-badi73 {
    position: absolute;
    width: 80px;
    height: 80px;
    right: -40px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.timeline-item-badi73:nth-child(even) .timeline-year-badi73 {
    left: -40px;
    right: auto;
}

@media (max-width: 767px) {
    .timeline-container-badi73::after {
        left: 40px;
    }
    
    .timeline-item-badi73 {
        width: 100%;
        padding-left: 80px;
        padding-right: 20px;
    }
    
    .timeline-item-badi73:nth-child(even) {
        left: 0;
    }
    
    .timeline-year-badi73 {
        left: 0;
        right: auto;
    }
    
    .timeline-item-badi73:nth-child(even) .timeline-year-badi73 {
        left: 0;
    }
}

/* Produtos */
.product-grid-badi73 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
}

@media (min-width: 576px) {
    .product-grid-badi73 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .product-grid-badi73 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card-badi73 {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card-badi73:hover {
    transform: translateY(-5px);
}

.product-image-badi73 {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image-badi73 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-badi73:hover .product-image-badi73 img {
    transform: scale(1.05);
}

.product-content-badi73 {
    padding: 20px;
}

.product-title-badi73 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.product-description-badi73 {
    color: #666666;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.product-price-badi73 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

/* Formulário de Contato */
.contact-form-badi73 label {
    font-weight: 500;
}

.contact-form-badi73 .form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.contact-form-badi73 .form-control:focus {
    border-color: #000000;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

/* Accordion */
.accordion-badi73 {
    margin-bottom: 30px;
}

.accordion-item-badi73 {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.accordion-header-badi73 {
    margin: 0;
}

.accordion-button-badi73 {
    width: 100%;
    padding: 15px 20px;
    background-color: #f5f5f5;
    border: none;
    text-align: left;
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-button-badi73:hover,
.accordion-button-badi73:not(.collapsed) {
    background-color: #e0e0e0;
}

.accordion-body-badi73 {
    padding: 20px;
    background-color: #ffffff;
}

/* Blockquote */
.blockquote-badi73 {
    font-size: 1.2rem;
    font-style: italic;
    padding: 20px;
    border-left: 4px solid #000000;
    margin: 20px 0;
}

.blockquote-badi73 footer {
    font-weight: 700;
    margin-top: 10px;
}

/* Footer */
.footer-badi73 {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

.footer-badi73 a {
    color: #ffffff;
    transition: opacity 0.3s ease;
}

.footer-badi73 a:hover {
    opacity: 0.8;
}

/* Animações e efeitos */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Responsividade */
@media (max-width: 767px) {
    .section-badi73 {
        padding: 40px 0;
    }
    
    .hero-title-badi73 {
        font-size: 2rem;
    }
}

/* Estilos para modal */
.modal-content {
    border-radius: 8px;
    overflow: hidden;
    border: none;
}

.modal-header {
    background-color: #000000;
    color: #ffffff;
    border-bottom: none;
}

.modal-footer {
    border-top: none;
}

.btn-close {
    color: #ffffff;
    opacity: 1;
}

/* Estilos para paginação */
.pagination-badi73 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.page-item-badi73 {
    margin: 0 5px;
}

.page-link-badi73 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.page-link-badi73:hover,
.page-link-badi73.active {
    background-color: #000000;
    color: #ffffff;
}
