/* ============================================
   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;
}

/* ============================================
   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;
    }
}
