
/* ========================================
   CONFORTOCARE - INDEX CSS
   Estilos Específicos da Home
======================================== */

/* ========================================
   HERO CAROUSEL
======================================== */
.hero-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.slide-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.content-wrapper {
    max-width: 700px;
    animation: slideUp 1s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.slide-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 35px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: #fff;
    color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Controles do Carousel */
.carousel-control {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-control:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.carousel-control.prev {
    display: none; /* Ocultar botão anterior */
}

.carousel-control.next {
    /* Já posicionado no bottom/right acima */
}

/* Indicadores do Hero Carousel */
.hero-carousel .carousel-indicators {
    position: absolute;
    bottom: 45px;
    left: 30px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-carousel .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    cursor: pointer;
}

.hero-carousel .indicator.active {
    width: 40px;
    border-radius: 6px;
    background: #fff;
}

.hero-carousel .indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Indicadores do Produto em Destaque */
.hospital-bed-section .carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.hospital-bed-section .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hospital-bed-section .indicator:hover {
    background: rgba(255, 107, 53, 0.5);
    transform: scale(1.2);
}

.hospital-bed-section .indicator.active {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    width: 32px;
    border-radius: 6px;
    border-color: transparent;
}
/* ========================================
   DESTAQUES RÁPIDOS
======================================== */
.quick-features {
    padding: 60px 0;
    background: var(--bg-secondary);
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--bg-elevated);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-subtle);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.feature-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-content p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   SEÇÃO DE CATEGORIAS
======================================== */
.product-categories {
    padding: 80px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-item {
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-elevated);
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-item:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-item:hover .category-overlay {
    opacity: 1;
}

.btn-category {
    padding: 14px 28px;
    background: #fff;
    color: var(--primary-orange);
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.category-item:hover .btn-category {
    transform: translateY(0);
}

.btn-category:hover {
    transform: scale(1.05);
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info i {
    font-size: 32px;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.category-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.category-info p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

/* ========================================
   PRODUTOS EM DESTAQUE
======================================== */
.featured-products {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--bg-elevated);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-subtle);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    background: var(--accent-green);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.product-badge.promo {
    background: linear-gradient(135deg, #FF6B6B, #FF4757);
}

.product-badge.premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-secondary);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-actions {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(-20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.action-btn:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-content > p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 15px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--accent-green);
    font-size: 13px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 15px;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.price-value {
    font-size: 27px !important;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-installment {
    font-size: 12px;
    color: var(--text-secondary);
}

.btn-product {
    padding: 12px 20px;
    background: var(--gradient-primary);
    color: #fff;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.section-footer {
    text-align: center;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-view-all:hover {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}


/* ========================================
   CTA SECTION
======================================== */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-text h2 {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 600px;
}

.cta-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cta.primary {
    background: #fff;
    color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn-cta.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    .hero-carousel {
        height: 500px;
    }
    
    .slide-title {
        font-size: 42px;
    }
    
    .slide-description {
        font-size: 18px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text p {
        margin: 0 auto;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .hero-carousel {
        height: 500px;
    }
    
    .content-wrapper {
        max-width: 100%;
        padding-right: 40px; /* Dar espaço para não encostar na flecha */
    }
    
    .slide-badge {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .slide-actions {
        flex-direction: row;
        gap: 10px;
        max-width: 85%;
    }
    
    .btn-primary,
    .btn-secondary {
        flex: 1;
        min-width: 0;
        justify-content: center;
        padding: 12px 16px;
        font-size: 13px;
        gap: 6px;
    }
    
    .btn-primary span,
    .btn-secondary span {
        display: none; /* Ocultar texto em mobile */
    }
    
    .btn-primary i,
    .btn-secondary i {
        margin: 0;
        font-size: 16px;
    }
    
    /* Mostrar apenas ícones com tooltips */
    .btn-primary::after {
        content: 'Ver Produtos';
        font-size: 11px;
        margin-left: 4px;
    }
    
    .btn-secondary::after {
        content: 'Contato';
        font-size: 11px;
        margin-left: 4px;
    }
    
    .carousel-control {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
    
    .carousel-indicators {
        bottom: 25px;
        left: 20px;
    }
    
    .quick-features {
        padding: 40px 0;
        margin-top: -60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    .product-categories,
    .featured-products,
    .why-choose,
    .cta-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .categories-grid,
    .products-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-image,
    .product-image {
        height: 240px;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-text p {
        font-size: 16px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 450px;
    }
    
    .content-wrapper {
        padding-right: 30px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .slide-actions {
        gap: 8px;
        max-width: 90%;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .btn-primary::after,
    .btn-secondary::after {
        font-size: 10px;
    }
    
    .carousel-control {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 15px;
        right: 15px;
    }
    
    .carousel-indicators {
        bottom: 20px;
        left: 15px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .category-image,
    .product-image {
        height: 200px;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
}

/* ========================================
   SEÇÃO CAMA HOSPITALAR
======================================== */
.hospital-bed-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 50%, #fafbfc 100%);
    position: relative;
    overflow: hidden;
}

.hospital-bed-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 140, 66, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hospital-bed-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.hospital-bed-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ========================================
   SHOWCASE DA CAMA - ESQUERDA
======================================== */
.bed-showcase {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    gap: 30px;
}

/* ========================================
   SETA DE NAVEGAÇÃO
======================================== */
.carousel-arrow {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
}

.carousel-arrow:hover i {
    color: white;
}

.carousel-arrow i {
    font-size: 20px;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.bed-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
}

.bed-main-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 
        -40px 0 80px rgba(255, 255, 255, 0.8),
        40px 0 80px rgba(255, 255, 255, 0.8),
        0 20px 60px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

/* ========================================
   INDICADORES DO CARROSSEL
======================================== */
.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 107, 53, 0.2);
    border: 2px solid rgba(255, 107, 53, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.indicator:hover {
    background: rgba(255, 107, 53, 0.5);
    border-color: rgba(255, 107, 53, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    width: 32px;
    border-radius: 6px;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* ========================================
   CONTEÚDO - DIREITA
======================================== */
.bed-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: opacity 0.3s ease;
}

.bed-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0;
    transition: opacity 0.3s ease;
}

.bed-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-orange);
    margin: -10px 0 0 0;
    transition: opacity 0.3s ease;
}

.bed-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    transition: opacity 0.3s ease;
}

/* Features Grid */
.bed-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    transition: opacity 0.3s ease;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: white;
    border: 2px solid var(--border-subtle);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.feature-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.feature-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ========================================
   PREÇO E AÇÕES
======================================== */
.bed-pricing {
    margin-top: 10px;
    padding-top: 25px;
    border-top: 2px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.3s ease;
}

.price-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.price-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
}

.price-value {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
}

.price-installment {
    font-size: 14px;
    color: var(--text-secondary);
}

.bed-actions {
    display: flex;
    gap: 12px;
}

.btn-bed-primary,
.btn-bed-secondary {
    flex: 1;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-bed-primary {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-bed-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
}

.btn-bed-secondary {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-bed-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
}

/* Animação de Fade */
.fade-out {
    opacity: 0;
}

.fade-in {
    opacity: 1;
}

/* ========================================
   RESPONSIVE - TABLET
======================================== */
@media (max-width: 1024px) {
    .hospital-bed-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .bed-showcase {
        order: 1;
        min-height: 400px;
    }
    
    .bed-content {
        order: 2;
    }
    
    .bed-title {
        font-size: 36px;
    }
    
    .bed-image-wrapper {
        max-width: 600px;
    }
    
    .carousel-arrow {
        width: 50px;
        height: 50px;
        left: 15px;
    }
    
    .carousel-arrow i {
        font-size: 18px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 768px) {
    .hospital-bed-section {
        padding: 60px 0;
    }
    
    .hospital-bed-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .bed-showcase {
        min-height: 350px;
        gap: 25px;
    }
    
    .bed-title {
        font-size: 32px;
    }
    
    .bed-subtitle {
        font-size: 18px;
    }
    
    .bed-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .bed-actions {
    flex-direction: row; /* Manter lado a lado */
    gap: 10px;
}

.btn-bed-primary,
.btn-bed-secondary {
    flex: 1; /* Dividir espaço igualmente */
    padding: 14px 16px;
    font-size: 14px;
}
    
    .carousel-arrow {
        width: 45px;
        height: 45px;
        left: 10px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .bed-title {
        font-size: 28px;
    }
    
    .bed-subtitle {
        font-size: 16px;
    }
    
    .price-value {
        font-size: 18px;
    }
    
    .bed-image-wrapper {
        max-width: 100%;
    }
    
    .feature-item {
        padding: 14px;
    }
    
    .feature-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .feature-text strong {
        font-size: 14px;
    }
    
    .feature-text span {
        font-size: 12px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
}

