/* ============================================
   PRODUTO INDIVIDUAL - ESTILOS ESPECÍFICOS
   Reutiliza ao máximo as classes do style.css
   ============================================ */

/* Breadcrumb */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 15px 0;
}

.breadcrumb {
    margin: 0;
    background: none;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6c757d;
}

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

.breadcrumb-item a:hover {
    color: var(--accent-blue);
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* ============================================
   GALLERY - Estilos Específicos
   ============================================ */

   .gallery-section {
    padding: 80px 0;
 }
 
 /* Carrossel */
 .gal-carousel {
    position: relative;
    padding: 0 3rem;
 }
 .gal-track-wrapper {
    overflow: hidden;
 }
 .gal-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
 }
 .gal-item {
    flex: 0 0 calc((100% - 32px) / 3);
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
 }
 .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
 }
 .gal-item:hover img {
    transform: scale(1.05);
 }
 .gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 57, 166, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
 }
 .gal-item:hover .gal-overlay {
    opacity: 1;
 }
 .gal-overlay i {
    font-size: 2rem;
    color: #fff;
 }
 
 /* Setas */
 .gal-prev,
 .gal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 2.5rem;
    height: 2.5rem;
    background: #0039A6;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
 }
 .gal-prev:hover,
 .gal-next:hover {
    background: #002580;
 }
 .gal-prev:disabled,
 .gal-next:disabled {
    background: #ccc;
    cursor: default;
 }
 .gal-prev { left: 0; }
 .gal-next { right: 0; }
 
 /* Dots */
 .gal-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
 }
 .gal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0039A6;
    opacity: 0.3;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
 }
 .gal-dot.active {
    opacity: 1;
 }
 
 /* Responsivo */
 @media (max-width: 767px) {
    .gal-item {
       flex: 0 0 100%;
    }
 }
 
 /* Modal lightbox */
 .gallery-modal .modal-content {
    background: #000;
    border: none;
    border-radius: 8px;
 }
 .gallery-modal-img {
    display: block;
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px 8px 0 0;
 }
 .gallery-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    background: rgba(0,0,0,0.6);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
 }
 .gallery-modal-close:hover { background: rgba(255,255,255,0.2); }
 .gallery-modal-prev,
 .gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
 }
 .gallery-modal-prev { left: 12px; }
 .gallery-modal-next { right: 12px; }
 .gallery-modal-prev:hover,
 .gallery-modal-next:hover { background: rgba(0, 57, 166, 0.8); }
 .gallery-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #000;
    border-radius: 0 0 8px 8px;
 }
 .gallery-modal-caption { color: #ccc; font-size: 14px; }
 .gallery-modal-counter { color: #888; font-size: 13px; }

/* ============================================
   CAROUSEL - Estilos Específicos
   ============================================ */
#relatedCarousel {
    padding: 0 3rem 2.5rem;
 }
 #relatedCarousel .carousel-control-prev,
 #relatedCarousel .carousel-control-next {
    width: 2.5rem;
    top: 50%;
    transform: translateY(-60%);
    background: var(--color-primary, #0039A6);
    border-radius: 50%;
    height: 2.5rem;
    opacity: 1;
 }
 #relatedCarousel .carousel-control-prev { left: -0.5rem; }
 #relatedCarousel .carousel-control-next { right: -0.5rem; }
 #relatedCarousel .carousel-control-prev-icon,
 #relatedCarousel .carousel-control-next-icon {
    width: 1rem;
    height: 1rem;
 }
 #relatedCarousel .carousel-indicators {
    bottom: 0;
 }
 #relatedCarousel .carousel-indicators button {
    background-color: var(--color-primary, #0039A6);
    border-radius: 50%;
    width: 8px;
    height: 8px;
    opacity: 0.35;
 }
 #relatedCarousel .carousel-indicators button.active {
    opacity: 1;
 }
 .rel-carousel {
    position: relative;
    padding: 0 3rem;
 }
 .rel-track-wrapper {
    overflow: hidden;
 }
 .rel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
 }
 .rel-item {
    flex: 0 0 calc((100% - 32px) / 3);
 }
 .rel-prev,
 .rel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 2.5rem;
    height: 2.5rem;
    background: #0039A6;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
 }
 .rel-prev:hover,
 .rel-next:hover { background: #002580; }
 .rel-prev:disabled,
 .rel-next:disabled { background: #ccc; cursor: default; }
 .rel-prev { left: 0; }
 .rel-next { right: 0; }
 .rel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
 }
 .rel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0039A6;
    opacity: 0.3;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s;
 }
 .rel-dot.active { opacity: 1; }
 
 @media (max-width: 767px) {
    .rel-item {
       flex: 0 0 100%;
    }
 }
/* ============================================
   PRODUCT HERO - Estilos Específicos
   ============================================ */
.product-hero {
    padding: 80px 0;
    background-color: #eaf1fe;
}

.product-image-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); */
}

.product-header {
    padding-right: 30px;
}

/* Reutiliza h1, h2 do style.css */
.product-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: var(--primary-blue);
    font-weight: 600;
}

.product-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 20px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #3b4557;
    /* margin-bottom: 30px; */
}

.product-actions {
    display: flex;
    gap: 15px;
}

/* Botão outline (complementa .btn-primary-blue do style.css) */
.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: white;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-headings);
}

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


/* ============================================
   FEATURES & BENEFITS
   ============================================ */
.features-benefits {
    padding: 80px 0;
    background-color: white;
}

/* Reutiliza .feature-box do surgsci.css com adaptações */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

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

.feature-icon {
    /* width: 70px; */
    /* height: 70px; */
    /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%); */
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h4 {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   MODELS TABLE
   ============================================ */
.models-section {
    padding: 80px 0;
    background-color: white;
}

.models-table {
    width: 100%;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.models-table thead {
    color: white;
    background-color: var(--accent-blue);
}

.models-table th {
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14px;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5px; */
}

.models-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.models-table tbody tr:hover {
    background-color: #f8f9fa;
}

.models-table tbody tr:last-child {
    border-bottom: none;
}

.models-table td {
    padding: 18px 20px;
    font-size: 15px;
    color: #3b4557;
}

.models-table code {
    background-color: #e8f0ff;
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 5px;
    font-family: 'Courier New', monospace;
    font-weight: 600;
}
.table-title {
    margin: 0 0 20px 0;
    font-weight: 600;
    font-family: var(--font-headings);
    text-align: center;
    color: #002b7f;
}
.cannula-row {
    background-color: #f8f9fa;
    font-weight: 700;
}

.badge-status {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-status.available {
    background-color: #d4edda;
    color: #155724;
}

.badge-status.consultation {
    background-color: #fff3cd;
    color: #856404;
}

/* ============================================
   RELATED PRODUCTS
   ============================================ */
.related-products {
    padding: 80px 0;
    background-color: #eaf1fe;
}

.related-card {
    display: block;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 57, 166, 0.15);
}

.related-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.related-card h5 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    text-align: center;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--accent-blue);
    margin-top: 5px;
}

.info-item strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.info-item p {
    margin: 0;
    color: #3b4557;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
}

.contact-form .form-control:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(0, 58, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
}
.caliber-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 4px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .product-header {
        padding-left: 0;
        padding-right:0;
        margin-top: 30px;
    }
    .product-hero {
    padding: 40px 0;
}

.features-benefits {
    padding: 80px 0 40px;
}

    .product-header h1 {
        font-size: 36px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .models-table {
        font-size: 13px;
    }
    
    .models-table th,
    .models-table td {
        padding: 12px 10px;
    }
}

@media (max-width: 767px) {
    .product-header h1 {
        font-size: 28px;
    }
    
    .intro-highlight {
        padding: 25px;
    }
    
    .feature-card {
        padding: 25px;
    }
    
    .contact-form {
        padding: 25px;
    }
}
